00001 // * 00002 // * Optical parameters used in reconstruction 00003 // * 00004 // * 00005 // * 00006 #ifndef AdRec_OpPara_H 00007 #define AdRec_OpPara_H 1 00008 00009 class OpPara { 00010 00011 public: 00012 // Optical parameters for reconstruction 00013 double m_attl; 00014 double m_topRef; 00015 double m_botRef; 00016 double m_yield; 00017 double m_photoCathodeArea; 00018 00019 public: 00020 // Default constructor 00021 OpPara() : m_attl(0), 00022 m_topRef(0), 00023 m_botRef(0), 00024 m_yield(0), 00025 m_photoCathodeArea(0) {} 00026 00027 // Standard constructor 00028 OpPara(double attl, double topRef, double botRef, 00029 double yield, double photoCathodeArea); 00030 00031 ~OpPara() {} 00032 00033 }; 00034 00035 #endif