Public Member Functions | Private Attributes | List of all members
cmtool::CBAlgoPolyShortestDist Class Reference

#include <CBAlgoPolyShortestDist.h>

Inheritance diagram for cmtool::CBAlgoPolyShortestDist:
cmtool::CBoolAlgoBase cmtool::CMAlgoBase

Public Member Functions

 CBAlgoPolyShortestDist ()
 Default constructor. More...
 
virtual ~CBAlgoPolyShortestDist ()
 Default destructor. More...
 
virtual void EventBegin (const std::vector< cluster::ClusterParamsAlg > &clusters)
 
virtual bool Bool (const ::cluster::ClusterParamsAlg &cluster1, const ::cluster::ClusterParamsAlg &cluster2)
 
virtual void Report ()
 
virtual void Reset ()
 Function to reset the algorithm instance ... maybe implemented via child class. More...
 
void SetMinNumHits (size_t nhits)
 
void SetMaxNumHits (int nhits)
 
void SetMinDistSquared (double dist)
 
void SetDebug (bool flag)
 
- Public Member Functions inherited from cmtool::CBoolAlgoBase
 CBoolAlgoBase ()
 Default constructor. More...
 
virtual ~CBoolAlgoBase ()
 Default destructor. More...
 
- Public Member Functions inherited from cmtool::CMAlgoBase
 CMAlgoBase ()
 
virtual ~CMAlgoBase ()=default
 
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...
 

Private Attributes

size_t _min_hits
 
size_t _max_hits
 
double _dist_sqrd_cut
 
bool _debug
 
double tmp_min_dist
 

Additional Inherited Members

- 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...
 

Detailed Description

User implementation for CBoolAlgoBase class doxygen documentation!

Definition at line 28 of file CBAlgoPolyShortestDist.h.

Constructor & Destructor Documentation

cmtool::CBAlgoPolyShortestDist::CBAlgoPolyShortestDist ( )

Default constructor.

Definition at line 8 of file CBAlgoPolyShortestDist.cxx.

8  : CBoolAlgoBase()
9  //-------------------------------------------------------
10  {
12  SetMinNumHits(0);
13  SetMaxNumHits(99999);
14  SetDebug(false);
15  }
CBoolAlgoBase()
Default constructor.
Definition: CBoolAlgoBase.h:32
virtual cmtool::CBAlgoPolyShortestDist::~CBAlgoPolyShortestDist ( )
inlinevirtual

Default destructor.

Definition at line 36 of file CBAlgoPolyShortestDist.h.

36 {};

Member Function Documentation

bool cmtool::CBAlgoPolyShortestDist::Bool ( const ::cluster::ClusterParamsAlg cluster1,
const ::cluster::ClusterParamsAlg cluster2 
)
virtual

Optional function: called at the end of event ... after the last merging iteration is over. 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. Optional function: called at the end of each iteration over all pairs of clusters. Core function: given the CPAN input, return whether a cluster should be merged or not.

Reimplemented from cmtool::CBoolAlgoBase.

Definition at line 54 of file CBAlgoPolyShortestDist.cxx.

57  {
58  if( (cluster1.GetHitVector().size() < _min_hits) ||
59  (cluster2.GetHitVector().size() < _min_hits) )
60  return false;
61 
62  if( (cluster1.GetHitVector().size() > _max_hits) ||
63  (cluster2.GetHitVector().size() > _max_hits) )
64  return false;
65 
66  //if either has < 3 sides do not merge!
67  if ( (cluster1.GetParams().PolyObject.Size() < 2) or
68  (cluster2.GetParams().PolyObject.Size() < 2) ){
69  return false;
70  }
71 
72  //loop over the points on the first polygon and calculate
73  //distance to each point on the second polygon
74  //if any two points are close enough to each other,
75  //merge the two clusters
76 
77  unsigned int npoints1 = cluster1.GetParams().PolyObject.Size();
78  unsigned int npoints2 = cluster2.GetParams().PolyObject.Size();
79  //loop over points on first polygon
80  for(unsigned int i = 0; i < npoints1; ++i){
81  float pt1w = cluster1.GetParams().PolyObject.Point(i).first;
82  float pt1t = cluster1.GetParams().PolyObject.Point(i).second;
83  //loop over points on second polygon
84  for(unsigned int j = 0; j < npoints2; ++j){
85  float pt2w = cluster2.GetParams().PolyObject.Point(j).first;
86  float pt2t = cluster2.GetParams().PolyObject.Point(j).second;
87  double distsqrd = pow(pt2w-pt1w,2)+pow(pt2t-pt1t,2);
88 
89  if(distsqrd < tmp_min_dist) tmp_min_dist = distsqrd;
90 
91  if(_debug){
92  std::cout<<"two polygon points dist2 is "<<distsqrd<<std::endl;
93  std::cout<<"minimum dist was "<<tmp_min_dist<<std::endl;
94  }
95  if(distsqrd<_dist_sqrd_cut)
96  return true;
97  }
98 
99  }
100 
101  return false;
102  }
constexpr T pow(T x)
Definition: pow.h:72
QTextStream & endl(QTextStream &s)
void cmtool::CBAlgoPolyShortestDist::EventBegin ( const std::vector< cluster::ClusterParamsAlg > &  clusters)
virtual

Optional function: called at the beginning of 1st iteration. This is called per event.

Reimplemented from cmtool::CMAlgoBase.

Definition at line 25 of file CBAlgoPolyShortestDist.cxx.

27  {
28  if(clusters.size())
29  tmp_min_dist = 99999;
30  }
void cmtool::CBAlgoPolyShortestDist::Report ( )
virtual

Optional function: called after each Merge() function call by CMergeManager IFF CMergeManager is run with verbosity level kPerMerging. Maybe useful for debugging.

Reimplemented from cmtool::CMAlgoBase.

Definition at line 105 of file CBAlgoPolyShortestDist.cxx.

107  {
108 
109  }
void cmtool::CBAlgoPolyShortestDist::Reset ( void  )
virtual

Function to reset the algorithm instance ... maybe implemented via child class.

Reimplemented from cmtool::CMAlgoBase.

Definition at line 18 of file CBAlgoPolyShortestDist.cxx.

20  {
21 
22  }
void cmtool::CBAlgoPolyShortestDist::SetDebug ( bool  flag)
inline

Definition at line 83 of file CBAlgoPolyShortestDist.h.

void cmtool::CBAlgoPolyShortestDist::SetMaxNumHits ( int  nhits)
inline

Definition at line 79 of file CBAlgoPolyShortestDist.h.

void cmtool::CBAlgoPolyShortestDist::SetMinDistSquared ( double  dist)
inline

Definition at line 81 of file CBAlgoPolyShortestDist.h.

81 { _dist_sqrd_cut = dist; }
constexpr double dist(const TReal *x, const TReal *y, const unsigned int dimension)
void cmtool::CBAlgoPolyShortestDist::SetMinNumHits ( size_t  nhits)
inline

Definition at line 77 of file CBAlgoPolyShortestDist.h.

Member Data Documentation

bool cmtool::CBAlgoPolyShortestDist::_debug
private

Definition at line 92 of file CBAlgoPolyShortestDist.h.

double cmtool::CBAlgoPolyShortestDist::_dist_sqrd_cut
private

Definition at line 90 of file CBAlgoPolyShortestDist.h.

size_t cmtool::CBAlgoPolyShortestDist::_max_hits
private

Definition at line 88 of file CBAlgoPolyShortestDist.h.

size_t cmtool::CBAlgoPolyShortestDist::_min_hits
private

Definition at line 88 of file CBAlgoPolyShortestDist.h.

double cmtool::CBAlgoPolyShortestDist::tmp_min_dist
private

Definition at line 94 of file CBAlgoPolyShortestDist.h.


The documentation for this class was generated from the following files: