#ifndef MARS_MCerPhotCalc #define MARS_MCerPhotCalc ///////////////////////////////////////////////////////////////////////////// // // // MCerPhotCalc // // // // Integrates the time slices of one pixel and substracts the pedestal // // (offset) value // // // ///////////////////////////////////////////////////////////////////////////// #ifndef MARS_MTask #include "MTask.h" #endif class MRawEvtData; class MPedestalCam; class MCerPhotEvt; class MRawRunHeader; class MCerPhotCalc : public MTask { MPedestalCam *fPedestals; // Pedestals of all pixels in the camera MRawEvtData *fRawEvt; // raw event data (time slices) MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation MRawRunHeader *fRunHeader; // RunHeader information Bool_t fEnableFix; // fix for a bug in files from older camera versions (<=40) public: MCerPhotCalc(const char *name=NULL, const char *title=NULL); Bool_t PreProcess(MParList *pList); Bool_t Process(); Bool_t ReInit(MParList *pList); ClassDef(MCerPhotCalc, 0) // Task to calculate cerenkov photons from raw data }; #endif