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
ForwardDetectors
ALFA
ALFA_EventCnv
ALFA_EventTPCnv
ALFA_EventTPCnv
ALFA_HitCollection_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 ALFA_HitCollection_p1_h
6
#define ALFA_HitCollection_p1_h
7
8
//#include "AthenaPoolUtilities/TPObjRef.h"
9
10
#include "
ALFA_EventTPCnv/ALFA_Hit_p1.h
"
11
12
#include <vector>
13
#include <string>
14
15
/* class ALFA_HitCollection_p1
16
: public std::vector<TPObjRef>
17
{
18
public:
19
ALFA_HitCollection_p1(){}
20
}; */
21
22
class
ALFA_HitCollection_p1
23
{
24
public
:
25
26
typedef
std::vector<ALFA_Hit_p1>
HitVector
;
27
typedef
HitVector::const_iterator
const_iterator
;
28
typedef
HitVector::iterator
iterator
;
29
30
// Default constructor
31
ALFA_HitCollection_p1
();
32
33
34
35
//inline ALFA_HitCollection_p1::ALFA_HitCollection_p1 () {}
36
37
// Accessors
38
const
std::string&
name
()
const
;
39
const
HitVector
&
getVector
()
const
;
40
41
//private:
42
std::vector<ALFA_Hit_p1>
m_cont
;
43
std::string
m_name
;
44
};
45
46
// inlines
47
48
inline
49
ALFA_HitCollection_p1::ALFA_HitCollection_p1
() {}
50
51
inline
52
const
std::string&
53
ALFA_HitCollection_p1::name
()
const
54
{
return
m_name
;}
55
56
inline
57
const
std::vector<ALFA_Hit_p1>&
58
ALFA_HitCollection_p1::getVector
()
const
59
{
return
m_cont
;}
60
61
62
#endif // ALFA_HitCollection_p1_h
xAOD::iterator
JetConstituentVector::iterator iterator
Definition:
JetConstituentVector.cxx:68
ALFA_HitCollection_p1::HitVector
std::vector< ALFA_Hit_p1 > HitVector
Definition:
ALFA_HitCollection_p1.h:26
ALFA_HitCollection_p1::m_name
std::string m_name
Definition:
ALFA_HitCollection_p1.h:43
ALFA_HitCollection_p1::const_iterator
HitVector::const_iterator const_iterator
Definition:
ALFA_HitCollection_p1.h:27
ALFA_Hit_p1.h
ALFA_HitCollection_p1::m_cont
std::vector< ALFA_Hit_p1 > m_cont
Definition:
ALFA_HitCollection_p1.h:42
ALFA_HitCollection_p1::getVector
const HitVector & getVector() const
Definition:
ALFA_HitCollection_p1.h:58
ALFA_HitCollection_p1::name
const std::string & name() const
Definition:
ALFA_HitCollection_p1.h:53
ALFA_HitCollection_p1::iterator
HitVector::iterator iterator
Definition:
ALFA_HitCollection_p1.h:28
ALFA_HitCollection_p1::ALFA_HitCollection_p1
ALFA_HitCollection_p1()
Definition:
ALFA_HitCollection_p1.h:49
ALFA_HitCollection_p1
Definition:
ALFA_HitCollection_p1.h:23
Generated on Wed Apr 23 2025 21:07:02 for ATLAS Offline Software by
1.8.18