#ifndef HMDCCALIBRATIONGO4MON_H #define HMDCCALIBRATIONGO4MON_H #include "hreconstructor.h" #include "TString.h" class HCategory; class HIterator; class HOnlineMdcHistBooker; /** Mdc Calibration monitor task. * Gets the pointers to the Mdc Categories and * loops over them calling the fill functions * of HOnlineMdcHistFiller. */ class HOnlineMdcCalibrationMon : public HReconstructor { protected: //########################### COMMON VARIABLES ########################################## // pointer to categories and iterators HCategory* rawCat; //!< pointer to the raw data HCategory* rawCatHeader; //!< pointer to the raw data header HIterator* iterraw; //!< iterator on raw data. HIterator* iterrawHeader; //!< iterator on raw data header. // pointer to used parameter containers static HOnlineMdcHistBooker* Histbooker;//!< pointer to HOnlineMdcHistBooker /// init variables void initVariables(); /// get pointers to the Mdc categories. /// Create the iterators for existing categories Bool_t getCategories(); /// get the needed parameter containers void setParContainers(void); public: HOnlineMdcCalibrationMon(void); HOnlineMdcCalibrationMon(const Text_t* name,const Text_t* title); ~HOnlineMdcCalibrationMon(void); /// print the status of the monitor task to the screen void printStatus(); /// init the task Bool_t init(void); /// reinit the task Bool_t reinit(void); /// execute function called in the event loop Int_t execute(); /// finalize function of th task Bool_t finalize(); ClassDef(HOnlineMdcCalibrationMon,0) // fills different hists for cal1 data }; #endif /* !HMDCCALIBRATIONGO4MON_H */