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
LArCnv
LArSimEventTPCnv
LArSimEventTPCnv
LArHitContainer_p1.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
#ifndef LARHITCONTAINER_P1_H
6
#define LARHITCONTAINER_P1_H
7
16
#include <vector>
17
#include <string>
18
#include "
LArSimEventTPCnv/LArHit_p1.h
"
19
20
21
class
LArHitContainer_p1
22
{
23
public
:
25
typedef
std::vector<LArHit_p1>
HitVector
;
26
typedef
HitVector::const_iterator
const_iterator
;
27
typedef
HitVector::iterator
iterator
;
28
29
31
LArHitContainer_p1
();
32
33
// Accessors
34
const
std::string&
name
()
const
;
35
const
HitVector
&
getVector
()
const
;
36
//private:
37
std::vector<LArHit_p1>
m_cont
;
38
std::string
m_name
;
39
};
40
41
42
// inlines
43
44
inline
45
LArHitContainer_p1::LArHitContainer_p1
() {}
46
47
inline
48
const
std::string&
49
LArHitContainer_p1::name
()
const
50
{
return
m_name
;}
51
52
inline
53
const
std::vector<LArHit_p1>&
54
LArHitContainer_p1::getVector
()
const
55
{
return
m_cont
;}
56
57
#endif
xAOD::iterator
JetConstituentVector::iterator iterator
Definition:
JetConstituentVector.cxx:68
LArHitContainer_p1::m_cont
std::vector< LArHit_p1 > m_cont
Definition:
LArHitContainer_p1.h:37
LArHitContainer_p1::const_iterator
HitVector::const_iterator const_iterator
Definition:
LArHitContainer_p1.h:26
LArHitContainer_p1::LArHitContainer_p1
LArHitContainer_p1()
Default constructor.
Definition:
LArHitContainer_p1.h:45
LArHitContainer_p1::getVector
const HitVector & getVector() const
Definition:
LArHitContainer_p1.h:54
LArHitContainer_p1::m_name
std::string m_name
Definition:
LArHitContainer_p1.h:38
LArHitContainer_p1::name
const std::string & name() const
Definition:
LArHitContainer_p1.h:49
LArHitContainer_p1
Persistent represenation of a LArHitContainer,.
Definition:
LArHitContainer_p1.h:22
LArHitContainer_p1::iterator
HitVector::iterator iterator
Definition:
LArHitContainer_p1.h:27
LArHitContainer_p1::HitVector
std::vector< LArHit_p1 > HitVector
typedefs
Definition:
LArHitContainer_p1.h:25
LArHit_p1.h
Generated on Thu Mar 13 2025 21:13:44 for ATLAS Offline Software by
1.8.18