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
Simulation
G4Atlas
G4AtlasTests
src
sTGCHitsTestTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef G4AT_sTGCHITSTESTTOOL
6
#define G4AT_sTGCHITSTESTTOOL
7
8
#include "
MuonHitTestToolBase.h
"
9
10
11
class
sTGCHitsTestTool
:
public
MuonHitTestToolBase
{
12
13
14
public
:
15
16
sTGCHitsTestTool
(
const
std::string&
type
,
const
std::string&
name
,
const
IInterface*
parent
)
17
:
MuonHitTestToolBase
(
type
,
name
,
parent
)
18
{
19
declareProperty(
"DosTGCTest"
,
m_DosTGCTest
);
20
m_BarrelEtaCut
=10.;
21
}
22
23
virtual
StatusCode
initialize
() override
final
;
24
25
virtual
StatusCode
processEvent
() override
final
;
26
27
protected
:
28
29
TH2 *
m_sTgc_TransverseView_QS1C_posZ
=
nullptr
;
30
TH2 *
m_sTgc_TransverseView_QS2C_posZ
=
nullptr
;
31
TH2 *
m_sTgc_TransverseView_QS3C_posZ
=
nullptr
;
32
TH2 *
m_sTgc_TransverseView_QL1P_posZ
=
nullptr
;
33
TH2 *
m_sTgc_TransverseView_QL2P_posZ
=
nullptr
;
34
TH2 *
m_sTgc_TransverseView_QL3P_posZ
=
nullptr
;
35
TH2 *
m_sTgc_rZview_positiveZ
=
nullptr
;
36
37
private
:
38
39
bool
m_DosTGCTest
= true;
40
41
//const MdtIdHelper* m_pMdtIdHelper;
42
43
};
44
45
#endif
sTGCHitsTestTool::sTGCHitsTestTool
sTGCHitsTestTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition:
sTGCHitsTestTool.h:16
sTGCHitsTestTool::m_sTgc_rZview_positiveZ
TH2 * m_sTgc_rZview_positiveZ
Definition:
sTGCHitsTestTool.h:35
MuonHitTestToolBase.h
sTGCHitsTestTool::m_sTgc_TransverseView_QL1P_posZ
TH2 * m_sTgc_TransverseView_QL1P_posZ
Definition:
sTGCHitsTestTool.h:32
sTGCHitsTestTool::m_sTgc_TransverseView_QL2P_posZ
TH2 * m_sTgc_TransverseView_QL2P_posZ
Definition:
sTGCHitsTestTool.h:33
sTGCHitsTestTool::m_sTgc_TransverseView_QS2C_posZ
TH2 * m_sTgc_TransverseView_QS2C_posZ
Definition:
sTGCHitsTestTool.h:30
sTGCHitsTestTool::m_sTgc_TransverseView_QS1C_posZ
TH2 * m_sTgc_TransverseView_QS1C_posZ
Definition:
sTGCHitsTestTool.h:29
MuonHitTestToolBase::m_BarrelEtaCut
double m_BarrelEtaCut
MDT barrel eta cut, applicable to the MDT 2D cross section plot.
Definition:
MuonHitTestToolBase.h:44
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
sTGCHitsTestTool::m_sTgc_TransverseView_QL3P_posZ
TH2 * m_sTgc_TransverseView_QL3P_posZ
Definition:
sTGCHitsTestTool.h:34
protected
#define protected
Definition:
DetDescrConditionsDict_dict_fixes.cxx:14
sTGCHitsTestTool::m_DosTGCTest
bool m_DosTGCTest
Definition:
sTGCHitsTestTool.h:39
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
columnar::final
CM final
Definition:
ColumnAccessor.h:106
sTGCHitsTestTool::initialize
virtual StatusCode initialize() override final
Definition:
sTGCHitsTestTool.cxx:106
sTGCHitsTestTool
Definition:
sTGCHitsTestTool.h:11
private
#define private
Definition:
DetDescrConditionsDict_dict_fixes.cxx:13
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
sTGCHitsTestTool::m_sTgc_TransverseView_QS3C_posZ
TH2 * m_sTgc_TransverseView_QS3C_posZ
Definition:
sTGCHitsTestTool.h:31
sTGCHitsTestTool::processEvent
virtual StatusCode processEvent() override final
Definition:
sTGCHitsTestTool.cxx:39
MuonHitTestToolBase
Definition:
MuonHitTestToolBase.h:21
Generated on Mon May 12 2025 21:18:13 for ATLAS Offline Software by
1.8.18