Loading [MathJax]/jax/output/SVG/config.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
RPCHitsTestTool.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_RPCHITSTESTTOOL
6
#define G4AT_RPCHITSTESTTOOL
7
8
#include "
MuonHitTestToolBase.h
"
9
10
//#include "MuonReadoutGeometry/MuonDetectorManager.h"
11
//#include "MuonIdHelpers/RpcIdHelper.h"
12
class
RpcIdHelper
;
13
14
class
RPCHitsTestTool
:
public
MuonHitTestToolBase
{
15
16
17
public
:
18
19
RPCHitsTestTool
(
const
std::string&
type
,
const
std::string&
name
,
const
IInterface*
parent
)
20
:
MuonHitTestToolBase
(
type
,
name
,
parent
),
21
m_pRpcIdHelper
(0)
22
{
23
declareProperty(
"DoRPCTest"
,
m_DoRPCTest
=
true
);
24
}
25
26
StatusCode
initialize
();
27
28
StatusCode
processEvent
();
29
30
protected
:
31
Identifier
getIdentifier
(
HitID
rpchit);
32
StatusCode
checkIdentifier
(
Identifier
offid);
33
34
private
:
35
36
bool
m_DoRPCTest
;
37
38
const
RpcIdHelper
*
m_pRpcIdHelper
;
39
};
40
41
#endif
RPCHitsTestTool::checkIdentifier
StatusCode checkIdentifier(Identifier offid)
Definition:
RPCHitsTestTool.cxx:48
RPCHitsTestTool::m_DoRPCTest
bool m_DoRPCTest
Definition:
RPCHitsTestTool.h:36
MuonHitTestToolBase.h
RpcIdHelper
Definition:
RpcIdHelper.h:51
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
RPCHitsTestTool
Definition:
RPCHitsTestTool.h:14
RPCHitsTestTool::initialize
StatusCode initialize()
Definition:
RPCHitsTestTool.cxx:104
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
RPCHitsTestTool::RPCHitsTestTool
RPCHitsTestTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition:
RPCHitsTestTool.h:19
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
RPCHitsTestTool::processEvent
StatusCode processEvent()
Definition:
RPCHitsTestTool.cxx:65
MuonHitTestToolBase
Definition:
MuonHitTestToolBase.h:21
HitID
int HitID
Definition:
GenericMuonSimHit.h:13
RPCHitsTestTool::m_pRpcIdHelper
const RpcIdHelper * m_pRpcIdHelper
Definition:
RPCHitsTestTool.h:38
RPCHitsTestTool::getIdentifier
Identifier getIdentifier(HitID rpchit)
Definition:
RPCHitsTestTool.cxx:25
Identifier
Definition:
IdentifierFieldParser.cxx:14
Generated on Sat May 31 2025 21:17:02 for ATLAS Offline Software by
1.8.18