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
AFP
AFP_EventCnv
AFP_EventTPCnv
AFP_EventTPCnv
AFP_SIDSimHitCollection_p1.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef AFP_SIDSimHitCollection_p1_h
6
#define AFP_SIDSimHitCollection_p1_h
7
8
//#include "AthenaPoolUtilities/TPObjRef.h"
9
#include "
AFP_EventTPCnv/AFP_SIDSimHit_p1.h
"
10
11
#include <vector>
12
#include <string>
13
14
class
AFP_SIDSimHitCollection_p1
15
{
16
public
:
17
typedef
std::vector<AFP_SIDSimHit_p1>
HitVector
;
18
typedef
HitVector::const_iterator
const_iterator
;
19
typedef
HitVector::iterator
iterator
;
20
21
AFP_SIDSimHitCollection_p1
() {}
22
23
// Accessors
24
const
std::string&
name
()
const
{
return
m_name
; }
25
const
HitVector
&
getVector
()
const
{
return
m_cont
;}
26
27
std::string
m_name
;
28
std::vector<AFP_SIDSimHit_p1>
m_cont
;
29
};
30
31
#endif // AFP_SIDSimHitCollection_p1_h
AFP_SIDSimHitCollection_p1::getVector
const HitVector & getVector() const
Definition:
AFP_SIDSimHitCollection_p1.h:25
xAOD::iterator
JetConstituentVector::iterator iterator
Definition:
JetConstituentVector.cxx:68
AFP_SIDSimHitCollection_p1::m_name
std::string m_name
Definition:
AFP_SIDSimHitCollection_p1.h:27
AFP_SIDSimHitCollection_p1
Definition:
AFP_SIDSimHitCollection_p1.h:15
AFP_SIDSimHit_p1.h
AFP_SIDSimHitCollection_p1::const_iterator
HitVector::const_iterator const_iterator
Definition:
AFP_SIDSimHitCollection_p1.h:18
AFP_SIDSimHitCollection_p1::HitVector
std::vector< AFP_SIDSimHit_p1 > HitVector
Definition:
AFP_SIDSimHitCollection_p1.h:17
AFP_SIDSimHitCollection_p1::m_cont
std::vector< AFP_SIDSimHit_p1 > m_cont
Definition:
AFP_SIDSimHitCollection_p1.h:28
AFP_SIDSimHitCollection_p1::name
const std::string & name() const
Definition:
AFP_SIDSimHitCollection_p1.h:24
AFP_SIDSimHitCollection_p1::AFP_SIDSimHitCollection_p1
AFP_SIDSimHitCollection_p1()
Definition:
AFP_SIDSimHitCollection_p1.h:21
AFP_SIDSimHitCollection_p1::iterator
HitVector::iterator iterator
Definition:
AFP_SIDSimHitCollection_p1.h:19
Generated on Thu Apr 24 2025 21:06:54 for ATLAS Offline Software by
1.8.18