Class Reference for E1039 Core & Analysis Software
PHG4BlockGeomv1.h
Go to the documentation of this file.
1 #ifndef PHG4BlockGeomv1_H__
2 #define PHG4BlockGeomv1_H__
3 
4 #include "PHG4BlockGeom.h"
5 
6 #include <phool/phool.h>
7 #include <cmath>
8 
10 {
11  public:
13  PHG4BlockGeomv1( const int layer,
14  const double sizex, const double sizey, const double sizez,
15  const double centerx, const double centery, const double centerz,
16  const double zrot );
17 
18  virtual ~PHG4BlockGeomv1() {}
19 
20  void identify(std::ostream& os = std::cout) const;
21 
22  int get_layer() const {return _layer;}
23  double get_width() const {return _size[0];}
24  double get_thickness() const {return _size[1];}
25  double get_length() const {return _size[2];}
26  double get_center_x() const {return _center[0];}
27  double get_center_y() const {return _center[1];}
28  double get_center_z() const {return _center[2];}
29  double get_z_rot() const {return _rotation_z;}
30 
31  double get_size_x() const {return _size[0];}
32  double get_size_y() const {return _size[1];}
33  double get_size_z() const {return _size[2];}
34 
35  double get_rot_matrix(const int i, const int j) const {return _rot_matrix[i][j];}
36 
37  void set_layer(const int i) {_layer = i;}
38 
39  // size in local coordinates
40  void set_size(const double sizex, const double sizey, const double sizez);
41 
42  void set_center(const double centerx, const double centery, const double centerz);
43  void set_z_rot(const double zrot) {_build_rot_matrix(); _rotation_z = zrot;}
44 
45  void convert_local_to_global(double, double, double,
46  double &, double &, double &) const;
47  void convert_global_x_to_local(double, double, double,
48  double &, double &, double &) const;
49 
50  protected:
51  int _layer;
52  double _size[3];
53  double _center[3];
54  double _rotation_z;
55 
56  void _build_rot_matrix();
57  double _rot_matrix[3][3]; // global -> local coordinates rotation matrix
58 
59  ClassDef(PHG4BlockGeomv1,1)
60 };
61 
62 #endif
double get_width() const
void set_size(const double sizex, const double sizey, const double sizez)
void identify(std::ostream &os=std::cout) const
void convert_global_x_to_local(double, double, double, double &, double &, double &) const
virtual ~PHG4BlockGeomv1()
void convert_local_to_global(double, double, double, double &, double &, double &) const
double get_center_z() const
double get_rot_matrix(const int i, const int j) const
double get_size_x() const
double get_center_y() const
double _rot_matrix[3][3]
void set_z_rot(const double zrot)
double get_z_rot() const
double get_length() const
double get_thickness() const
double get_size_z() const
int get_layer() const
double get_center_x() const
void set_layer(const int i)
double get_size_y() const
void set_center(const double centerx, const double centery, const double centerz)