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
Simulation
ISF
ISF_SimulationSelectors
src
DefaultSimSelector.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// DefaultSimSelector.cxx, (c) ATLAS Detector software
8
9
// class include
10
#include "
DefaultSimSelector.h
"
11
// HepMC includes
12
#include "
ISF_Event/ISFParticle.h
"
13
// Units includes
14
#include "GaudiKernel/SystemOfUnits.h"
15
17
ISF::DefaultSimSelector::DefaultSimSelector
(
const
std::string&
t
,
const
std::string&
n
,
const
IInterface*
p
)
18
:
BaseSimulationSelector
(
t
,
n
,
p
)
19
{
20
}
21
23
ISF::DefaultSimSelector::~DefaultSimSelector
()
24
{
25
}
26
27
// Athena algtool's Hooks
28
StatusCode
ISF::DefaultSimSelector::initialize
()
29
{
30
ATH_MSG_VERBOSE
(
"Initializing ..."
);
31
return
StatusCode::SUCCESS;
32
}
33
34
StatusCode
ISF::DefaultSimSelector::finalize
()
35
{
36
ATH_MSG_VERBOSE
(
"Finalizing ..."
);
37
return
StatusCode::SUCCESS;
38
}
39
41
bool
ISF::DefaultSimSelector::passSelectorCuts
(
const
ISFParticle
&
/*particle*/
)
const
42
{
43
return
true
;
44
}
45
ISF::ISFParticle
Definition:
ISFParticle.h:42
ISF::DefaultSimSelector::passSelectorCuts
virtual bool passSelectorCuts(const ISFParticle &particle) const override
check whether given particle passes all cuts -> will be used for routing decision
Definition:
DefaultSimSelector.cxx:41
read_hist_ntuple.t
t
Definition:
read_hist_ntuple.py:5
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition:
AthMsgStreamMacros.h:28
ISF::BaseSimulationSelector
Definition:
BaseSimulationSelector.h:31
ISFParticle.h
python.utils.AtlRunQueryDQUtils.p
p
Definition:
AtlRunQueryDQUtils.py:210
beamspotman.n
n
Definition:
beamspotman.py:731
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ISF::DefaultSimSelector::finalize
StatusCode finalize() override
Definition:
DefaultSimSelector.cxx:34
ISF::DefaultSimSelector::~DefaultSimSelector
~DefaultSimSelector()
Destructor.
Definition:
DefaultSimSelector.cxx:23
ISF::DefaultSimSelector::DefaultSimSelector
DefaultSimSelector(const std::string &t, const std::string &n, const IInterface *p)
Constructor with parameters.
Definition:
DefaultSimSelector.cxx:17
ISF::DefaultSimSelector::initialize
StatusCode initialize() override
Definition:
DefaultSimSelector.cxx:28
DefaultSimSelector.h
Generated on Tue Apr 22 2025 21:09:33 for ATLAS Offline Software by
1.8.18