LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
CPriorityAlgoBase.h
Go to the documentation of this file.
1 
14 #ifndef RECOTOOL_CPRIORITYALGOBASE_H
15 #define RECOTOOL_CPRIORITYALGOBASE_H
16 
19 
20 namespace cmtool {
21 
27  class CPriorityAlgoBase : public CMAlgoBase {
28 
29  public:
32 
34  virtual ~CPriorityAlgoBase() {}
35 
41  {
42  if (cluster.GetNHits()) return 1.;
43  return 0.1;
44  }
45  };
46 
47 }
48 
49 #endif
50  // end of doxygen group
virtual ~CPriorityAlgoBase()
Default destructor.
Cluster finding and building.
Class def header for a class CMAlgoBase.
virtual float Priority(const cluster::ClusterParamsAlg &cluster)
CPriorityAlgoBase()
Default constructor.