//////////////////////////////////////////////////////////////////////// /// \class RAT::Classifiers::MeanTimeUnseeded /// /// \brief Calculates the mean time of hits in event window using the /// PMTCal times. /// /// \author name Ed Leming /// /// REVISION HISTORY:\n /// 16/05/2019 : E Leming - New file \n /// /// \details /// //////////////////////////////////////////////////////////////////////// #ifndef __RAT_Classifiers_MeanTimeUnseeded_ #define __RAT_Classifiers_MeanTimeUnseeded_ #include namespace RAT { namespace Classifiers { class MeanTimeUnseeded : public Classifier { public: virtual std::string GetName() const { return MeanTimeUnseeded::Name(); } static std::string Name() { return std::string( "MeanTimeUnseeded" ); } void Initialise( const std::string& ) { } void BeginOfRun(DS::Run& run) { } void EndOfRun(DS::Run&) { } virtual DS::ClassifierResult GetClassification(); private: }; } //::Classifier } //::RAT #endif