00001 // * 00002 // * Geometry parameters used in reconstruction 00003 // * 00004 // * 00005 // * 00006 #ifndef AdRec_GeomPara_H 00007 #define AdRec_GeomPara_H 1 00008 00009 class GeomPara { 00010 00011 public: 00012 // Optical parameters for reconstruction 00013 double m_topRefZ; 00014 double m_botRefZ; 00015 00016 // holes on reflectors 00017 00018 public: 00019 // Default constructor 00020 GeomPara() : m_topRefZ(0), 00021 m_botRefZ(0) {} 00022 00023 // Standard constructor 00024 GeomPara(double topRefZ, double botRefZ); 00025 00026 ~GeomPara() {} 00027 00028 }; 00029 00030 #endif