// TheAnalysis.h // #ifndef _MyAnalysis_TheAnalysis_H #define _MyAnalysis_TheAnalysis_H // Normal STL and physical vectors // Gaudi #include "GaudiKernel/Algorithm.h" #include "AtlfastUtils/TesIO.h" //******************************* // SET DEFAULTS //******************************* namespace MyAnalysis { class TheAnalysis : public Algorithm { public: TheAnalysis(const std::string& name, ISvcLocator* pSvcLocator); ~TheAnalysis(); //standard Athena-Algorithm method */ StatusCode initialize(); //standard Athena-Algorithm method */ StatusCode execute(); //standard Athena-Algorithm method */ StatusCode finalize(); private: Atlfast::TesIO* m_tesIO; }; } // end of namespace bracket #endif