Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
InnerDetector
InDetRawEvent
InDetRawData
InDetRawData
TRT_RDORawData.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// TRT_RDORawData.h
7
// Header file for class TRT_RDORawData
9
// (c) ATLAS Detector software
11
// Class to implement RawData for TRT
13
// Version 1.0 14/10/2002 Veronique Boisvert
15
16
#ifndef INDETRAWDATA_TRT_RDORAWDATA_H
17
#define INDETRAWDATA_TRT_RDORAWDATA_H
18
19
// Base classes
20
#include "
InDetRawData/InDetRawData.h
"
21
22
23
24
class
TRT_RDORawData
:
public
InDetRawData
{
25
27
// Public methods:
29
public
:
30
31
// Constructor with parameters:
32
// offline compact id of the readout channel,
33
// the word
34
TRT_RDORawData
(
const
Identifier
rdoId,
const
unsigned
int
word);
35
// Destructor:
36
virtual
~TRT_RDORawData
() =
default
;
37
39
// Virtual methods
41
42
// High level threshold:
43
virtual
bool
highLevel
()
const
=0;
44
45
// Time over threshold in ns for valid digits; zero otherwise:
46
virtual
double
timeOverThreshold
()
const
=0;
47
48
// drift time in bin
49
virtual
int
driftTimeBin
()
const
=0;
50
51
protected
:
52
TRT_RDORawData
() =
default
;
53
TRT_RDORawData
(
const
TRT_RDORawData
&) =
default
;
54
TRT_RDORawData
(
TRT_RDORawData
&&) =
default
;
55
TRT_RDORawData
&
operator=
(
const
TRT_RDORawData
&) =
default
;
56
TRT_RDORawData
&
operator=
(
TRT_RDORawData
&&) =
default
;
57
};
58
60
// Inline methods:
62
63
#endif // INDETRAWDATA_TRT_RDORAWDATA_H
TRT_RDORawData::timeOverThreshold
virtual double timeOverThreshold() const =0
TRT_RDORawData::TRT_RDORawData
TRT_RDORawData(const TRT_RDORawData &)=default
TRT_RDORawData::TRT_RDORawData
TRT_RDORawData(TRT_RDORawData &&)=default
TRT_RDORawData
Definition:
TRT_RDORawData.h:24
TRT_RDORawData::highLevel
virtual bool highLevel() const =0
TRT_RDORawData::driftTimeBin
virtual int driftTimeBin() const =0
TRT_RDORawData::operator=
TRT_RDORawData & operator=(TRT_RDORawData &&)=default
InDetRawData.h
TRT_RDORawData::TRT_RDORawData
TRT_RDORawData()=default
InDetRawData
Definition:
InDetRawData.h:25
TRT_RDORawData::~TRT_RDORawData
virtual ~TRT_RDORawData()=default
TRT_RDORawData::operator=
TRT_RDORawData & operator=(const TRT_RDORawData &)=default
Identifier
Definition:
IdentifierFieldParser.cxx:14
Generated on Tue May 13 2025 21:21:34 for ATLAS Offline Software by
1.8.18