#include <CPAlgoArray.h>
Public Types | |
enum | EvaluationMode_t { kPositiveAddition, kSimpleAddition, kMultiplication, kLastAlgo } |
Public Member Functions | |
CPAlgoArray () | |
Default constructor. More... | |
virtual | ~CPAlgoArray () |
Default destructor. More... | |
void | AddAlgo (CPriorityAlgoBase *algo) |
Setter to add a new algorithm. More... | |
void | SetMode (EvaluationMode_t mode) |
Setter for an evaluation. More... | |
virtual float | Priority (const ::cluster::ClusterParamsAlg &cluster) |
virtual void | Report () |
virtual void | Reset () |
Function to reset the algorithm instance, called together with manager's Reset() More... | |
virtual void | EventBegin (const std::vector< cluster::ClusterParamsAlg > &clusters) |
virtual void | EventEnd () |
virtual void | IterationBegin (const std::vector< cluster::ClusterParamsAlg > &clusters) |
virtual void | IterationEnd () |
Public Member Functions inherited from cmtool::CPriorityAlgoBase | |
CPriorityAlgoBase () | |
Default constructor. More... | |
virtual | ~CPriorityAlgoBase () |
Default destructor. More... | |
virtual float | Priority (const cluster::ClusterParamsAlg &cluster) |
Public Member Functions inherited from cmtool::CMAlgoBase | |
CMAlgoBase () | |
virtual | ~CMAlgoBase ()=default |
void | SetAnaFile (TFile *fout) |
Setter function for an output plot TFile pointer. More... | |
virtual void | SetVerbose (bool doit=true) |
Setter function for verbosity. More... | |
Protected Attributes | |
std::vector< CPriorityAlgoBase * > | _algo_array |
vector of algorithms More... | |
EvaluationMode_t | _mode |
evaluation mode More... | |
Protected Attributes inherited from cmtool::CMAlgoBase | |
TFile * | _fout |
TFile pointer to an output file. More... | |
bool | _verbose |
Boolean to choose verbose mode. Turned on if CMergeManager/CMatchManager's verbosity level is >= kPerMerging. More... | |
User implementation for CPriorityAlgoBase class This is an array of priority algorithms. It has multiple modes to compute combined Priority() return value.
Definition at line 26 of file CPAlgoArray.h.
Enumerator | |
---|---|
kPositiveAddition |
DEFAULT: simply add Priority() return values except negative return. If there is a negative return value, it returns that and stop processing the rest of algorithms |
kSimpleAddition |
Simply add Priority() return values from all algorithms. Note some algorithms are allowed to return negative values. |
kMultiplication |
Multiply Priority() return values from all algorithms except negative return. If there is a negative return, it returns that and stop processing the rest of algorithms |
kLastAlgo |
If all algorithms return positive values, return the last algorithm's Priority() return value. If any algorithm returns negative, it returns that and stop processing the rest of algorithms |
Definition at line 30 of file CPAlgoArray.h.
cmtool::CPAlgoArray::CPAlgoArray | ( | ) |
Default constructor.
Definition at line 6 of file CPAlgoArray.cxx.
|
inlinevirtual |
|
inline |
Setter to add a new algorithm.
Definition at line 63 of file CPAlgoArray.h.
|
inlinevirtual |
Optional function: called at the beginning of 1st iteration. This is called per event.
Reimplemented from cmtool::CMAlgoBase.
Definition at line 86 of file CPAlgoArray.h.
|
inlinevirtual |
Optional function: called at the end of event ... after the last merging iteration is over.
Reimplemented from cmtool::CMAlgoBase.
Definition at line 92 of file CPAlgoArray.h.
|
inlinevirtual |
Optional function: called at the beggining of each iterative loop. This provides all clusters' information in case the algorithm need them. Note this is called per iteration which may be more than once per event.
Reimplemented from cmtool::CMAlgoBase.
Definition at line 100 of file CPAlgoArray.h.
|
inlinevirtual |
Optional function: called at the end of each iterative loop.
Reimplemented from cmtool::CMAlgoBase.
Definition at line 106 of file CPAlgoArray.h.
|
virtual |
Core function: given a set of CPANs, return a float which indicates the compatibility the cluster combination.
Definition at line 14 of file CPAlgoArray.cxx.
|
inlinevirtual |
Optional function: called after each iterative approach if a manager class is run with verbosity level <= kPerIteration. Maybe useful for debugging.
Reimplemented from cmtool::CMAlgoBase.
Definition at line 78 of file CPAlgoArray.h.
|
inlinevirtual |
Function to reset the algorithm instance, called together with manager's Reset()
Reimplemented from cmtool::CMAlgoBase.
Definition at line 81 of file CPAlgoArray.h.
|
inline |
|
protected |
vector of algorithms
Definition at line 112 of file CPAlgoArray.h.
|
protected |
evaluation mode
Definition at line 115 of file CPAlgoArray.h.