// -*- C++/l -*- // // Description: ISOFFVTask object for the FGD cosmic trigger checker // // Author: Nicholas Hastings // Created: Friday 26 October 13:25:57 JST 2012 // #ifndef TFGDTRIGGERCHECKTASK_HXX #define TFGDTRIGGERCHECKTASK_HXX #include "ICOMETEvent.hxx" #include "ISOFFVTask.hxx" #include "IFGDTriggerCheck.hxx" class TFile; class IFGDTriggerCheckTask : public ISOFFVTask, public IFGDTriggerCheck { public: IFGDTriggerCheckTask( std::string fileName = "fgd_trigger_check.root" ); virtual ~IFGDTriggerCheckTask(); int Initialize(void); int Process( COMET::ICOMETEvent& event ); /// Set the output root file name void SetFileName( const std::string& fileName ); /// Parse command line option bool SetOption( std::string option, std::string value ); /// Clean up and write out root objects and file virtual int Finalize( void ); private: std::string fFileName; TFile* fFile; }; #endif // TFGDTRIGGERCHECKTASK_HXX // Local Variables: // c-basic-offset: 8 // c-file-offsets: ((access-label . -2)(inclass . 4)(innamespace . 2)) // End: