Class Reference for E1039 Core & Analysis Software
PHG4BlockCellReco.h
Go to the documentation of this file.
1 #ifndef PHG4BLOCKCELLRECO_H
2 #define PHG4BLOCKCELLRECO_H
3 
5 
6 #include <fun4all/SubsysReco.h>
7 #include <phool/PHTimeServer.h>
8 
9 #include <map>
10 #include <set>
11 #include <string>
12 
13 class PHCompositeNode;
14 class PHG4BlockCell;
15 
17 {
18  public:
19 
20  PHG4BlockCellReco(const std::string &name = "BLOCKRECO");
21 
22  virtual ~PHG4BlockCellReco(){}
23 
25  int InitRun(PHCompositeNode *topNode);
26 
28  int process_event(PHCompositeNode *topNode);
29 
30  int ResetEvent(PHCompositeNode *topNode);
31 
32  void SetDefaultParameters();
33 
34  void Detector(const std::string &d) {detector = d;}
35  void etaxsize(const int i, const double deltaeta, const double deltax);
36  void checkenergy(const int i=1) {chkenergyconservation = i;}
37 
38  void set_timing_window(const int detid, const double tmin, const double tmax);
39 
40  protected:
41  void set_size(const int i, const double sizeA, const double sizeB, const int what);
42  int CheckEnergy(PHCompositeNode *topNode);
43  static std::pair<double, double> get_etaphi(const double x, const double y, const double z);
44  static double get_eta(const double radius, const double z);
45  bool lines_intersect( double ax, double ay, double bx, double by, double cx, double cy, double dx, double dy, double* rx, double* ry);
46  bool line_and_rectangle_intersect( double ax, double ay, double bx, double by, double cx, double cy, double dx, double dy, double* rr);
47 
49  std::map<int, int> binning;
50  std::map<int, std::pair <double,double> > cell_size; // cell size in x/z
51  std::map<int, std::pair <double,double> > zmin_max; // zmin/zmax for each layer for faster lookup
52  std::map<int, double> xstep;
53  std::map<int, double> etastep;
54  std::map<int, std::pair<double,double> > tmin_max;
55  std::set<int> implemented_detid;
56  std::string detector;
57  std::string hitnodename;
58  std::string cellnodename;
59  std::string geonodename;
60  std::string seggeonodename;
61  std::map<int, std::pair<int, int> > n_x_z_bins;
64 
65 };
66 
67 #endif
PHTimer server for accessing external information.
int CheckEnergy(PHCompositeNode *topNode)
virtual ~PHG4BlockCellReco()
std::string seggeonodename
std::map< int, std::pair< double, double > > cell_size
std::string hitnodename
static std::pair< double, double > get_etaphi(const double x, const double y, const double z)
void set_size(const int i, const double sizeA, const double sizeB, const int what)
PHG4BlockCellReco(const std::string &name="BLOCKRECO")
std::set< int > implemented_detid
std::map< int, double > etastep
void etaxsize(const int i, const double deltaeta, const double deltax)
void Detector(const std::string &d)
std::map< int, std::pair< double, double > > zmin_max
std::map< int, double > xstep
int process_event(PHCompositeNode *topNode)
event processing
void set_timing_window(const int detid, const double tmin, const double tmax)
std::string cellnodename
bool lines_intersect(double ax, double ay, double bx, double by, double cx, double cy, double dx, double dy, double *rx, double *ry)
std::map< int, std::pair< double, double > > tmin_max
bool line_and_rectangle_intersect(double ax, double ay, double bx, double by, double cx, double cy, double dx, double dy, double *rr)
int InitRun(PHCompositeNode *topNode)
module initialization
std::string geonodename
std::map< int, std::pair< int, int > > n_x_z_bins
std::map< int, int > binning
static double get_eta(const double radius, const double z)
PHTimeServer::timer _timer
void checkenergy(const int i=1)
int ResetEvent(PHCompositeNode *topNode)
Clean up after each event.
wrapper around PHTimer, for storage in a map
Definition: PHTimeServer.h:35