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
InnerDetector
InDetG4
SCT_G4_SD
src
SctSensorSDTool.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
/****************************************************************
6
SCT Sensitive Detector Tool
7
****************************************************************/
8
9
#ifndef SCT_G4_SD_SCTSENSORSDTOOL_H
10
#define SCT_G4_SD_SCTSENSORSDTOOL_H
11
12
// Base class
13
#include "
G4AtlasTools/SensitiveDetectorBase.h
"
14
15
#include "
GeoModelInterfaces/IGeoDbTagSvc.h
"
16
17
// STL headers
18
#include <string>
19
20
class
G4VSensitiveDetector;
21
22
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
23
24
class
SctSensorSDTool
:
public
SensitiveDetectorBase
25
{
26
public
:
27
// Constructor
28
SctSensorSDTool
(
const
std::string&
type
,
const
std::string&
name
,
const
IInterface *
parent
);
29
30
// Destructor
31
~SctSensorSDTool
() {
/* If all goes well we do not own myHitColl here */
}
32
33
protected
:
34
// Make me an SD!
35
G4VSensitiveDetector*
makeSD
()
const
override
final
;
36
bool
m_isGmxSensor
;
37
ServiceHandle
<
IGeoDbTagSvc
>
m_geoDbTagSvc
{
this
,
"GeoDbTagSvc"
,
"GeoDbTagSvc"
,
""
};
38
39
40
};
41
42
#endif //SCT_G4_SD_SCTSENSORSDTOOL_H
SensitiveDetectorBase
Common base class for tools that create and manage Geant4 sensitive detectors.
Definition:
SensitiveDetectorBase.h:42
const
bool const RAWDATA *ch2 const
Definition:
LArRodBlockPhysicsV0.cxx:560
SctSensorSDTool::m_geoDbTagSvc
ServiceHandle< IGeoDbTagSvc > m_geoDbTagSvc
Definition:
SctSensorSDTool.h:37
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
SctSensorSDTool::m_isGmxSensor
bool m_isGmxSensor
Definition:
SctSensorSDTool.h:36
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
SctSensorSDTool::~SctSensorSDTool
~SctSensorSDTool()
Definition:
SctSensorSDTool.h:31
IGeoDbTagSvc
Definition:
IGeoDbTagSvc.h:26
SctSensorSDTool::SctSensorSDTool
SctSensorSDTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition:
SctSensorSDTool.cxx:22
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
columnar::final
CM final
Definition:
ColumnAccessor.h:106
SctSensorSDTool
Definition:
SctSensorSDTool.h:25
SensitiveDetectorBase.h
SctSensorSDTool::makeSD
G4VSensitiveDetector * makeSD() const override final
Definition:
SctSensorSDTool.cxx:30
IGeoDbTagSvc.h
ServiceHandle
Definition:
ClusterMakerTool.h:37
Generated on Fri Apr 11 2025 21:18:32 for ATLAS Offline Software by
1.8.18