BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
Reconstruction/MdcHoughFinder/MdcHoughFinder-00-00-14/MdcHoughFinder/HoughPeak.h
Go to the documentation of this file.
1#ifndef HOUGHPEAK_H
2#define HOUGHPEAK_H
3
4#include <vector>
5#include <string>
6#include "MdcHoughFinder/HoughHit.h"
7#include "MdcHoughFinder/HoughHitList.h"
8
9using namespace std;
10
11class HoughPeak{
12 public:
14 HoughPeak(const HoughPeak& other);
16 //HoughPeak(int itheta, int irho , double theta,double rho, vector< const HoughHit* >** mapHitList,bool is);
17 HoughPeak(int itheta, int irho , double theta,double rho, vector< const HoughHit* >** mapHitList,bool is,int peakNum);
18 HoughPeak(int height,int itheta, int irho , double theta,double rho, bool is,int peakNum,int charge);
19 // collect hits
20 vector<const HoughHit*> getHoughHitList() const {return _houghPeakHitList;}
21 int peakHeight() const {return _height;}
22 int getPeakNum() const {return _peakNum;}
23 int getThetaBin() const {return _thetaBin;}
24 int getRhoBin() const {return _rhoBin;}
25 double getTheta() const {return _theta;}
26 double getRho() const {return _rho;}
27 double getRho_reci() const {return 1./_rho;}
28 bool getisCandiTrack() const {return _isCandiTrack;}
29 void setisCandiTrack(bool is) { _isCandiTrack=is;}
30 int getHitNum(int) const ;
31 int getHitNumA(int) const ;
32 int getHitNumS(int) const ;
33 void printAllHit() const;
34 void print();
37
38
39 private:
40 //class member
41 double _theta;
42 double _rho;
43 int _thetaBin;
44 int _rhoBin;
45 vector<const HoughHit*> _houghPeakHitList;
46 bool _isCandiTrack;
47 int _peakNum;
48 int _height;
49 int _charge;
50};
51
52#endif
int getHitNumS(int) const
int getHitNum(int) const
HoughPeak(int itheta, int irho, double theta, double rho, vector< const HoughHit * > **mapHitList, bool is, int peakNum)
HoughPeak & operator=(const HoughPeak &other)
void printAllHit() const
int collectHits(const HoughHitList &)
HoughPeak(const HoughPeak &other)
int getHitNumA(int) const
void print()
HoughPeak(int height, int itheta, int irho, double theta, double rho, bool is, int peakNum, int charge)
float charge