The base class for tools implementing basic object selection. More...
#include <AnaToolSelect.h>
Public Types | |
typedef XAODContainer | ContainerType |
the container type we are operating on | |
typedef XAODContainer::base_value_type | XAODObject |
the object type we are operating on | |
Public Member Functions | |
virtual StatusCode | setObjectType (ObjectType type, const std::string &workingPoint) override |
AnaToolSelect (const std::string &name) | |
standard constructor | |
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 |
virtual StatusCode | selectObject (XAODObject &object)=0 |
run the selection on this object | |
void | registerCut (SelectionStep step, const std::string &name, SelectionCut &cut) |
add a cut with the given name and selection step |
The base class for tools implementing basic object selection.
ana::AnaToolSelect< XAODContainer >::AnaToolSelect | ( | const std::string & | name | ) | [inline] |
standard constructor
StatusCode ana::AnaToolSelect< XAODContainer >::execute | ( | IEventObjects & | objects | ) | [inline, override, virtual] |
apply this analysis tool to the objects
objects | the objects to apply this too |
Implements ana::IAnaTool.
unsigned ana::AnaToolSelect< XAODContainer >::inputTypes | ( | ) | const [inline, override, virtual] |
unsigned ana::AnaToolSelect< XAODContainer >::outputTypes | ( | ) | const [inline, override, virtual] |
void ana::AnaToolSelect< XAODContainer >::registerCut | ( | SelectionStep | step, | |
const std::string & | name, | |||
SelectionCut & | cut | |||
) | [inline] |
add a cut with the given name and selection step
virtual StatusCode ana::AnaToolSelect< XAODContainer >::selectObject | ( | XAODObject & | object | ) | [pure virtual] |
run the selection on this object
object | the object to evaluate | |
[out] | accept | whether the object passes object selection |
StatusCode ana::AnaToolSelect< XAODContainer >::setObjectType | ( | ObjectType | type, | |
const std::string & | workingPoint | |||
) | [inline, 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::AnaToolSelect< XAODContainer >::step | ( | ) | const [inline, override, virtual] |
StatusCode ana::AnaToolSelect< XAODContainer >::useConfiguration | ( | const InternalConfiguration & | configuration | ) | [inline, override, virtual] |
extract whatever we need from the given configuration object
Reimplemented from ana::AnaTool.