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
ILocalGeometry.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
// ILocalGeometry.h
6
7
#ifndef __LARG4HEC_ILOCALGEOMETRY_H__
8
#define __LARG4HEC_ILOCALGEOMETRY_H__
9
10
#include "GaudiKernel/IService.h"
11
#include "CLHEP/Units/SystemOfUnits.h"
12
13
#include <string>
14
15
class
G4Step;
16
class
LArG4Identifier
;
17
18
namespace
LArG4
19
{
20
namespace
HEC
21
{
22
23
enum
eLocalGeometryType
{
kLocActive
,
kLocInactive
,
kLocDead
};
24
25
class
ILocalGeometry
:
virtual
public
IService
26
{
27
public
:
28
ILocalGeometry
() {}
29
virtual
~ILocalGeometry
() {}
30
31
DeclareInterfaceID
(
ILocalGeometry
,1,0);
32
33
virtual
LArG4Identifier
CalculateIdentifier
(
const
G4Step* a_step,
const
eLocalGeometryType
type
=
kLocActive
,
34
int
depthadd = 0,
double
deadzone = 4.*
CLHEP::mm
,
double
locyadd = 0.*
CLHEP::mm
)
const
= 0;
35
36
};
37
38
}
39
}
40
#endif //__LARG4HEC_ILOCALGEOMETRY_H__
LArG4Identifier
Definition:
LArG4Identifier.h:121
LArSamples::HEC
@ HEC
Definition:
CaloId.h:26
python.SystemOfUnits.mm
float mm
Definition:
SystemOfUnits.py:97
LArG4::HEC::eLocalGeometryType
eLocalGeometryType
Definition:
ILocalGeometry.h:23
LArG4::HEC::kLocActive
@ kLocActive
Definition:
ILocalGeometry.h:23
LArG4
Definition:
LArWheelCalculatorEnums.h:8
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
LArG4::HEC::ILocalGeometry
Definition:
ILocalGeometry.h:26
LArG4::HEC::ILocalGeometry::~ILocalGeometry
virtual ~ILocalGeometry()
Definition:
ILocalGeometry.h:29
LArG4::HEC::ILocalGeometry::DeclareInterfaceID
DeclareInterfaceID(ILocalGeometry, 1, 0)
LArG4::HEC::ILocalGeometry::ILocalGeometry
ILocalGeometry()
Definition:
ILocalGeometry.h:28
LArG4::HEC::kLocInactive
@ kLocInactive
Definition:
ILocalGeometry.h:23
LArG4::HEC::ILocalGeometry::CalculateIdentifier
virtual LArG4Identifier CalculateIdentifier(const G4Step *a_step, const eLocalGeometryType type=kLocActive, int depthadd=0, double deadzone=4.*CLHEP::mm, double locyadd=0.*CLHEP::mm) const =0
LArG4::HEC::kLocDead
@ kLocDead
Definition:
ILocalGeometry.h:23
Generated on Fri May 9 2025 21:11:10 for ATLAS Offline Software by
1.8.18