LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
cmtool::CBAlgoOutOfConeSeparate Class Reference

#include "CBAlgoOutOfConeSeparate.h"

Inheritance diagram for cmtool::CBAlgoOutOfConeSeparate:
cmtool::CBoolAlgoBase cmtool::CMAlgoBase

Public Member Functions

 CBAlgoOutOfConeSeparate ()
 Default constructor. More...
 
virtual ~CBAlgoOutOfConeSeparate ()
 Default destructor. More...
 
virtual bool Bool (const ::cluster::ClusterParamsAlg &cluster1, const ::cluster::ClusterParamsAlg &cluster2)
 
void SetDebug (bool on)
 Set Debug Mode on or off. More...
 
void SetMaxAngleSep (float angle)
 Set Max Angle Separation for separation. More...
 
void SetMaxAngleFar (float angle)
 Set Max Angle Separation for separation for far away clusters. More...
 
void SetStartAngleFalloff (float d)
 Set Distance at which cone-acceptance angle starts falling off as 1/distance. Value should be distance^2 in cm^2. More...
 
void SetMinLength (float len)
 Set Minimum length for "big" cluster. More...
 
void SetMinHits (size_t n)
 SetMinimum number of hits for small cluster. More...
 
virtual void Reset ()
 Function to reset the algorithm instance ... maybe implemented via child class. More...
 
virtual void Report ()
 Function to report what's going on per merging. 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 ()
 
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

bool _debug
 
float _MaxAngle
 
float _MaxAngleFar
 
float _MinLen
 
float _FallOff
 
size_t _minHits
 
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

Definition at line 27 of file CBAlgoOutOfConeSeparate.h.

Constructor & Destructor Documentation

cmtool::CBAlgoOutOfConeSeparate::CBAlgoOutOfConeSeparate ( )

Default constructor.

Definition at line 9 of file CBAlgoOutOfConeSeparate.cxx.

References SetDebug(), SetMaxAngleSep(), SetMinHits(), SetMinLength(), and SetStartAngleFalloff().

9  : CBoolAlgoBase()
10  //----------------------------------------
11  {
12 
13  SetDebug(false);
14  SetMaxAngleSep(20.);
15  SetMinLength(15.);
16  SetMinHits(20);
17  SetStartAngleFalloff(2800); // in cm^2
18 
19  }
void SetMinLength(float len)
Set Minimum length for "big" cluster.
void SetStartAngleFalloff(float d)
Set Distance at which cone-acceptance angle starts falling off as 1/distance. Value should be distanc...
void SetDebug(bool on)
Set Debug Mode on or off.
void SetMaxAngleSep(float angle)
Set Max Angle Separation for separation.
CBoolAlgoBase()
Default constructor.
Definition: CBoolAlgoBase.h:32
void SetMinHits(size_t n)
SetMinimum number of hits for small cluster.
virtual cmtool::CBAlgoOutOfConeSeparate::~CBAlgoOutOfConeSeparate ( )
inlinevirtual

Default destructor.

Definition at line 35 of file CBAlgoOutOfConeSeparate.h.

References Bool().

35 {};

Member Function Documentation

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

Core function: given the ClusterParamsAlg input, return whether a cluster should be merged or not.

Reimplemented from cmtool::CBoolAlgoBase.

Definition at line 22 of file CBAlgoOutOfConeSeparate.cxx.

References _debug, _FallOff, _MaxAngle, _MaxAngleFar, _minHits, _MinLen, cmtool::CMAlgoBase::_verbose, and SetMaxAngleFar().

Referenced by ~CBAlgoOutOfConeSeparate().

25  {
26 
27  double angle1 = cluster1.GetParams().angle_2d;
28  double angle2 = cluster2.GetParams().angle_2d;
29 
30  double w_start1 = cluster1.GetParams().start_point.w;
31  double t_start1 = cluster1.GetParams().start_point.t;
32  double w_start2 = cluster2.GetParams().start_point.w;
33  double t_start2 = cluster2.GetParams().start_point.t;
34 
35  double len1 = cluster1.GetParams().length;
36  double len2 = cluster2.GetParams().length;
37 
38  size_t hits1 = cluster1.GetHitVector().size();
39  size_t hits2 = cluster2.GetHitVector().size();
40 
41  double startseparation = (w_start2-w_start1)*(w_start2-w_start1) + (t_start2-t_start1)*(t_start2-t_start1);
42  //convert sepration to be instead of just angle -> angle/distance^n (n=1 for now)
43  SetMaxAngleFar(_MaxAngle*(_FallOff/startseparation)); //distance^2 of 400 cm^2 taken as "standard"
44  if ( _MaxAngleFar > 90. )
45  _MaxAngleFar = 90.;
46 
47  //if either cluster has less than _minHits don't even try...
48  if ( (hits1 < _minHits) or (hits2 < _minHits)
49  or (angle1 < -360) or (angle2 < -360) )
50  return false;
51 
52  if (_debug){
53  std::cout << "Cluster 1:" << std::endl;
54  std::cout << "\tStart: ( " << w_start1 << ", " << t_start1 << " )" << std::endl;
55  std::cout << "\tAngle: " << angle1 << std::endl;
56  std::cout << "\tLength: " << len1 << std::endl;
57  std::cout << "\tN Hits: " << hits1 << std::endl;
58 
59  std::cout << "Cluster 2:" << std::endl;
60  std::cout << "\tStart: ( " << w_start2 << ", " << t_start2 << " )" << std::endl;
61  std::cout << "\tAngle: " << angle2 << std::endl;
62  std::cout << "\tLength: " << len2 << std::endl;
63  std::cout << "\tN Hits: " << hits2 << std::endl;
64 
65  std::cout << "Start Point Separation: " << startseparation << std::endl;
66  }
67 
68  //cluster 1 needs to be long enough (i.e. good) and cluster 2 must have minimum number of hits
69  double angle;
70  double separation;
71 
72  if ( startseparation == 0 ) //do not prohibit merging if start point identical
73  return false;
74 
75  //first calculate angle of line in 2D plane connectng the two start points
76  if ( (t_start2-t_start1) == 0 )
77  angle = 0.;
78  else {
79  double slope = (t_start2-t_start1)/(w_start2-w_start1);
80  angle = atan(slope)*180./3.14;
81  }
82 
83  separation = abs(angle-angle1);
84 
85  if (_debug){
86  std::cout << "Angle S1--S2: " << angle << std::endl;
87  std::cout << "Angle1--S2: " << separation << std::endl;
88  }
89  if ( ( ( ( (separation > _MaxAngle) and (separation < 180-_MaxAngle) ) or
90  ( (separation > 180+_MaxAngle) and (separation< 360-_MaxAngle) ) )
91  or ( ( (separation > _MaxAngleFar) and (separation < 180-_MaxAngleFar) ) or
92  ( (separation > 180+_MaxAngleFar) and (separation< 360-_MaxAngleFar) ) ) )
93  and (hits2 > _minHits)
94  and (len1 > _MinLen) ){
95  if (_verbose) { std::cout << "Separate! cluster 1 BIG" << std::endl << std::endl; }
96  return true;
97  }
98 
99  //now change direction of angle so that it points from cluster 2 (big) to cluster 1 (small)
100  angle += 180.;
101  angle = (int)(angle) % 360;
102 
103  separation = abs(angle-angle2);
104  //separation *= (400./startseparation); //distance^2 of 400 cm^2 taken as "standard"
105  if (_debug){
106  std::cout << "Angle S2--S1: " << angle << std::endl;
107  std::cout << "Angle2--S1: " << separation << std::endl;
108  }
109  if ( ( ( ( (separation > _MaxAngle) and (separation < 180-_MaxAngle) ) or
110  ( (separation > 180+_MaxAngle) and (separation< 360-_MaxAngle) ) )
111  or ( ( (separation > _MaxAngleFar) and (separation < 180-_MaxAngleFar) ) or
112  ( (separation > 180+_MaxAngleFar) and (separation< 360-_MaxAngleFar) ) ) )
113  and (hits1 > _minHits)
114  and (len2 > _MinLen) ){
115  if (_verbose) { std::cout << "Separate! cluster 2 BIG" << std::endl << std::endl; }
116  return true;
117  }
118 
119  return false;
120  }
const cluster_params & GetParams() const
double t
Definition: PxUtils.h:11
const std::vector< util::PxHit > & GetHitVector() const
util::PxPoint start_point
start point
Definition: ClusterParams.h:24
double angle_2d
Angle of axis in wire/hit view.
Definition: ClusterParams.h:40
double w
Definition: PxUtils.h:10
void SetMaxAngleFar(float angle)
Set Max Angle Separation for separation for far away clusters.
bool _verbose
Boolean to choose verbose mode. Turned on if CMergeManager/CMatchManager&#39;s verbosity level is >= kPer...
Definition: CMAlgoBase.h:88
virtual void cmtool::CMAlgoBase::EventBegin ( const std::vector< cluster::ClusterParamsAlg > &  clusters)
inlinevirtualinherited

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

Reimplemented in cmtool::CFAlgoArray, cmtool::CPAlgoArray, cmtool::CBAlgoArray, and cmtool::CBAlgoPolyShortestDist.

Definition at line 45 of file CMAlgoBase.h.

Referenced by cmtool::CMergeManager::EventBegin().

46  { if(clusters.size()) return; }
virtual void cmtool::CMAlgoBase::EventEnd ( )
inlinevirtualinherited

Optional function: called at the end of event ... after the last merging iteration is over.

Reimplemented in cmtool::CFAlgoArray, cmtool::CPAlgoArray, and cmtool::CBAlgoArray.

Definition at line 51 of file CMAlgoBase.h.

Referenced by cmtool::CMatchManager::EventEnd(), and cmtool::CMergeManager::EventEnd().

52  {return;}
virtual void cmtool::CMAlgoBase::IterationBegin ( const std::vector< cluster::ClusterParamsAlg > &  clusters)
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::CFAlgoArray, cmtool::CPAlgoArray, and cmtool::CBAlgoArray.

Definition at line 59 of file CMAlgoBase.h.

Referenced by cmtool::CMatchManager::EventBegin(), cmtool::CMatchManager::IterationBegin(), and cmtool::CMergeManager::IterationBegin().

60  { if(clusters.size()) return;}
virtual void cmtool::CMAlgoBase::IterationEnd ( )
inlinevirtualinherited

Optional function: called at the end of each iteration over all pairs of clusters.

Reimplemented in cmtool::CFAlgoArray, cmtool::CPAlgoArray, and cmtool::CBAlgoArray.

Definition at line 65 of file CMAlgoBase.h.

Referenced by cmtool::CMatchManager::IterationEnd(), and cmtool::CMergeManager::IterationEnd().

66  {return; }
virtual void cmtool::CBAlgoOutOfConeSeparate::Report ( )
inlinevirtual

Function to report what's going on per merging.

Reimplemented from cmtool::CMAlgoBase.

Definition at line 66 of file CBAlgoOutOfConeSeparate.h.

66 {}
virtual void cmtool::CBAlgoOutOfConeSeparate::Reset ( )
inlinevirtual

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

Reimplemented from cmtool::CMAlgoBase.

Definition at line 63 of file CBAlgoOutOfConeSeparate.h.

63 {}
void cmtool::CMAlgoBase::SetAnaFile ( TFile *  fout)
inlineinherited

Setter function for an output plot TFile pointer.

Definition at line 77 of file CMAlgoBase.h.

References cmtool::CMAlgoBase::_fout.

Referenced by cmtool::CMergeManager::EventBegin().

77 { _fout = fout; }
TFile * _fout
TFile pointer to an output file.
Definition: CMAlgoBase.h:85
void cmtool::CBAlgoOutOfConeSeparate::SetDebug ( bool  on)
inline

Set Debug Mode on or off.

Definition at line 45 of file CBAlgoOutOfConeSeparate.h.

References _debug.

Referenced by CBAlgoOutOfConeSeparate().

void cmtool::CBAlgoOutOfConeSeparate::SetMaxAngleFar ( float  angle)
inline

Set Max Angle Separation for separation for far away clusters.

Definition at line 51 of file CBAlgoOutOfConeSeparate.h.

References _MaxAngleFar.

Referenced by Bool().

void cmtool::CBAlgoOutOfConeSeparate::SetMaxAngleSep ( float  angle)
inline

Set Max Angle Separation for separation.

Definition at line 48 of file CBAlgoOutOfConeSeparate.h.

References _MaxAngle.

Referenced by CBAlgoOutOfConeSeparate().

void cmtool::CBAlgoOutOfConeSeparate::SetMinHits ( size_t  n)
inline

SetMinimum number of hits for small cluster.

Definition at line 60 of file CBAlgoOutOfConeSeparate.h.

References _minHits, and n.

Referenced by CBAlgoOutOfConeSeparate().

void cmtool::CBAlgoOutOfConeSeparate::SetMinLength ( float  len)
inline

Set Minimum length for "big" cluster.

Definition at line 57 of file CBAlgoOutOfConeSeparate.h.

References _MinLen.

Referenced by CBAlgoOutOfConeSeparate().

void cmtool::CBAlgoOutOfConeSeparate::SetStartAngleFalloff ( float  d)
inline

Set Distance at which cone-acceptance angle starts falling off as 1/distance. Value should be distance^2 in cm^2.

Definition at line 54 of file CBAlgoOutOfConeSeparate.h.

References _FallOff, and d.

Referenced by CBAlgoOutOfConeSeparate().

54 { _FallOff = d; }
Float_t d
Definition: plot.C:237
virtual void cmtool::CMAlgoBase::SetVerbose ( bool  doit = true)
inlinevirtualinherited

Member Data Documentation

bool cmtool::CBAlgoOutOfConeSeparate::_debug
protected

Definition at line 70 of file CBAlgoOutOfConeSeparate.h.

Referenced by Bool(), and SetDebug().

float cmtool::CBAlgoOutOfConeSeparate::_FallOff
protected

Definition at line 74 of file CBAlgoOutOfConeSeparate.h.

Referenced by Bool(), and SetStartAngleFalloff().

TFile* cmtool::CMAlgoBase::_fout
protectedinherited

TFile pointer to an output file.

Definition at line 85 of file CMAlgoBase.h.

Referenced by cmtool::CMAlgoBase::CMAlgoBase(), and cmtool::CMAlgoBase::SetAnaFile().

float cmtool::CBAlgoOutOfConeSeparate::_MaxAngle
protected

Definition at line 71 of file CBAlgoOutOfConeSeparate.h.

Referenced by Bool(), and SetMaxAngleSep().

float cmtool::CBAlgoOutOfConeSeparate::_MaxAngleFar
protected

Definition at line 72 of file CBAlgoOutOfConeSeparate.h.

Referenced by Bool(), and SetMaxAngleFar().

size_t cmtool::CBAlgoOutOfConeSeparate::_minHits
protected

Definition at line 75 of file CBAlgoOutOfConeSeparate.h.

Referenced by Bool(), and SetMinHits().

float cmtool::CBAlgoOutOfConeSeparate::_MinLen
protected

Definition at line 73 of file CBAlgoOutOfConeSeparate.h.

Referenced by Bool(), and SetMinLength().


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