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
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
TestBeam
TBEvent
TBEvent
TBBeamDetector.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TBEVENT_TBBEAMDETECTOR_H
6
#define TBEVENT_TBBEAMDETECTOR_H
7
// //
9
// Principal Base Class for all Testbeam Detectors //
10
// //
12
13
#include <string>
14
15
class
TBBeamDetector
16
{
17
public
:
18
20
// Constructors and Destructor //
22
23
TBBeamDetector
() :
24
m_tbDetectorName
()
25
,
m_overflow
(false)
26
{ };
27
28
TBBeamDetector
(
const
std::string& tbBeamDetectorName)
29
:
m_tbDetectorName
(tbBeamDetectorName)
30
,
m_overflow
(false)
31
{ };
32
33
TBBeamDetector
(
const
std::string& tbBeamDetectorName,
bool
overflow)
34
:
m_tbDetectorName
(tbBeamDetectorName)
35
,
m_overflow
(overflow)
36
{ };
37
38
virtual
~TBBeamDetector
()
39
{ }
40
42
// Data Manipulation //
44
46
// Setters //
48
virtual
void
setDetectorName
(
const
std::string& tbBeamDetectorName)
49
{
m_tbDetectorName
= tbBeamDetectorName; }
50
51
virtual
void
setOverflow
()
52
{
m_overflow
=
true
; }
53
54
virtual
void
setOverflow
(
bool
overflow)
55
{
m_overflow
= overflow; }
56
58
// Getters //
60
61
const
std::string&
getDetectorName
()
const
62
{
return
m_tbDetectorName
; }
63
64
bool
isOverflow
()
const
65
{
return
m_overflow
; }
66
67
virtual
void
resetOverflow
()
68
{
m_overflow
=
false
; }
69
71
// Data Members //
73
74
private
:
75
76
std::string
m_tbDetectorName
;
77
78
79
protected
:
80
81
bool
m_overflow
;
82
83
};
84
#endif
TBBeamDetector::~TBBeamDetector
virtual ~TBBeamDetector()
Definition:
TBBeamDetector.h:38
TBBeamDetector::setOverflow
virtual void setOverflow()
Definition:
TBBeamDetector.h:51
TBBeamDetector::TBBeamDetector
TBBeamDetector(const std::string &tbBeamDetectorName)
Definition:
TBBeamDetector.h:28
TBBeamDetector::setDetectorName
virtual void setDetectorName(const std::string &tbBeamDetectorName)
Definition:
TBBeamDetector.h:48
TBBeamDetector::getDetectorName
const std::string & getDetectorName() const
Definition:
TBBeamDetector.h:61
TBBeamDetector::TBBeamDetector
TBBeamDetector()
Definition:
TBBeamDetector.h:23
TBBeamDetector::TBBeamDetector
TBBeamDetector(const std::string &tbBeamDetectorName, bool overflow)
Definition:
TBBeamDetector.h:33
TBBeamDetector::setOverflow
virtual void setOverflow(bool overflow)
Definition:
TBBeamDetector.h:54
TBBeamDetector::m_overflow
bool m_overflow
Detector Name.
Definition:
TBBeamDetector.h:81
TBBeamDetector::m_tbDetectorName
std::string m_tbDetectorName
Definition:
TBBeamDetector.h:76
TBBeamDetector::isOverflow
bool isOverflow() const
Definition:
TBBeamDetector.h:64
TBBeamDetector
Definition:
TBBeamDetector.h:16
TBBeamDetector::resetOverflow
virtual void resetOverflow()
Definition:
TBBeamDetector.h:67
Generated on Thu Apr 3 2025 21:19:32 for ATLAS Offline Software by
1.8.18