LArSoft
v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
|
#include "CPAlgoIgnoreTracks.h"
Public Member Functions | |
CPAlgoIgnoreTracks () | |
Default constructor. More... | |
virtual | ~CPAlgoIgnoreTracks () |
Default destructor. 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... | |
bool | IsTrack (const ::cluster::ClusterParamsAlg &cluster) |
Function to check if cluster is a track. More... | |
void | SetMinHits (size_t BAKA) |
Setter for track-like parameters. More... | |
void | SetMinModHitDens (Double_t AHO) |
void | SetMinMHitWires (Double_t BOKE) |
void | SetMinPrincipal (Double_t HEKOKI) |
virtual float | Priority (const cluster::ClusterParamsAlg &cluster) |
virtual void | EventBegin (const std::vector< cluster::ClusterParamsAlg > &) |
virtual void | EventEnd () |
virtual void | IterationBegin (const std::vector< cluster::ClusterParamsAlg > &) |
virtual void | IterationEnd () |
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 | |
size_t | _min_hits |
Double_t | _min_mod_hit_dens |
Double_t | _min_multihit_wires |
Double_t | _min_principal |
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 doxygen documentation!
Definition at line 27 of file CPAlgoIgnoreTracks.h.
cmtool::CPAlgoIgnoreTracks::CPAlgoIgnoreTracks | ( | ) |
Default constructor.
Definition at line 8 of file CPAlgoIgnoreTracks.cxx.
References SetMinHits(), SetMinMHitWires(), SetMinModHitDens(), and SetMinPrincipal().
|
inlinevirtual |
Default destructor.
Definition at line 34 of file CPAlgoIgnoreTracks.h.
References IsTrack(), Priority(), Report(), and Reset().
|
inlinevirtualinherited |
Optional function: called at the beginning of 1st iteration. This is called per event.
Reimplemented in cmtool::CPAlgoArray, cmtool::CBAlgoArray, and cmtool::CBAlgoPolyShortestDist.
Definition at line 45 of file CMAlgoBase.h.
Referenced by cmtool::CMergeManager::EventBegin().
|
inlinevirtualinherited |
Optional function: called at the end of event ... after the last merging iteration is over.
Reimplemented in cmtool::CPAlgoArray, and cmtool::CBAlgoArray.
Definition at line 50 of file CMAlgoBase.h.
Referenced by cmtool::CMatchManager::EventEnd(), and cmtool::CMergeManager::EventEnd().
bool cmtool::CPAlgoIgnoreTracks::IsTrack | ( | const ::cluster::ClusterParamsAlg & | cluster | ) |
Function to check if cluster is a track.
Optional function: called at the beginning of 1st iteration. This is called per event. Optional function: called at the end of event ... after the last merging iteration is over. 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. Optional function: called at the end of each iterative loop.
Definition at line 43 of file CPAlgoIgnoreTracks.cxx.
References _min_mod_hit_dens, _min_multihit_wires, and _min_principal.
Referenced by Priority(), and ~CPAlgoIgnoreTracks().
|
inlinevirtualinherited |
Optional function: called at the beggining of each iteration over all pairs of clusters. 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 in cmtool::CPAlgoArray, and cmtool::CBAlgoArray.
Definition at line 57 of file CMAlgoBase.h.
Referenced by cmtool::CMatchManager::EventBegin(), cmtool::CMatchManager::IterationBegin(), and cmtool::CMergeManager::IterationBegin().
|
inlinevirtualinherited |
Optional function: called at the end of each iteration over all pairs of clusters.
Reimplemented in cmtool::CPAlgoArray, and cmtool::CBAlgoArray.
Definition at line 62 of file CMAlgoBase.h.
Referenced by cmtool::CMatchManager::IterationEnd(), and cmtool::CMergeManager::IterationEnd().
|
inlinevirtualinherited |
Core function: given the CPAN input, return whether a cluster should be merged or not.
Definition at line 40 of file CPriorityAlgoBase.h.
References cluster::ClusterParamsAlg::GetNHits().
Referenced by cmtool::CMManagerBase::ComputePriority().
|
virtual |
Core function: given the CPAN input, return a float which indicates the user-defined priority for analysis.
Definition at line 25 of file CPAlgoIgnoreTracks.cxx.
References IsTrack().
Referenced by ~CPAlgoIgnoreTracks().
|
virtual |
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 39 of file CPAlgoIgnoreTracks.cxx.
Referenced by ~CPAlgoIgnoreTracks().
|
virtual |
Function to reset the algorithm instance, called together with manager's Reset()
Reimplemented from cmtool::CMAlgoBase.
Definition at line 20 of file CPAlgoIgnoreTracks.cxx.
Referenced by ~CPAlgoIgnoreTracks().
|
inlineinherited |
Setter function for an output plot TFile pointer.
Definition at line 72 of file CMAlgoBase.h.
References cmtool::CMAlgoBase::_fout.
Referenced by cmtool::CMergeManager::EventBegin().
|
inline |
Setter for track-like parameters.
Definition at line 83 of file CPAlgoIgnoreTracks.h.
References _min_hits.
Referenced by CPAlgoIgnoreTracks().
|
inline |
Definition at line 85 of file CPAlgoIgnoreTracks.h.
References _min_multihit_wires.
Referenced by CPAlgoIgnoreTracks().
|
inline |
Definition at line 84 of file CPAlgoIgnoreTracks.h.
References _min_mod_hit_dens.
Referenced by CPAlgoIgnoreTracks().
|
inline |
Definition at line 86 of file CPAlgoIgnoreTracks.h.
References _min_principal.
Referenced by CPAlgoIgnoreTracks().
|
inlinevirtualinherited |
Setter function for verbosity.
Reimplemented in cmtool::CBAlgoArray, and cmtool::CFAlgoTimeOverlap.
Definition at line 75 of file CMAlgoBase.h.
References cmtool::CMAlgoBase::_verbose.
Referenced by cmtool::CMatchManager::EventBegin(), and cmtool::CMergeManager::EventBegin().
|
protectedinherited |
TFile pointer to an output file.
Definition at line 79 of file CMAlgoBase.h.
Referenced by cmtool::CMAlgoBase::CMAlgoBase(), and cmtool::CMAlgoBase::SetAnaFile().
|
protected |
Definition at line 89 of file CPAlgoIgnoreTracks.h.
Referenced by SetMinHits().
|
protected |
Definition at line 90 of file CPAlgoIgnoreTracks.h.
Referenced by IsTrack(), and SetMinModHitDens().
|
protected |
Definition at line 91 of file CPAlgoIgnoreTracks.h.
Referenced by IsTrack(), and SetMinMHitWires().
|
protected |
Definition at line 92 of file CPAlgoIgnoreTracks.h.
Referenced by IsTrack(), and SetMinPrincipal().
|
protectedinherited |
Boolean to choose verbose mode. Turned on if CMergeManager/CMatchManager's verbosity level is >= kPerMerging.
Definition at line 82 of file CMAlgoBase.h.
Referenced by cmtool::CBAlgoAngleAlign::Bool(), cmtool::CBAlgoAngleCompat::Bool(), cmtool::CBAlgoPolyOverlap::Bool(), cmtool::CBAlgoOutOfConeSeparate::Bool(), cmtool::CBAlgoAngleSeparate::Bool(), cmtool::CBAlgoCenterOfMassSmall::Bool(), cmtool::CBAlgoCenterOfMass::Bool(), cmtool::CBAlgoStartNearEnd::Bool(), cmtool::CBAlgoProhibitAllTracks::Bool(), cmtool::CMAlgoBase::CMAlgoBase(), cmtool::CFAlgoZOverlap::Float(), cmtool::CFAlgoQRatio::Float(), cmtool::CMAlgoBase::SetVerbose(), cmtool::CBAlgoCenterOfMassSmall::ShortestDistanceSquared(), and cmtool::CBAlgoCenterOfMass::ShortestDistanceSquared().