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
TrigParticleTPCnv
TrigParticleTPCnv
TrigTau_p3.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
/**********************************************************************************
6
* @Project: Trigger
7
* @Package: TrigParticleTPCnv
8
* @class : TrigTau_p3
9
*
10
* @brief persistent partner for TrigTau
11
*
12
* @author Andrew Hamilton <Andrew.Hamilton@cern.ch> - U. Geneva
13
* @author Francesca Bucci <f.bucci@cern.ch> - U. Geneva
14
* last changes by Olga Igonkina (Nikhef)
15
*
16
* File and Version Information:
17
* $Id: TrigTau_p3.h,v 1.2 2009-04-01 22:13:31 salvator Exp $
18
**********************************************************************************/
19
#ifndef TRIGPARTICLETPCNV_TRIGTAU_P3_H
20
#define TRIGPARTICLETPCNV_TRIGTAU_P3_H
21
22
//#include "AthenaPoolUtilities/TPObjRef.h"
23
#include "
EventCommonTPCnv/P4PtEtaPhiMCnv_p1.h
"
24
25
class
TrigTau_p3
26
{
27
friend
class
TrigTauCnv_p3
;
28
29
public
:
30
31
TrigTau_p3
():
32
m_roiID
(0),
33
m_Zvtx
(0),
34
m_err_Zvtx
(0),
35
m_etCalibCluster
(0),
36
m_simpleEtFlow
(0),
37
m_nMatchedTracks
(0),
38
m_trkAvgDist
(0),
39
m_etOverPtLeadTrk
(0),
40
m_p4PtEtaPhiM
()
41
{};
42
43
~TrigTau_p3
() =
default
;
44
45
//private:
46
47
48
int
m_roiID
;
49
float
m_Zvtx
;
50
float
m_err_Zvtx
;
51
float
m_etCalibCluster
;
52
float
m_simpleEtFlow
;
53
int
m_nMatchedTracks
;
54
float
m_trkAvgDist
;
55
float
m_etOverPtLeadTrk
;
56
57
//the P4PtEtaPhiM base class
58
P4PtEtaPhiM_p1
m_p4PtEtaPhiM
;
59
60
};
61
62
#endif
P4PtEtaPhiMCnv_p1.h
TrigTau_p3::m_trkAvgDist
float m_trkAvgDist
Definition:
TrigTau_p3.h:67
TrigTau_p3::m_roiID
int m_roiID
Definition:
TrigTau_p3.h:61
TrigTau_p3::m_simpleEtFlow
float m_simpleEtFlow
Definition:
TrigTau_p3.h:65
TrigTau_p3
Definition:
TrigTau_p3.h:26
TrigTauCnv_p3
Definition:
TrigTauCnv_p3.h:29
TrigTau_p3::TrigTau_p3
TrigTau_p3()
Definition:
TrigTau_p3.h:44
TrigTau_p3::m_p4PtEtaPhiM
P4PtEtaPhiM_p1 m_p4PtEtaPhiM
Definition:
TrigTau_p3.h:71
TrigTau_p3::~TrigTau_p3
~TrigTau_p3()=default
P4PtEtaPhiM_p1
Definition:
P4PtEtaPhiM_p1.h:23
TrigTau_p3::m_nMatchedTracks
int m_nMatchedTracks
Definition:
TrigTau_p3.h:66
TrigTau_p3::m_etCalibCluster
float m_etCalibCluster
Definition:
TrigTau_p3.h:64
TrigTau_p3::m_err_Zvtx
float m_err_Zvtx
Definition:
TrigTau_p3.h:63
TrigTau_p3::m_Zvtx
float m_Zvtx
Definition:
TrigTau_p3.h:62
TrigTau_p3::m_etOverPtLeadTrk
float m_etOverPtLeadTrk
Definition:
TrigTau_p3.h:68
Generated on Wed May 7 2025 21:21:08 for ATLAS Offline Software by
1.8.18