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
graphics
VP1
VP1Systems
VP1VertexSystems
VP1VertexSystems
VertexCommonFlags.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
7
// //
8
// Various flags - put here to avoid the need to include //
9
// other header files just for the flags //
10
// //
11
// Author: Thomas H. Kittelmann (Thomas.Kittelmann@cern.ch) //
12
// Initial version: August 2008 //
13
// //
15
16
#ifndef VERTEXCOMMONFLAGS_H
17
#define VERTEXCOMMONFLAGS_H
18
19
#include <QFlags>
20
#include <QString>
21
22
class
VertexCommonFlags
{
23
public
:
24
25
enum
ReconVertexTypeFlag
{
26
RVT_Primary
= 0x01,
27
RVT_Secondary
= 0x02,
28
RVT_V0
= 0x04,
29
RVT_Conversion
= 0x08,
30
RVT_Kink
= 0x10,
31
RVT_Pileup
= 0x20,
32
RVT_Other
= 0x40,
33
RVT_Any
= 0x7F
34
};
35
Q_DECLARE_FLAGS(ReconVertexTypeFlags,
ReconVertexTypeFlag
)
36
37
enum
QUANTITY
{
ENERGY
,
MOMENTUM
,
TRANSVERSE_MOM
,
MASS
};
38
static
QString
toString
(
const
QUANTITY
&);
39
40
private
:
41
VertexCommonFlags
();
42
~VertexCommonFlags
();
43
};
44
45
Q_DECLARE_OPERATORS_FOR_FLAGS(VertexCommonFlags::ReconVertexTypeFlags)
46
47
#endif
VertexCommonFlags::MOMENTUM
@ MOMENTUM
Definition:
VertexCommonFlags.h:37
VertexCommonFlags::RVT_Primary
@ RVT_Primary
Definition:
VertexCommonFlags.h:26
VertexCommonFlags::ENERGY
@ ENERGY
Definition:
VertexCommonFlags.h:37
VertexCommonFlags::RVT_Kink
@ RVT_Kink
Definition:
VertexCommonFlags.h:30
VertexCommonFlags::RVT_Other
@ RVT_Other
Definition:
VertexCommonFlags.h:32
VertexCommonFlags::toString
static QString toString(const QUANTITY &)
Definition:
VertexCommonFlags.cxx:18
VertexCommonFlags::RVT_Secondary
@ RVT_Secondary
Definition:
VertexCommonFlags.h:27
VertexCommonFlags::RVT_V0
@ RVT_V0
Definition:
VertexCommonFlags.h:28
VertexCommonFlags
Definition:
VertexCommonFlags.h:22
VertexCommonFlags::MASS
@ MASS
Definition:
VertexCommonFlags.h:37
VertexCommonFlags::RVT_Conversion
@ RVT_Conversion
Definition:
VertexCommonFlags.h:29
VertexCommonFlags::RVT_Any
@ RVT_Any
Definition:
VertexCommonFlags.h:33
VertexCommonFlags::TRANSVERSE_MOM
@ TRANSVERSE_MOM
Definition:
VertexCommonFlags.h:37
VertexCommonFlags::QUANTITY
QUANTITY
Definition:
VertexCommonFlags.h:37
VertexCommonFlags::ReconVertexTypeFlag
ReconVertexTypeFlag
Definition:
VertexCommonFlags.h:25
VertexCommonFlags::RVT_Pileup
@ RVT_Pileup
Definition:
VertexCommonFlags.h:31
VertexCommonFlags::VertexCommonFlags
VertexCommonFlags()
VertexCommonFlags::~VertexCommonFlags
~VertexCommonFlags()
Generated on Wed Apr 9 2025 21:22:46 for ATLAS Offline Software by
1.8.18