Class Reference for E1039 Core & Analysis Software
PHG4BlockCellGeom.h
Go to the documentation of this file.
1 #ifndef PHG4BlockCellGeom_H__
2 #define PHG4BlockCellGeom_H__
3 
4 #include <phool/PHObject.h>
5 
6 #include <map>
7 #include <string>
8 
10 {
11  public:
13 
14  virtual ~PHG4BlockCellGeom() {}
15 
16  void identify(std::ostream& os = std::cout) const;
17  int get_layer() const {return _layer;}
18  int get_binning() const {return _binning;}
19 
20  int get_zbins() const;
21  double get_zstep() const;
22  double get_zmin() const;
23 
24  int get_xbins() const;
25  double get_xstep() const;
26  double get_xmin() const;
27 
28  int get_etabins() const;
29  double get_etastep() const;
30  double get_etamin() const;
31 
32  std::pair<double, double> get_zbounds(const int ibin) const;
33  std::pair<double, double> get_etabounds(const int ibin) const;
34  std::pair<double, double> get_xbounds(const int ibin) const;
35 
36  double get_etacenter(const int ibin) const;
37  double get_zcenter(const int ibin) const;
38  double get_xcenter(const int ibin) const;
39 
40  int get_etabin(const double eta) const;
41  int get_zbin(const double z) const;
42  int get_xbin(const double x) const;
43 
44  void set_layer(const int i) {_layer = i;}
45  void set_binning(const int i) {_binning = i;}
46 
47  void set_zbins(const int i);
48  void set_zmin(const double z);
49  void set_zstep(const double z);
50 
51  void set_xbins(const int i);
52  void set_xstep(const double x);
53  void set_xmin(const double x);
54 
55  void set_etabins(const int i);
56  void set_etamin(const double z);
57  void set_etastep(const double z);
58 
59  protected:
60  void check_binning_method(const int i) const;
61  void check_binning_method_eta(const std::string & src = "") const;
62  void check_binning_method_x(const std::string & src = "") const;
63  std::string methodname(const int i) const;
64 
65  int _layer;
66  int _binning;
67 
68  int _nzbins;
69  double _zmin;
70  double _zstep;
71 
72  int _nxbins;
73  double _xmin;
74  double _xstep;
75 
76  ClassDef(PHG4BlockCellGeom,1)
77 };
78 
79 #endif
void set_zbins(const int i)
int get_binning() const
double get_xcenter(const int ibin) const
void set_xstep(const double x)
void set_etabins(const int i)
virtual ~PHG4BlockCellGeom()
int get_zbin(const double z) const
void identify(std::ostream &os=std::cout) const
double get_zcenter(const int ibin) const
std::pair< double, double > get_etabounds(const int ibin) const
void set_etastep(const double z)
void set_etamin(const double z)
std::string methodname(const int i) const
double get_etacenter(const int ibin) const
void set_zstep(const double z)
double get_xmin() const
void set_zmin(const double z)
void check_binning_method_eta(const std::string &src="") const
void set_binning(const int i)
void set_layer(const int i)
void check_binning_method_x(const std::string &src="") const
int get_etabin(const double eta) const
void set_xmin(const double x)
void set_xbins(const int i)
std::pair< double, double > get_xbounds(const int ibin) const
double get_zstep() const
int get_xbin(const double x) const
void check_binning_method(const int i) const
double get_xstep() const
std::pair< double, double > get_zbounds(const int ibin) const
double get_etamin() const
double get_zmin() const
double get_etastep() const