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
InnerDetector
InDetEventCnv
InDetSimEventTPCnv
InDetSimEventTPCnv
InDetHits
SiHitCollection_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 SIHITCOLLECTION_P1_H
6
#define SIHITCOLLECTION_P1_H
7
8
/*
9
10
Persistent represenation of a SiHitContainer,
11
Author: Davide Costanzo
12
13
*/
14
15
#include <vector>
16
#include <string>
17
#include "
SiHit_p1.h
"
18
19
20
class
SiHitCollection_p1
21
{
22
public
:
24
typedef
std::vector<SiHit_p1>
HitVector
;
25
typedef
HitVector::const_iterator
const_iterator
;
26
typedef
HitVector::iterator
iterator
;
27
28
30
SiHitCollection_p1
();
31
32
// Accessors
33
const
std::string&
name
()
const
;
34
const
HitVector
&
getVector
()
const
;
35
//private:
36
std::vector<SiHit_p1>
m_cont
;
37
std::string
m_name
;
38
};
39
40
41
// inlines
42
43
inline
44
SiHitCollection_p1::SiHitCollection_p1
() {}
45
46
inline
47
const
std::string&
48
SiHitCollection_p1::name
()
const
49
{
return
m_name
;}
50
51
inline
52
const
std::vector<SiHit_p1>&
53
SiHitCollection_p1::getVector
()
const
54
{
return
m_cont
;}
55
56
#endif
xAOD::iterator
JetConstituentVector::iterator iterator
Definition:
JetConstituentVector.cxx:68
SiHitCollection_p1::const_iterator
HitVector::const_iterator const_iterator
Definition:
SiHitCollection_p1.h:25
SiHitCollection_p1::name
const std::string & name() const
Definition:
SiHitCollection_p1.h:48
SiHitCollection_p1::SiHitCollection_p1
SiHitCollection_p1()
Default constructor.
Definition:
SiHitCollection_p1.h:44
SiHit_p1.h
SiHitCollection_p1
Definition:
SiHitCollection_p1.h:21
SiHitCollection_p1::m_name
std::string m_name
Definition:
SiHitCollection_p1.h:37
SiHitCollection_p1::m_cont
std::vector< SiHit_p1 > m_cont
Definition:
SiHitCollection_p1.h:36
SiHitCollection_p1::iterator
HitVector::iterator iterator
Definition:
SiHitCollection_p1.h:26
SiHitCollection_p1::getVector
const HitVector & getVector() const
Definition:
SiHitCollection_p1.h:53
SiHitCollection_p1::HitVector
std::vector< SiHit_p1 > HitVector
typedefs
Definition:
SiHitCollection_p1.h:24
Generated on Fri Mar 14 2025 21:18:38 for ATLAS Offline Software by
1.8.18