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
Event
xAOD
xAODHIEvent
Root
HIEventShape_v2.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// $Id: HIEventShape_v2.cxx 693494 2015-09-07 14:59:45Z krasznaa $
6
7
// xAOD include(s):
8
#include "
xAODCore/AuxStoreAccessorMacros.h
"
9
10
// Local include(s):
11
#include "
xAODHIEvent/versions/HIEventShape_v2.h
"
12
13
namespace
xAOD
{
14
15
HIEventShape_v2::HIEventShape_v2
()
16
:
SG
::AuxElement() {
17
18
}
19
20
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER
(
HIEventShape_v2
,
float
,
et
, setEt )
21
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER
(
HIEventShape_v2
,
float
,
area
, setArea )
22
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER
(
HIEventShape_v2
,
float
,
rho
, setRho )
23
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER
(
HIEventShape_v2
,
int
,
nCells
,
24
setNCells )
25
26
AUXSTORE_OBJECT_SETTER_AND_GETTER
(
HIEventShape_v2
, std::
vector
<
float
>,
27
etCos
, setEtCos )
28
29
std::
vector
<
float
>&
HIEventShape_v2
::
etCos
() {
30
31
static
const
Accessor< std::vector< float >
> acc(
"etCos"
);
32
return
acc( *
this
);
33
}
34
35
AUXSTORE_OBJECT_SETTER_AND_GETTER
(
HIEventShape_v2
, std::vector< float >,
36
etSin, setEtSin )
37
38
std::vector< float >&
HIEventShape_v2::etSin
() {
39
40
static
const
Accessor< std::vector< float > > acc(
"etSin"
);
41
return
acc( *
this
);
42
}
43
44
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER
(
HIEventShape_v2
,
float
,
etaMin
,
45
setEtaMin )
46
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER
(
HIEventShape_v2
,
float
,
etaMax
,
47
setEtaMax )
48
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER
(
HIEventShape_v2
,
int
,
layer
, setLayer )
49
50
}
// namespace xAOD
xAOD::AUXSTORE_PRIMITIVE_SETTER_AND_GETTER
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(BTagging_v1, float, IP2D_pb, setIP2D_pb) AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(BTagging_v1
et
Extra patterns decribing particle interation process.
SG
Forward declaration.
Definition:
CaloCellPacker_400_500.h:32
SG::Accessor
Helper class to provide type-safe access to aux data.
Definition:
Control/AthContainers/AthContainers/Accessor.h:68
AuxStoreAccessorMacros.h
HIEventShape_v2.h
xAOD::etaMax
etaMax
Definition:
HIEventShape_v2.cxx:46
xAOD
ICaloAffectedTool is abstract interface for tools checking if 4 mom is in calo affected region.
Definition:
ICaloAffectedTool.h:24
xAOD::etCos
etCos
Definition:
HIEventShape_v2.cxx:27
xAOD::HIEventShape_v2::etSin
const std::vector< float > & etSin() const
sine (x) part of the harmonic modulation strength
xAOD::HIEventShape_v2::HIEventShape_v2
HIEventShape_v2()
Default constructor.
Definition:
HIEventShape_v2.cxx:15
xAOD::HIEventShape_v2
Interface class for the HI reconstruction EDM.
Definition:
HIEventShape_v2.h:32
xAOD::nCells
setRawEt setRawPhi nCells
Definition:
TrigCaloCluster_v1.cxx:33
vector
Definition:
MultiHisto.h:13
TRT::Hit::layer
@ layer
Definition:
HitInfo.h:79
LArCellBinning.etaMin
etaMin
Definition:
LArCellBinning.py:84
area
double area(double R)
Definition:
ConvertStaveServices.cxx:42
fitman.rho
rho
Definition:
fitman.py:532
xAOD::AUXSTORE_OBJECT_SETTER_AND_GETTER
AUXSTORE_OBJECT_SETTER_AND_GETTER(CaloRings_v1, RingSetLinks, ringSetLinks, setRingSetLinks) unsigned CaloRings_v1
Definition:
CaloRings_v1.cxx:27
Generated on Tue Apr 15 2025 21:11:30 for ATLAS Offline Software by
1.8.18