Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 
12 
13 //
14 // method implementations
15 //
16 
17 namespace columnar
18 {
20  SimpleSelectorExampleTool (const std::string& name)
21  : AsgTool (name)
22  {}
23 
24 
25 
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 
39  {
40  for (ParticleId particle : particles)
41  {
42  selectionDec(particle) = ptAcc(particle) > m_ptCut.value();
43  }
44  }
45 
46 
47 
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`.
58  {
60  }
61  }
62 }
columnar::SimpleSelectorExampleTool::ptAcc
ParticleAccessor< float > ptAcc
the pt accessor for the particle container
Definition: SimpleSelectorExampleTool.h:75
columnar::SimpleSelectorExampleTool::particlesHandle
ParticleAccessor< ObjectColumn > particlesHandle
the object accessor for the particles
Definition: SimpleSelectorExampleTool.h:66
columnar::SimpleSelectorExampleTool::m_ptCut
Gaudi::Property< float > m_ptCut
the pt cut to apply
Definition: SimpleSelectorExampleTool.h:58
columnar::SimpleSelectorExampleTool::SimpleSelectorExampleTool
SimpleSelectorExampleTool(const std::string &name)
Definition: SimpleSelectorExampleTool.cxx:20
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
python.DataFormatRates.events
events
Definition: DataFormatRates.py:105
SimpleSelectorExampleTool.h
columnar::SimpleSelectorExampleTool::selectionDec
ParticleDecorator< char > selectionDec
the selection decorator for the particles
Definition: SimpleSelectorExampleTool.h:86
event
POOL::TEvent event(POOL::TEvent::kClassAccess)
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
columnar::SimpleSelectorExampleTool::initialize
virtual StatusCode initialize() override
Dummy implementation of the initialisation function.
Definition: SimpleSelectorExampleTool.cxx:27
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::SimpleSelectorExampleTool::callEvents
virtual void callEvents(EventContextRange events) const override
Definition: SimpleSelectorExampleTool.cxx:49
columnar
Definition: ClusterDef.h:16
LArG4FSStartPointFilter.particles
list particles
Definition: LArG4FSStartPointFilter.py:84
columnar::SimpleSelectorExampleTool::callSingleEvent
void callSingleEvent(ParticleRange particles) const
Definition: SimpleSelectorExampleTool.cxx:38