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
LArCalorimeter
LArG4
LArG4HEC
LArG4HEC
IHECGeometry.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
// IHECGeometry.h
6
// Common interface for Geometry Calculator classes
7
8
#ifndef __LARG4HEC_IHECGEOMETRY_H__
9
#define __LARG4HEC_IHECGEOMETRY_H__
10
11
#include "GaudiKernel/IService.h"
12
13
#include <string>
14
15
class
G4Step;
16
class
LArG4Identifier
;
17
18
namespace
LArG4
19
{
20
namespace
HEC
21
{
22
23
enum
eHECGeometryType
{
kWheelActive
,
kWheelInactive
,
kWheelDead
};
24
25
class
IHECGeometry
:
virtual
public
IService
26
{
27
public
:
28
IHECGeometry
() {}
29
virtual
~IHECGeometry
() {}
30
31
DeclareInterfaceID
(
IHECGeometry
,1,0);
32
33
virtual
void
initializeForSDCreation
() = 0;
34
virtual
LArG4Identifier
CalculateIdentifier
(
const
G4Step* a_step,
const
eHECGeometryType
type
=
kWheelActive
,
int
*subgap=NULL)
const
= 0;
35
36
};
37
38
}
39
}
40
#endif //__LARG4HEC_IHECGEOMETRY_H__
LArG4::HEC::IHECGeometry::IHECGeometry
IHECGeometry()
Definition:
IHECGeometry.h:28
LArG4Identifier
Definition:
LArG4Identifier.h:121
LArSamples::HEC
@ HEC
Definition:
CaloId.h:26
LArG4::HEC::IHECGeometry
Definition:
IHECGeometry.h:26
LArG4::HEC::IHECGeometry::initializeForSDCreation
virtual void initializeForSDCreation()=0
LArG4
Definition:
LArWheelCalculatorEnums.h:8
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
LArG4::HEC::kWheelActive
@ kWheelActive
Definition:
IHECGeometry.h:23
LArG4::HEC::kWheelDead
@ kWheelDead
Definition:
IHECGeometry.h:23
LArG4::HEC::IHECGeometry::~IHECGeometry
virtual ~IHECGeometry()
Definition:
IHECGeometry.h:29
LArG4::HEC::IHECGeometry::DeclareInterfaceID
DeclareInterfaceID(IHECGeometry, 1, 0)
LArG4::HEC::kWheelInactive
@ kWheelInactive
Definition:
IHECGeometry.h:23
LArG4::HEC::IHECGeometry::CalculateIdentifier
virtual LArG4Identifier CalculateIdentifier(const G4Step *a_step, const eHECGeometryType type=kWheelActive, int *subgap=NULL) const =0
LArG4::HEC::eHECGeometryType
eHECGeometryType
Definition:
IHECGeometry.h:23
Generated on Wed May 7 2025 21:10:50 for ATLAS Offline Software by
1.8.18