#ifndef HiTOFTASKSET_H #define HiTOFTASKSET_H #include "htaskset.h" #include "hitofcalibrater.h" class HiTofTaskSet : public HTaskSet { private: Bool_t isUsedForT0; //switch in case the iTof is used for T0 measurement and thus Start2Hit should not be subtracted in following steps HiTofCalibrater* calibrater; //! public: HiTofTaskSet(const Text_t name[]="iTofTaskSet",const Text_t title[]="iTofTaskSet"); // function to be used for derived task sets (HiTofTaskSet, etc.) HTask *make(const Char_t *select = "",const Option_t *option = ""); HiTofCalibrater* getCalibrater() { return calibrater; } ClassDef(HiTofTaskSet,1) // Set of tasks }; #endif /* !HiTOFTASKSET_H */