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
Simulation
ISF
ISF_Core
ISF_Interfaces
ISF_Interfaces
IParticleOrderingTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// IParticleOrderingTool.h, (c) ATLAS Detector software
8
9
10
#ifndef ISF_INTERFACES_IORDERINGTOOL_H
11
#define ISF_INTERFACES_IORDERINGTOOL_H 1
12
13
14
#include "GaudiKernel/IAlgTool.h"
15
16
// Simulation includes
17
#include "
ISF_Event/ISFParticle.h
"
18
#include "
ISF_Event/ParticleOrder.h
"
19
20
namespace
ISF
{
21
22
class
ISFParticle;
23
35
class
IParticleOrderingTool
:
virtual
public
IAlgTool {
36
public
:
37
39
virtual
~IParticleOrderingTool
(){}
40
42
DeclareInterfaceID
(
IParticleOrderingTool
, 1, 0);
43
45
inline
void
setOrder
(
ISFParticle
&
p
);
46
48
virtual
ISF::ParticleOrder
computeOrder
(
const
ISFParticle
&
p
)
const
= 0;
49
};
50
51
52
//
53
// inline methods
54
//
55
57
inline
void
ISF::IParticleOrderingTool::setOrder
(
ISFParticle
&
p
) {
58
ISF::ParticleOrder
order
= computeOrder(
p
);
59
p
.setOrder(
order
);
60
}
61
62
}
// end of namespace
63
64
#endif // ISF_INTERFACES_IORDERINGTOOL_H
ISF::IParticleOrderingTool::computeOrder
virtual ISF::ParticleOrder computeOrder(const ISFParticle &p) const =0
compute the order for the given ISF particle
ISF::IParticleOrderingTool::DeclareInterfaceID
DeclareInterfaceID(IParticleOrderingTool, 1, 0)
Creates the InterfaceID and interfaceID() method.
ISF::ISFParticle
Definition:
ISFParticle.h:42
ISF::ParticleOrder
int ParticleOrder
particle order definition
Definition:
ParticleOrder.h:15
ISFParticle.h
python.utils.AtlRunQueryDQUtils.p
p
Definition:
AtlRunQueryDQUtils.py:210
ParticleOrder.h
mc.order
order
Configure Herwig7.
Definition:
mc.Herwig7_Dijet.py:12
ISF::IParticleOrderingTool::setOrder
void setOrder(ISFParticle &p)
set the order for the given particle
Definition:
IParticleOrderingTool.h:57
ISF::IParticleOrderingTool
Definition:
IParticleOrderingTool.h:35
ISF::IParticleOrderingTool::~IParticleOrderingTool
virtual ~IParticleOrderingTool()
Virtual destructor.
Definition:
IParticleOrderingTool.h:39
ISF
ISFParticleOrderedQueue.
Definition:
PrimaryParticleInformation.h:13
Generated on Wed Apr 2 2025 21:12:14 for ATLAS Offline Software by
1.8.18