QStabDataR.hh
Go to the documentation of this file.00001
00008 #ifndef _QSTABDATA_R_HH_
00009 #define _QSTABDATA_R_HH_
00010
00011
00012 #include "QEventDataR.hh"
00013
00014
00015 namespace Cuore {class QEvent;}
00016
00017 class QStabDataR: public QEventDataR {
00018
00019 public:
00021 QStabDataR(){}
00023 virtual ~QStabDataR(){}
00025 const Double_t& GetAmplitude() const {return fAmplitude;}
00026
00028 void SetAmplitude(const Double_t& amplitude) {fAmplitude = amplitude;}
00029
00031 void SetAliases(const std::string& myPath);
00032 private:
00034 void Assign(const Cuore::QEvent& ev);
00036 void Fill(Cuore::QEvent& ev) const;
00037
00038 Double_t fAmplitude;
00039
00040 ClassDef(QStabDataR,1);
00041 };
00042
00043 #endif