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
w
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
TrigEvent
TrigInDetEventTPCnv
TrigInDetEventTPCnv
TrigTrackCounts_p1.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
/**********************************************************************************
6
* @Project: Trigger
7
* @Package: TrigInDetEventTPCnv
8
* @class : TrigTrackCounts_p1
9
*
10
* @brief persistent partner for TrigTrackCounts
11
*
12
* @author Regina Kwee <Regina.Kwee@cern.ch> - CERN
13
* @author Andrew Hamilton <Andrew.Hamilton@cern.ch> - U. Geneva
14
* @author Francesca Bucci <F.Bucci@cern.ch> - U. Geneva
15
*
16
**********************************************************************************/
17
#ifndef TRIGINDETEVENTTPCNV_TRIGTRACKCOUNTS_P1_H
18
#define TRIGINDETEVENTTPCNV_TRIGTRACKCOUNTS_P1_H
19
20
#include <vector>
21
22
class
TrigTrackCounts_p1
23
{
24
friend
class
TrigTrackCountsCnv_p1
;
25
26
public
:
27
28
TrigTrackCounts_p1
() {}
29
virtual
~TrigTrackCounts_p1
() =
default
;
30
31
protected
:
32
33
std::vector<float>
m_z0pcnt
;
34
std::vector<float>
m_phi0cnt
;
35
std::vector<float>
m_etacnt
;
36
std::vector<float>
m_ptcnt
;
37
int
m_trkcnt
{};
38
int
m_pixcnt
{};
39
int
m_sctcnt
{};
40
41
};
42
43
#endif
TrigTrackCounts_p1::m_etacnt
std::vector< float > m_etacnt
Definition:
TrigTrackCounts_p1.h:46
TrigTrackCounts_p1::m_sctcnt
int m_sctcnt
Definition:
TrigTrackCounts_p1.h:50
TrigTrackCounts_p1::m_trkcnt
int m_trkcnt
Definition:
TrigTrackCounts_p1.h:48
TrigTrackCounts_p1::~TrigTrackCounts_p1
virtual ~TrigTrackCounts_p1()=default
TrigTrackCounts_p1::m_z0pcnt
std::vector< float > m_z0pcnt
Definition:
TrigTrackCounts_p1.h:44
TrigTrackCounts_p1
Definition:
TrigTrackCounts_p1.h:23
TrigTrackCountsCnv_p1
Definition:
TrigTrackCountsCnv_p1.h:30
TrigTrackCounts_p1::m_ptcnt
std::vector< float > m_ptcnt
Definition:
TrigTrackCounts_p1.h:47
TrigTrackCounts_p1::m_pixcnt
int m_pixcnt
Definition:
TrigTrackCounts_p1.h:49
TrigTrackCounts_p1::TrigTrackCounts_p1
TrigTrackCounts_p1()
Definition:
TrigTrackCounts_p1.h:39
TrigTrackCounts_p1::m_phi0cnt
std::vector< float > m_phi0cnt
Definition:
TrigTrackCounts_p1.h:45
Generated on Tue May 13 2025 21:21:11 for ATLAS Offline Software by
1.8.18