MRawAnalysis.hh
Go to the documentation of this file.00001 #ifndef _M_RAWCALIBRATION_HH_
00002 #define _M_RAWCALIBRATION_HH_
00003
00046 #include "QModule.hh"
00047 #include <map>
00048 #include <TH1D.h>
00049 namespace Cuore{class QRunData;}
00050
00051 class MRawAnalysis : public QModule {
00052
00053 public:
00055 MRawAnalysis(QSequence* s);
00056
00058 ~MRawAnalysis();
00059
00061 void Init();
00062
00064 QEvent* Do(QEvent* ev);
00065
00067 void Done();
00068 private:
00069 std::map<int,TH1D*> fHSignal;
00070 std::map<int,TH1D*> fHSpectrum;
00071 std::map<int,TH1D*> fHHeater;
00072 const Cuore::QRunData* fRunData;
00073
00074 };
00075
00076 #endif
00077