LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
CPriorityAlgoBase.h
Go to the documentation of this file.
1 
14 #ifndef RECOTOOL_CPRIORITYALGOBASE_H
15 #define RECOTOOL_CPRIORITYALGOBASE_H
16 
17 #include "CMAlgoBase.h"
18 
19 namespace cmtool {
20 
26  class CPriorityAlgoBase : public CMAlgoBase {
27 
28  public:
29 
32 
34  virtual ~CPriorityAlgoBase(){}
35 
41  {
42  if(cluster.GetNHits()) return 1.;
43  return 0.1;
44  }
45 
46  };
47 
48 }
49 
50 #endif
51  // end of doxygen group
52 
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.