// TheAnalysis.h // #ifndef _MyAnalysis_TheAnalysis_H #define _MyAnalysis_TheAnalysis_H // Gaudi includes #include "GaudiKernel/Algorithm.h" namespace MyAnalysis { class TheAnalysis : public Algorithm { public: //Gaudi style constructor and execution methods /** Standard Athena-Algorithm Constructor */ TheAnalysis(const std::string& name, ISvcLocator* pSvcLocator); /** Default Destructor */ ~TheAnalysis(); /** standard Athena-Algorithm method */ StatusCode initialize(); /** standard Athena-Algorithm method */ StatusCode execute(); /** standard Athena-Algorithm method */ StatusCode finalize(); private: }; } // end of namespace bracket #endif