![]() |
Belle II Software development
|
Convenience template to create a filter operating on a specific set of variables. More...
#include <FilterOnVarSet.dcl.h>
Public Types | |
| using | Object = typename AVarSet::Object |
| Type of the object to be analysed. | |
| using | Interface |
| Mark this class as the basic interface. | |
Public Member Functions | |
| FilterOnVarSet () | |
| Constructor of the filter. | |
| ~FilterOnVarSet () | |
| Default destructor. | |
| void | initialize () override |
| No reassignment of variable set possible for now. | |
| bool | needsTruthInformation () override |
| Checks if any variables need Monte Carlo information. | |
| Weight | operator() (const Object &obj) override |
| Function extracting the variables of the object into the variable set. | |
| virtual Weight | operator() (const Object &obj) |
| Function to evaluate the object. | |
| Weight | operator() (const Object *obj) |
| Function to evaluate the object. | |
| virtual std::vector< float > | operator() (const std::vector< Object * > &objs) |
| Function to evaluate a vector of objects Base implementation applies the function to each object. | |
| std::unique_ptr< AVarSet > | releaseVarSet () && |
| Steal the set of variables form this filter - filter becomes dysfunctional afterwards. | |
| void | beginRun () override |
| Receive and dispatch signal for the beginning of a new run. | |
| void | beginEvent () override |
| Receive and dispatch signal for the start of a new event. | |
| void | endRun () override |
| Receive and dispatch signal for the end of the run. | |
| void | terminate () override |
| Receive and dispatch Signal for termination of the event processing. | |
Protected Member Functions | |
| AVarSet & | getVarSet () const |
| Getter for the set of variables. | |
| void | setVarSet (std::unique_ptr< AVarSet > varSet) |
| Setter for the set of variables. | |
| virtual void | exposeParameters (ModuleParamList *moduleParamList, const std::string &prefix) override |
| Forward prefixed parameters of this findlet to the module parameter list. | |
| void | addProcessingSignalListener (ProcessingSignalListener *psl) |
| Register a processing signal listener to be notified. | |
| int | getNProcessingSignalListener () |
| Get the number of currently registered listeners. | |
Private Types | |
| using | Super = OnVarSet<Filter<typename AVarSet::Object> > |
| Type of the super class. | |
| using | AVarSet |
| Type of the variable set usedi in this filter. | |
Private Attributes | |
| std::unique_ptr< AVarSet > | m_varSet |
| Instance of the variable set to be used in the filter. | |
| std::vector< ProcessingSignalListener * > | m_subordinaryProcessingSignalListeners |
| References to subordinary signal processing listener contained in this findlet. | |
| bool | m_initialized |
| Flag to keep track whether initialization happened before. | |
| bool | m_terminated |
| Flag to keep track whether termination happened before. | |
| std::string | m_initializedAs |
| Name of the type during initialisation. | |
Convenience template to create a filter operating on a specific set of variables.
Definition at line 91 of file FilterOnVarSet.dcl.h.
|
privateinherited |
Type of the variable set usedi in this filter.
Definition at line 39 of file FilterOnVarSet.dcl.h.
|
inherited |
Mark this class as the basic interface.
Definition at line 38 of file Filter.dcl.h.
| using Object = typename AVarSet::Object |
Type of the object to be analysed.
Definition at line 99 of file FilterOnVarSet.dcl.h.
|
private |
Type of the super class.
Definition at line 95 of file FilterOnVarSet.dcl.h.
| FilterOnVarSet | ( | ) |
Constructor of the filter.
Definition at line 100 of file FilterOnVarSet.icc.h.
|
protectedinherited |
Register a processing signal listener to be notified.
Definition at line 53 of file CompositeProcessingSignalListener.cc.
|
overrideinherited |
Receive and dispatch signal for the start of a new event.
Definition at line 36 of file CompositeProcessingSignalListener.cc.
|
overrideinherited |
Receive and dispatch signal for the beginning of a new run.
Definition at line 33 of file CompositeProcessingSignalListener.cc.
|
overrideinherited |
Receive and dispatch signal for the end of the run.
Definition at line 39 of file CompositeProcessingSignalListener.cc.
|
overrideprotectedvirtualinherited |
Forward prefixed parameters of this findlet to the module parameter list.
Reimplemented from CompositeProcessingSignalListener.
Reimplemented in MVA< Filter< AVarSet::Object > >, and Recording< Filter< AVarSet::Object > >.
Definition at line 70 of file FilterOnVarSet.icc.h.
|
protectedinherited |
Get the number of currently registered listeners.
Definition at line 56 of file CompositeProcessingSignalListener.cc.
|
protectedinherited |
Getter for the set of variables.
Definition at line 64 of file FilterOnVarSet.icc.h.
|
overridevirtualinherited |
No reassignment of variable set possible for now.
Reimplemented from CompositeProcessingSignalListener.
Reimplemented in Recording< Filter< AVarSet::Object > >.
Definition at line 49 of file FilterOnVarSet.icc.h.
|
overridevirtualinherited |
Checks if any variables need Monte Carlo information.
Reimplemented from Filter< AVarSet::Object >.
Definition at line 52 of file FilterOnVarSet.icc.h.
|
virtualinherited |
Function to evaluate the object.
Base implementation accepts all objects.
| obj | The object to be accepted or rejected. |
Definition at line 59 of file Filter.icc.h.
|
inherited |
Function to evaluate the object.
Base implementation accepts all objects, except nullptr.
| obj | The object to be accepted or rejected. |
Definition at line 69 of file Filter.icc.h.
|
virtualinherited |
Function to evaluate a vector of objects Base implementation applies the function to each object.
Can be optimized for MVA filters
| objs | A vector of pointers to objects |
Definition at line 77 of file Filter.icc.h.
|
overrideinherited |
Function extracting the variables of the object into the variable set.
Definition at line 56 of file FilterOnVarSet.icc.h.
|
inherited |
Steal the set of variables form this filter - filter becomes dysfunctional afterwards.
Definition at line 60 of file FilterOnVarSet.icc.h.
|
protectedinherited |
Setter for the set of variables.
Definition at line 67 of file FilterOnVarSet.icc.h.
|
overrideinherited |
Receive and dispatch Signal for termination of the event processing.
Definition at line 42 of file CompositeProcessingSignalListener.cc.
|
privateinherited |
Flag to keep track whether initialization happened before.
Definition at line 52 of file ProcessingSignalListener.h.
|
privateinherited |
Name of the type during initialisation.
Definition at line 58 of file ProcessingSignalListener.h.
|
privateinherited |
References to subordinary signal processing listener contained in this findlet.
Definition at line 60 of file CompositeProcessingSignalListener.h.
|
privateinherited |
Flag to keep track whether termination happened before.
Definition at line 55 of file ProcessingSignalListener.h.
|
privateinherited |
Instance of the variable set to be used in the filter.
Definition at line 74 of file FilterOnVarSet.dcl.h.