//=========================================================================== // Level3ModuleDump.hh // Author YeonSei Chung //=========================================================================== #ifndef LEVEL3MODULEDUMP_HH #define LEVEL3MODULEDUMP_HH //----------------- // Include files //----------------- #include "Framework/APPModule.hh" //----------------------------------------- // Main class: //----------------------------------------- class Level3ModuleDump : public AppModule { public: //-------------- // Constructors //-------------- Level3ModuleDump(const char* const theName, const char* const theDescription ); //------------- // Destructors //------------- virtual ~Level3ModuleDump(); //------------- // Operations //------------- virtual AppResult beginRun( AbsEvent* anEvent ); virtual AppResult event( AbsEvent* anEvent ); virtual AppResult endRun( AbsEvent* anEvent ); private: }; // end class definition #endif