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
Columnar
ColumnarExampleTools
Root
ConfigurableColumnExampleTool.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
7
//
8
// includes
9
//
10
11
#include <
ColumnarExampleTools/ConfigurableColumnExampleTool.h
>
12
13
//
14
// method implementations
15
//
16
17
namespace
columnar
18
{
19
ConfigurableColumnExampleTool ::
20
ConfigurableColumnExampleTool
(
const
std::string&
name
)
21
: AsgTool (
name
)
22
{}
23
24
25
26
StatusCode
ConfigurableColumnExampleTool ::
27
initialize
()
28
{
29
if
(
m_ptVar
.empty())
30
{
31
ATH_MSG_ERROR
(
"no pt variable specified"
);
32
return
StatusCode::FAILURE;
33
}
34
// set the accessor for the pt variable the user configured
35
resetAccessor
(
ptAcc
, *
this
,
m_ptVar
.value());
36
37
// give the base class a chance to initialize the column accessor
38
// backends
39
ANA_CHECK
(initializeColumns());
40
return
StatusCode::SUCCESS;
41
}
42
43
44
45
void
ConfigurableColumnExampleTool ::
46
callEvents
(
EventContextRange
events
)
const
47
{
48
// loop over all events and particles. note that this is
49
// deliberately looping by value, as the ID classes are very small
50
// and can be copied cheaply. this could have also been written as
51
// a single loop over all particles in the event range, but I chose
52
// to split it up into two loops as most tools will need to do some
53
// per-event things, e.g. retrieve `EventInfo`.
54
for
(
columnar::EventContextId
event
:
events
)
55
{
56
for
(
columnar::ParticleId
particle :
particlesHandle
(
event
))
57
{
58
selectionDec
(particle) = (
ptAcc
(particle) >
m_ptCut
.value());
59
}
60
}
61
}
62
}
columnar::ConfigurableColumnExampleTool::particlesHandle
ParticleAccessor< ObjectColumn > particlesHandle
the object accessor for the particles
Definition:
ConfigurableColumnExampleTool.h:51
columnar::ConfigurableColumnExampleTool::m_ptCut
Gaudi::Property< float > m_ptCut
the pt cut to apply
Definition:
ConfigurableColumnExampleTool.h:43
columnar::ConfigurableColumnExampleTool::ptAcc
ParticleAccessor< float > ptAcc
the pt accessor for the particle container
Definition:
ConfigurableColumnExampleTool.h:59
ANA_CHECK
#define ANA_CHECK(EXP)
check whether the given expression was successful
Definition:
Control/AthToolSupport/AsgMessaging/AsgMessaging/MessageCheck.h:324
columnar::ObjectRange
a class representing a continuous sequence of objects (a.k.a. a container)
Definition:
ObjectRange.h:18
columnar::ConfigurableColumnExampleTool::callEvents
virtual void callEvents(EventContextRange events) const override
Definition:
ConfigurableColumnExampleTool.cxx:46
python.DataFormatRates.events
events
Definition:
DataFormatRates.py:105
columnar::ConfigurableColumnExampleTool::initialize
virtual StatusCode initialize() override
Dummy implementation of the initialisation function.
Definition:
ConfigurableColumnExampleTool.cxx:27
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition:
AthMsgStreamMacros.h:33
event
POOL::TEvent event(POOL::TEvent::kClassAccess)
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ConfigurableColumnExampleTool.h
columnar::ObjectId
a class representing a single object (electron, muons, etc.)
Definition:
ObjectId.h:18
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
columnar::ConfigurableColumnExampleTool::selectionDec
ParticleDecorator< char > selectionDec
the selection decorator for the particles
Definition:
ConfigurableColumnExampleTool.h:70
columnar
Definition:
ClusterDef.h:16
columnar::ConfigurableColumnExampleTool::m_ptVar
Gaudi::Property< std::string > m_ptVar
the pt variable to use
Definition:
ConfigurableColumnExampleTool.h:40
columnar::resetAccessor
void resetAccessor(AccessorTemplate< CI, CT, CAM, CM > &accessor, ColumnarTool< CM > &columnBase, const std::string &name, ColumnInfo &&info={})
reset a column accessor to point to a new column
Definition:
ColumnAccessor.h:212
columnar::ConfigurableColumnExampleTool::ConfigurableColumnExampleTool
ConfigurableColumnExampleTool(const std::string &name)
Definition:
ConfigurableColumnExampleTool.cxx:20
Generated on Wed Apr 2 2025 21:08:48 for ATLAS Offline Software by
1.8.18