The tool class that merges the selection flags from the different workings points into a single one. More...
#include <AnaToolSelectCombine.h>
Classes | |
struct | Data |
the data for the different selection steps | |
Public Member Functions | |
AnaToolSelectCombine (const std::string &name) | |
standard constructor | |
AnaToolSelectCombine (const std::string &name, const std::vector< std::string > &workingPoints) | |
initializing constructor | |
virtual StatusCode | setObjectType (ObjectType type, const std::string &workingPoint) override |
virtual AnalysisStep | step () const override |
virtual unsigned | inputTypes () const override |
virtual unsigned | outputTypes () const override |
virtual StatusCode | useConfiguration (const InternalConfiguration &configuration) override |
virtual StatusCode | execute (IEventObjects &objects) override |
Public Attributes | |
std::vector< std::string > | m_workingPoints |
the list of working points to combine |
The tool class that merges the selection flags from the different workings points into a single one.
ana::AnaToolSelectCombine::AnaToolSelectCombine | ( | const std::string & | name | ) |
standard constructor
ana::AnaToolSelectCombine::AnaToolSelectCombine | ( | const std::string & | name, | |
const std::vector< std::string > & | workingPoints | |||
) |
initializing constructor
StatusCode ana::AnaToolSelectCombine::execute | ( | IEventObjects & | objects | ) | [override, virtual] |
apply this analysis tool to the objects
objects | the objects to apply this too |
Implements ana::IAnaTool.
unsigned ana::AnaToolSelectCombine::inputTypes | ( | ) | const [override, virtual] |
unsigned ana::AnaToolSelectCombine::outputTypes | ( | ) | const [override, virtual] |
StatusCode ana::AnaToolSelectCombine::setObjectType | ( | ObjectType | type, | |
const std::string & | workingPoint | |||
) | [override, virtual] |
set the object type to work on this is called straight after the tool is created and before it is initialized. the primary reason for this function is to allow jet definitions to be used for either jets or fat jets.
type | the object type we work on | |
workingPoint | the name of the working point we are working on or the empty string if this is a sole working point or working points do not apply |
Implements ana::IAnaTool.
AnalysisStep ana::AnaToolSelectCombine::step | ( | ) | const [override, virtual] |
StatusCode ana::AnaToolSelectCombine::useConfiguration | ( | const InternalConfiguration & | configuration | ) | [override, virtual] |
extract whatever we need from the given configuration object
Reimplemented from ana::AnaTool.