/*! * @file SPeakFinder.h * @author Dan Saunders, on behalf of the SoLid collaboration. * @date 17 Feb 2016 */ #ifndef SPeakFinder_h_ #define SPeakFinder_h_ #include "SAlgorithms/ISAlgorithm.h" //! Please (at least) one line comment me. class SPeakFinder : public ISAlgorithm { private: public: SPeakFinder(SDetector * dtr, SClipboard * cb); ~SPeakFinder(); void initialize(); void execute(); void finalize(); }; #endif /* SPeakFinder_h_ */