/** * @file SPeakFinder.cpp * @author Dan Saunders, on behalf of the SoLid collaboration. * @date 17 Feb 2016 */ #include "SPeakFinder.h" //============================================================================== //! Constructor setting up default values. SPeakFinder::SPeakFinder(SDetector * dtr, SClipboard * cb) : ISAlgorithm(dtr, cb, "SPeakFinder") {} //============================================================================== //! Empty initialize. void SPeakFinder::initialize() {} //============================================================================== //! Empty execute. void SPeakFinder::execute() {} //============================================================================== //! Empty finalize. void SPeakFinder::finalize() {} //==============================================================================