/*! * @file SDeltaT.h * @author Nick Ryder * @date 02 Nov 2016 */ #ifndef SDeltaT_h_ #define SDeltaT_h_ #include "SAlgorithms/ISAlgorithm.h" //! Test algorithm and example for new users. class SDeltaT : public ISAlgorithm { private: std::vector * timeblocks; uint64_t m_last; bool m_first; TH1F * h_dt, * h_dhtime; public: SDeltaT(SDetector * dtr, SClipboard * cb); ~SDeltaT(); void initialize(); void execute(); void finalize(); }; #endif /* SDeltaT_h_ */