Class Reference for E1039 Core & Analysis Software
GeomParamPlane.h
Go to the documentation of this file.
1 #ifndef __GEOM_PARAM_PLANE_H__
2 #define __GEOM_PARAM_PLANE_H__
3 #include "RunParamBase.h"
4 
5 class GeomParamPlane : public GeomParamBase {
6  public:
7  struct Plane {
8  std::string det_name; // detectorName;
9  int n_ele; // numElements;
10  double cell_spacing;
11  double cell_width;
13  double xoffset; // xPrimeOffset;
14  double width; // planeWidth;
15  double height; // planeHeight;
16  double x0;
17  double y0;
18  double z0;
19  double theta_x;
20  double theta_y;
21  double theta_z;
22  };
23 
24  private:
25  typedef std::vector<Plane> List_t;
26  List_t m_list;
27 
28  typedef std::map<std::string, Plane> Map_t;
29  Map_t m_map;
30 
31  public:
33  virtual ~GeomParamPlane() {;}
34 
35  void Add (const Plane& plane);
36  bool Find(const std::string det_name, Plane*& plane);
37  int GetNumPlanes() { return m_list.size(); }
38  Plane* GetPlane(const int idx) { return &m_list[idx]; }
39  void Print(std::ostream& os);
40 
41  protected:
42  int ReadFileCont(LineList& lines);
43  int WriteFileCont(std::ostream& os);
44 
45  void ReadDbTable(DbSvc& db);
46  void WriteDbTable(DbSvc& db);
47 };
48 
49 #endif // __GEOM_PARAM_PLANE_H__
Standard interface with SQL database.
Definition: DbSvc.h:15
bool Find(const std::string det_name, Plane *&plane)
void Add(const Plane &plane)
int ReadFileCont(LineList &lines)
Plane * GetPlane(const int idx)
void Print(std::ostream &os)
void ReadDbTable(DbSvc &db)
virtual ~GeomParamPlane()
int WriteFileCont(std::ostream &os)
void WriteDbTable(DbSvc &db)
Definition: GeomSvc.h:37
std::vector< std::string > LineList
Definition: RunParamBase.h:51