ATLAS Offline Software
Loading...
Searching...
No Matches
SimpleSelectorExampleTool.h
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#ifndef COLUMNAR_EXAMPLE_TOOLS_SIMPLE_SELECTOR_EXAMPLE_TOOL_H
9#define COLUMNAR_EXAMPLE_TOOLS_SIMPLE_SELECTOR_EXAMPLE_TOOL_H
10
11#include <AsgTools/AsgTool.h>
17
18namespace columnar
19{
41
43 : public asg::AsgTool,
44 public ColumnarTool<>
45 {
46 public:
47
48 // Create a proper constructor for Athena
50
51 SimpleSelectorExampleTool (const std::string& name);
52
53 virtual StatusCode initialize () override;
54
55 void callSingleEvent (ParticleRange particles) const;
56
57 virtual void callEvents (EventContextRange events) const override;
58
59
61 Gaudi::Property<float> m_ptCut {this, "ptCut", 10e3, "pt cut (in MeV)"};
62
63
70
71
79
80
90 };
91}
92
93#endif
#define ASG_TOOL_CLASS(CLASSNAME, INT1)
Base class for the dual-use tool implementation classes.
Definition AsgTool.h:47
Base class for the dual-use tool interface classes.
Definition IAsgTool.h:41
the base class for all columnar components
ParticleAccessor< ObjectColumn > particlesHandle
the object accessor for the particles
Gaudi::Property< float > m_ptCut
the pt cut to apply
ParticleAccessor< float > ptAcc
the pt accessor for the particle container
ParticleDecorator< char > selectionDec
the selection decorator for the particles
virtual void callEvents(EventContextRange events) const override
void callSingleEvent(ParticleRange particles) const
virtual StatusCode initialize() override
Dummy implementation of the initialisation function.
ObjectRange< ContainerId::particle > ParticleRange
Definition ParticleDef.h:35
ObjectRange< ContainerId::eventContext > EventContextRange
AccessorTemplate< ContainerId::particle, CT, ColumnAccessMode::input, CM > ParticleAccessor
Definition ParticleDef.h:38
AccessorTemplate< ContainerId::particle, CT, ColumnAccessMode::output, CM > ParticleDecorator
Definition ParticleDef.h:39