ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
PhysicsAnalysis
Columnar
ColumnarExampleTools
Root
SimpleSelectorExampleTool.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/SimpleSelectorExampleTool.h
>
12
13
//
14
// method implementations
15
//
16
17
namespace
columnar
18
{
19
SimpleSelectorExampleTool ::
20
SimpleSelectorExampleTool (
const
std::string& name)
21
:
AsgTool
(name)
22
{}
23
24
25
26
StatusCode SimpleSelectorExampleTool ::
27
initialize ()
28
{
29
// give the base class a chance to initialize the column accessor
30
// backends
31
ANA_CHECK
(initializeColumns());
32
return
StatusCode::SUCCESS;
33
}
34
35
36
37
void
SimpleSelectorExampleTool ::
38
callSingleEvent (
ParticleRange
particles)
const
39
{
40
for
(
ParticleId
particle : particles)
41
{
42
selectionDec
(particle) =
ptAcc
(particle) >
m_ptCut
.value();
43
}
44
}
45
46
47
48
void
SimpleSelectorExampleTool ::
49
callEvents (
EventContextRange
events)
const
50
{
51
// loop over all events and particles. note that this is
52
// deliberately looping by value, as the ID classes are very small
53
// and can be copied cheaply. this could have also been written as
54
// a single loop over all particles in the event range, but I chose
55
// to split it up into two loops as most tools will need to do some
56
// per-event things, e.g. retrieve `EventInfo`.
57
for
(
columnar::EventContextId
event : events)
58
{
59
callSingleEvent
(
particlesHandle
(event));
60
}
61
}
62
}
ANA_CHECK
#define ANA_CHECK(EXP)
check whether the given expression was successful
Definition
Control/AthToolSupport/AsgMessaging/AsgMessaging/MessageCheck.h:324
SimpleSelectorExampleTool.h
asg::AsgTool::AsgTool
AsgTool(const std::string &name)
Constructor specifying the tool instance's name.
Definition
AsgTool.cxx:58
columnar::SimpleSelectorExampleTool::particlesHandle
ParticleAccessor< ObjectColumn > particlesHandle
the object accessor for the particles
Definition
SimpleSelectorExampleTool.h:69
columnar::SimpleSelectorExampleTool::m_ptCut
Gaudi::Property< float > m_ptCut
the pt cut to apply
Definition
SimpleSelectorExampleTool.h:61
columnar::SimpleSelectorExampleTool::ptAcc
ParticleAccessor< float > ptAcc
the pt accessor for the particle container
Definition
SimpleSelectorExampleTool.h:78
columnar::SimpleSelectorExampleTool::selectionDec
ParticleDecorator< char > selectionDec
the selection decorator for the particles
Definition
SimpleSelectorExampleTool.h:89
columnar::SimpleSelectorExampleTool::callSingleEvent
void callSingleEvent(ParticleRange particles) const
Definition
SimpleSelectorExampleTool.cxx:38
columnar
Definition
ClusterDef.h:16
columnar::EventContextRange
ObjectRange< EventContextDef > EventContextRange
Definition
ContainerId.h:211
columnar::EventContextId
ObjectId< EventContextDef > EventContextId
Definition
ContainerId.h:212
columnar::ParticleId
ObjectId< ParticleDef > ParticleId
Definition
ParticleDef.h:33
columnar::ParticleRange
ObjectRange< ParticleDef > ParticleRange
Definition
ParticleDef.h:32
Generated on
for ATLAS Offline Software by
1.17.0