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
PhysicsAnalysis
JetTagging
JetTagInfoTPCnv
JetTagInfoTPCnv
AtlfInfo_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 JETTAGINFOTPCNV_AtlfInfo_P1_H
6
#define JETTAGINFOTPCNV_AtlfInfo_P1_H
7
8
#include "
JetTagInfoTPCnv/BaseTagInfo_p1.h
"
9
#include "
AthenaPoolUtilities/TPObjRef.h
"
10
14
15
namespace
Analysis
{
16
17
class
AtlfInfo_p1
{
18
friend
class
AtlfInfoCnv_p1
;
19
20
public
:
21
inline
AtlfInfo_p1
(
void
);
22
23
private
:
24
TPObjRef
m_BaseTagInfo
;
25
26
bool
m_isBTagged
;
27
bool
m_isTauTagged
;
28
bool
m_isTau1PTagged
;
29
bool
m_isTau3PTagged
;
30
float
m_calFactLight
;
31
float
m_calFactTau
;
32
float
m_calFactTau1P3P
;
33
float
m_calFactB
;
34
float
m_distanceToBQuark
;
35
float
m_distanceToCQuark
;
36
float
m_distanceToTLepton
;
37
};
38
40
AtlfInfo_p1::AtlfInfo_p1
()
41
: m_isBTagged(false),
42
m_isTauTagged (false),
43
m_isTau1PTagged (false),
44
m_isTau3PTagged(false),
45
m_calFactLight(0.0),
46
m_calFactTau(0.0),
47
m_calFactTau1P3P(0.0),
48
m_calFactB(0.0),
49
m_distanceToBQuark(0.0),
50
m_distanceToCQuark(0.0),
51
m_distanceToTLepton(0.0)
52
{
53
}
54
}
55
56
#endif
Analysis::AtlfInfo_p1::m_isTauTagged
bool m_isTauTagged
Definition:
AtlfInfo_p1.h:27
Analysis::AtlfInfo_p1::m_distanceToBQuark
float m_distanceToBQuark
Definition:
AtlfInfo_p1.h:34
Analysis::AtlfInfo_p1::m_isBTagged
bool m_isBTagged
Definition:
AtlfInfo_p1.h:26
Analysis::AtlfInfo_p1::m_calFactLight
float m_calFactLight
Definition:
AtlfInfo_p1.h:30
Analysis::AtlfInfo_p1::AtlfInfo_p1
AtlfInfo_p1(void)
Zero out the container when we do the init!
Definition:
AtlfInfo_p1.h:40
BaseTagInfo_p1.h
Analysis::AtlfInfo_p1::m_calFactB
float m_calFactB
Definition:
AtlfInfo_p1.h:33
TPObjRef
Definition:
TPObjRef.h:20
Analysis::AtlfInfo_p1
Definition:
AtlfInfo_p1.h:17
Analysis::AtlfInfo_p1::m_calFactTau
float m_calFactTau
Definition:
AtlfInfo_p1.h:31
Analysis::AtlfInfo_p1::m_isTau3PTagged
bool m_isTau3PTagged
Definition:
AtlfInfo_p1.h:29
Analysis::AtlfInfo_p1::m_distanceToCQuark
float m_distanceToCQuark
Definition:
AtlfInfo_p1.h:35
Analysis
The namespace of all packages in PhysicsAnalysis/JetTagging.
Definition:
BTaggingCnvAlg.h:20
Analysis::AtlfInfo_p1::m_isTau1PTagged
bool m_isTau1PTagged
Definition:
AtlfInfo_p1.h:28
TPObjRef.h
Analysis::AtlfInfo_p1::m_calFactTau1P3P
float m_calFactTau1P3P
Definition:
AtlfInfo_p1.h:32
Analysis::AtlfInfoCnv_p1
Definition:
AtlfInfoCnv_p1.h:27
Analysis::AtlfInfo_p1::m_BaseTagInfo
TPObjRef m_BaseTagInfo
Definition:
AtlfInfo_p1.h:24
Analysis::AtlfInfo_p1::m_distanceToTLepton
float m_distanceToTLepton
Definition:
AtlfInfo_p1.h:36
Generated on Wed May 7 2025 21:06:31 for ATLAS Offline Software by
1.8.18