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
Trigger
EFTracking
FPGATrackSim
FPGATrackSimObjects
src
FPGATrackSimOptionalEventInfo.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
FPGATrackSimObjects/FPGATrackSimOptionalEventInfo.h
"
6
#include <iostream>
7
8
9
FPGATrackSimOptionalEventInfo::~FPGATrackSimOptionalEventInfo
() {
10
reset
();
11
}
12
13
void
FPGATrackSimOptionalEventInfo::reset
() {
14
m_OfflineClusters
.clear();
15
m_OfflineTracks
.clear();
16
m_TruthTracks
.clear();
17
}
18
19
std::ostream&
operator<<
(std::ostream&
s
,
const
FPGATrackSimOptionalEventInfo
&
info
) {
20
s
<<
"nOfflineClusters: "
<<
info
.nOfflineClusters() <<
", "
21
<<
"nOfflineTracks: "
<<
info
.nOfflineTracks() <<
", "
22
<<
"nTruthTracks: "
<<
info
.nTruthTracks() << std::endl;
23
return
s
;
24
}
grepfile.info
info
Definition:
grepfile.py:38
FPGATrackSimOptionalEventInfo::m_OfflineTracks
std::vector< FPGATrackSimOfflineTrack > m_OfflineTracks
Definition:
FPGATrackSimOptionalEventInfo.h:51
python.SystemOfUnits.s
int s
Definition:
SystemOfUnits.py:131
operator<<
std::ostream & operator<<(std::ostream &s, const FPGATrackSimOptionalEventInfo &info)
Definition:
FPGATrackSimOptionalEventInfo.cxx:19
FPGATrackSimOptionalEventInfo::~FPGATrackSimOptionalEventInfo
virtual ~FPGATrackSimOptionalEventInfo()
Definition:
FPGATrackSimOptionalEventInfo.cxx:9
FPGATrackSimOptionalEventInfo::reset
void reset()
Definition:
FPGATrackSimOptionalEventInfo.cxx:13
FPGATrackSimOptionalEventInfo::m_OfflineClusters
std::vector< FPGATrackSimCluster > m_OfflineClusters
Definition:
FPGATrackSimOptionalEventInfo.h:50
FPGATrackSimOptionalEventInfo
Definition:
FPGATrackSimOptionalEventInfo.h:17
FPGATrackSimOptionalEventInfo::m_TruthTracks
std::vector< FPGATrackSimTruthTrack > m_TruthTracks
Definition:
FPGATrackSimOptionalEventInfo.h:52
FPGATrackSimOptionalEventInfo.h
Generated on Fri Apr 25 2025 21:10:55 for ATLAS Offline Software by
1.8.18