Class Reference for E1039 Core & Analysis Software
PHG4CylinderCellTPCReco.h
Go to the documentation of this file.
1 #ifndef PHG4CYLINDERCELLTPCRECO_H
2 #define PHG4CYLINDERCELLTPCRECO_H
3 
4 #include <fun4all/SubsysReco.h>
5 #include <phool/PHTimeServer.h>
6 
7 // rootcint barfs with this header so we need to hide it
8 #ifndef __CINT__
9 #include <gsl/gsl_rng.h>
10 #endif
11 
12 
13 #include <string>
14 #include <map>
15 
16 class PHCompositeNode;
17 class PHG4TPCDistortion;
18 class TH1;
19 class TF1;
20 class TProfile2D;
22 
24 {
25 public:
26 
27  PHG4CylinderCellTPCReco( const int n_pixel=2, const std::string &name = "CYLINDERTPCRECO");
28 
29  virtual ~PHG4CylinderCellTPCReco();
30 
32  int Init(PHCompositeNode *topNode);
33  int InitRun(PHCompositeNode *topNode);
34 
36  int process_event(PHCompositeNode *topNode);
37 
38  void Detector(const std::string &d);
39  void cellsize(const int i, const double sr, const double sz);
40  void setZigzags(const bool zzpads){zigzag_pads = zzpads;}
41  void populate_rectangular_phibins(PHG4CylinderCellGeom *geo, const double phi, const double cloud_sig_rp, std::vector<int> &pad_phibin, std::vector<double> &pad_phibin_share);
42  void populate_zigzag_phibins(PHG4CylinderCellGeom *geo, const double phi, const double cloud_sig_rp, std::vector<int> &pad_phibin, std::vector<double> &pad_phibin_share);
43  void populate_zbins(PHG4CylinderCellGeom *geo, const double z, const double cloud_sig_zz[2], std::vector<int> &pad_zbin, std::vector<double> &pad_zbin_share);
44  void OutputDetector(const std::string &d) {outdetector = d;}
45 
46  void setHalfLength(const double hz){fHalfLength = hz;}
47  void setDiffusionL(const double diff){fDiffusionL = diff;}
48  void setDiffusionT(const double diff){fDiffusionT = diff;}
49  void setSigmaT (const double gem) {sigmaT = gem;} // avalanche-induced charge spread...
50  void setElectronsPerKeV(const double epk){elec_per_gev = epk*1e6;}
51  void set_drift_velocity(const double cm_per_ns) { driftv = cm_per_ns;}
52 
53  void setSmearRPhi(const double v) {fFractRPsm=v;}
54  void setSmearZ(const double v) {fFractZZsm=v;}
55 
56  void setShapingRMSLead(const double v) {fShapingLead=v;}
57  void setShapingRMSTail(const double v) {fShapingTail=v;}
58 
59  double get_timing_window_min(const int i) {return tmin_max[i].first;}
60  double get_timing_window_max(const int i) {return tmin_max[i].second;}
61  void set_timing_window(const int i, const double tmin, const double tmax) {
62  tmin_max[i] = std::make_pair(tmin,tmax);
63  }
64  void set_timing_window_defaults(const double tmin, const double tmax) {
65  tmin_default = tmin; tmax_default = tmax;
66  }
67 
69  void setDistortion (PHG4TPCDistortion * d) {distortion = d;}
70 
71 protected:
72  std::map<int, int> binning;
73  std::map<int, std::pair<double,double>> cell_size; // cell size in phi/z
74  std::map<int, double> phistep;
75  std::map<int, double> etastep;
76  std::vector<int> adc_zbin;
77  std::vector<int> pad_phibin;
78  std::vector<double> pad_phibin_share;
79  std::vector<double> adc_zbin_share;
80  std::string detector;
81  std::string outdetector;
82  std::string hitnodename;
83  std::string cellnodename;
84  std::string geonodename;
85  std::string seggeonodename;
86  std::map<int, std::pair<int, int>> n_phi_z_bins;
88  int nbins[2];
89 
90  double fHalfLength;
91  double fDiffusionT;
92  double fDiffusionL;
93  double sigmaT;
94  double elec_per_gev;
95  double driftv;
96  TF1 *fpad[10];
97  TF1 *fcharge;
98 
100 
101  double tmin_default;
102  double tmax_default;
103  std::map<int,std::pair<double,double>> tmin_max;
104 
106  PHG4TPCDistortion * distortion;
108  TProfile2D *fHWindowP;
109  TProfile2D *fHWindowZ;
110  TProfile2D *fHMeanEDepPerCell;
112  TProfile2D *fHErrorRPhi;
113  TProfile2D *fHErrorZ;
114  double fFractRPsm;
115  double fFractZZsm;
116  double fShapingLead;
117  double fShapingTail;
119 
120 #ifndef __CINT__
122  gsl_rng *RandomGenerator;
123 #endif
124 
125 };
126 
127 #endif
PHTimer server for accessing external information.
void set_timing_window(const int i, const double tmin, const double tmax)
void setElectronsPerKeV(const double epk)
std::map< int, int > binning
std::vector< double > adc_zbin_share
void OutputDetector(const std::string &d)
void setZigzags(const bool zzpads)
void setDiffusionL(const double diff)
double get_timing_window_max(const int i)
void setDistortion(PHG4TPCDistortion *d)
distortion to the primary ionization
gsl_rng * RandomGenerator
random generator that conform with sPHENIX standard
int InitRun(PHCompositeNode *topNode)
void setHalfLength(const double hz)
std::map< int, std::pair< double, double > > cell_size
std::map< int, std::pair< double, double > > tmin_max
std::vector< double > pad_phibin_share
void setShapingRMSLead(const double v)
void populate_zbins(PHG4CylinderCellGeom *geo, const double z, const double cloud_sig_zz[2], std::vector< int > &pad_zbin, std::vector< double > &pad_zbin_share)
int process_event(PHCompositeNode *topNode)
event processing
void setDiffusionT(const double diff)
void setSmearRPhi(const double v)
PHG4CylinderCellTPCReco(const int n_pixel=2, const std::string &name="CYLINDERTPCRECO")
void setSigmaT(const double gem)
std::map< int, double > etastep
double get_timing_window_min(const int i)
void cellsize(const int i, const double sr, const double sz)
void populate_zigzag_phibins(PHG4CylinderCellGeom *geo, const double phi, const double cloud_sig_rp, std::vector< int > &pad_phibin, std::vector< double > &pad_phibin_share)
PHG4TPCDistortion * distortion
distortion to the primary ionization if not NULL
void set_drift_velocity(const double cm_per_ns)
void populate_rectangular_phibins(PHG4CylinderCellGeom *geo, const double phi, const double cloud_sig_rp, std::vector< int > &pad_phibin, std::vector< double > &pad_phibin_share)
void set_timing_window_defaults(const double tmin, const double tmax)
int Init(PHCompositeNode *topNode)
module initialization
std::map< int, double > phistep
void Detector(const std::string &d)
std::map< int, std::pair< int, int > > n_phi_z_bins
void setShapingRMSTail(const double v)
void setSmearZ(const double v)
wrapper around PHTimer, for storage in a map
Definition: PHTimeServer.h:35