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
LArCalorimeter
LArDigitization
LArDigitization
LArHitList.h
Go to the documentation of this file.
1
//Dear emacs, this is -*-c++-*-
2
/*
3
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
4
*/
5
6
#ifndef LARDIGITIZATION_LARHITLIST_H
7
#define LARDIGITIZATION_LARHITLIST_H
8
#include <vector>
9
class
LArHitList
{
10
11
typedef
std::vector< std::pair<float,float> >
LARLIST
;
12
13
private
:
14
bool
m_inWindows
;
15
LARLIST
m_list
;
16
17
public
:
18
LArHitList
(){
m_inWindows
=
false
;};
19
~LArHitList
(){};
20
21
void
AddHit
(
const
float
energy
,
const
float
time
) {
22
m_list
.emplace_back(
energy
,
time
);
23
}
24
25
const
LARLIST
&
getData
()
const
{
return
m_list
;}
26
inline
bool
inWindows
()
const
{
return
m_inWindows
;};
27
inline
void
setInWindows
() {
m_inWindows
=
true
;};
28
};
29
#endif
LArHitList::setInWindows
void setInWindows()
Definition:
LArHitList.h:27
LArHitList::LArHitList
LArHitList()
Definition:
LArHitList.h:18
LArHitList::LARLIST
std::vector< std::pair< float, float > > LARLIST
Definition:
LArHitList.h:11
LArHitList::~LArHitList
~LArHitList()
Definition:
LArHitList.h:19
LArHitList::m_list
LARLIST m_list
Definition:
LArHitList.h:15
LArHitList::getData
const LARLIST & getData() const
Definition:
LArHitList.h:25
ParticleGun_FastCalo_ChargeFlip_Config.energy
energy
Definition:
ParticleGun_FastCalo_ChargeFlip_Config.py:78
LArHitList::inWindows
bool inWindows() const
Definition:
LArHitList.h:26
LArHitList::m_inWindows
bool m_inWindows
Definition:
LArHitList.h:14
LArHitList
Definition:
LArHitList.h:9
CaloSwCorrections.time
def time(flags, cells_name, *args, **kw)
Definition:
CaloSwCorrections.py:242
LArHitList::AddHit
void AddHit(const float energy, const float time)
Definition:
LArHitList.h:21
Generated on Thu Mar 13 2025 21:13:45 for ATLAS Offline Software by
1.8.18