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
PhysicsAnalysis
JetTagging
JetTagInfo
JetTagInfo
TrackGrade.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
#ifndef JETTAGINFO_TRACKGRADE
6
#define JETTAGINFO_TRACKGRADE
7
#include <string>
8
9
namespace
Analysis
{
10
11
class
TrackGrade
{
12
public
:
13
14
TrackGrade
();
15
16
TrackGrade
(
int
,
const
std::string&);
17
18
TrackGrade
(
const
TrackGrade
& );
19
TrackGrade
(
TrackGrade
&& ) noexcept =
default
;
20
TrackGrade
&operator= (
const
TrackGrade
& rhs);
21
TrackGrade
&operator= (
TrackGrade
&& rhs) noexcept =
default
;
22
bool
operator== (
const
std::
string
&)
const
;
23
bool
operator== (
const
int
&)
const
;
24
bool
operator== (
const
TrackGrade
& rhs)
const
;
25
26
virtual ~
TrackGrade
();
27
28
const
std::
string
&
gradeString
()
const
;
29
30
int
gradeNumber
()
const
;
31
32
operator
int
()
const
;
33
34
// cppcheck-suppress returnByReference
35
operator
const
std::
string
()
const
;
36
37
private
:
38
39
int
m_gradeNumber
;
40
std::
string
m_gradeName
;
41
};
42
43
}
44
#endif // JETTAGINFO_TRACKGRADE
Analysis::TrackGrade
Definition:
TrackGrade.h:11
Analysis::TrackGrade::TrackGrade
TrackGrade()
Definition:
TrackGrade.cxx:12
const
bool const RAWDATA *ch2 const
Definition:
LArRodBlockPhysicsV0.cxx:560
Analysis::TrackGrade::gradeString
const std::string & gradeString() const
Definition:
TrackGrade.cxx:43
Analysis
The namespace of all packages in PhysicsAnalysis/JetTagging.
Definition:
BTaggingCnvAlg.h:20
Analysis::TrackGrade::m_gradeName
std::string m_gradeName
Definition:
TrackGrade.h:40
private
#define private
Definition:
DetDescrConditionsDict_dict_fixes.cxx:13
python.CaloAddPedShiftConfig.default
default
Definition:
CaloAddPedShiftConfig.py:43
Analysis::TrackGrade::TrackGrade
TrackGrade(TrackGrade &&) noexcept=default
Analysis::TrackGrade::gradeNumber
int gradeNumber() const
Definition:
TrackGrade.cxx:47
Analysis::TrackGrade::m_gradeNumber
int m_gradeNumber
Definition:
TrackGrade.h:39
Generated on Mon Apr 7 2025 21:20:55 for ATLAS Offline Software by
1.8.18