Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
ConfigurableColumnExampleTool.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_CONFIGURABLE_COLUMN_EXAMPLE_TOOL_H
9 #define COLUMNAR_EXAMPLE_TOOLS_CONFIGURABLE_COLUMN_EXAMPLE_TOOL_H
10 
11 #include <AsgTools/AsgTool.h>
17 
18 namespace columnar
19 {
25 
27  : public asg::AsgTool,
28  public ColumnarTool<>
29  {
30  public:
31 
32  ConfigurableColumnExampleTool (const std::string& name);
33 
34  virtual StatusCode initialize () override;
35 
36  virtual void callEvents (EventContextRange events) const override;
37 
38 
40  Gaudi::Property<std::string> m_ptVar {this, "ptVar", "pt", "pt variable"};
41 
43  Gaudi::Property<float> m_ptCut {this, "ptCut", 10e3, "pt cut (in MeV)"};
44 
45 
52 
53 
60 
61 
70  ParticleDecorator<char> selectionDec {*this, "selection"};
71  };
72 }
73 
74 #endif
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
asg::AsgTool
Base class for the dual-use tool implementation classes.
Definition: AsgTool.h:47
PropertyWrapper.h
columnar::ConfigurableColumnExampleTool::ptAcc
ParticleAccessor< float > ptAcc
the pt accessor for the particle container
Definition: ConfigurableColumnExampleTool.h:59
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
CheckAppliedSFs.e3
e3
Definition: CheckAppliedSFs.py:264
columnar::ConfigurableColumnExampleTool
example of a columnar tool with optional columns
Definition: ConfigurableColumnExampleTool.h:29
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ColumnAccessor.h
ObjectColumn.h
ColumnarTool.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
columnar::final
CM final
Definition: ColumnAccessor.h:106
columnar::ConfigurableColumnExampleTool::selectionDec
ParticleDecorator< char > selectionDec
the selection decorator for the particles
Definition: ConfigurableColumnExampleTool.h:70
columnar
Definition: ClusterDef.h:16
columnar::ColumnarTool
the base class for all columnar components
Definition: ColumnAccessorDataArray.h:17
columnar::ConfigurableColumnExampleTool::m_ptVar
Gaudi::Property< std::string > m_ptVar
the pt variable to use
Definition: ConfigurableColumnExampleTool.h:40
columnar::AccessorTemplate
the raw column accessor template class
Definition: ColumnAccessor.h:81
AsgTool.h
ParticleDef.h
columnar::ConfigurableColumnExampleTool::ConfigurableColumnExampleTool
ConfigurableColumnExampleTool(const std::string &name)
Definition: ConfigurableColumnExampleTool.cxx:20