ATLAS Offline Software
Loading...
Searching...
No Matches
VectorExampleTool.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_VECTOR_EXAMPLE_TOOL_H
9#define COLUMNAR_EXAMPLE_TOOLS_VECTOR_EXAMPLE_TOOL_H
10
11#include <AsgTools/AsgTool.h>
18
19namespace columnar
20{
26
28 : public asg::AsgTool,
29 public ColumnarTool<>
30 {
31 public:
32
33 // Create a proper constructor for Athena
35
36 VectorExampleTool (const std::string& name);
37
38 virtual StatusCode initialize () override;
39
40 virtual void callEvents (EventContextRange events) const override;
41
42
44 Gaudi::Property<float> m_ptCut {this, "ptCut", 10e3, "pt cut (in MeV)"};
45
46
53
54
62
63
70
71
80
81
91 };
92}
93
94#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< std::vector< int > > trknumAcc
a vector column accessor
VectorExampleTool(const std::string &name)
virtual StatusCode initialize() override
Dummy implementation of the initialisation function.
virtual void callEvents(EventContextRange events) const override
ParticleDecorator< char > selectionDec
the selection decorator for the particles
ParticleAccessor< std::vector< RetypeColumn< double, float > > > trksumptAcc
a vector accessor involving retyping
ParticleAccessor< ObjectColumn > particlesHandle
the object accessor for the particles
ParticleAccessor< float > ptAcc
the pt accessor for the particle container
Gaudi::Property< float > m_ptCut
the pt cut to apply
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