////////////////////////////////////////////////////////////////////////// // ================================================ // TheAnalysis // ================================================ // // THIS TEXT TO BE REPLACED BY ATLAS STANDARD FORMAT // // Namespace MyAnalysis // // Header include #include "MyAnalysis/TheAnalysis.h" #include "GaudiKernel/MsgStream.h" namespace MyAnalysis { //Constructor TheAnalysis:: TheAnalysis(const std::string& name, ISvcLocator* pSvcLocator): Algorithm(name,pSvcLocator){ } //__________________________________________________________________________ //Destructor TheAnalysis::~TheAnalysis() { MsgStream log( messageService(), name() ) ; log << MSG::DEBUG << "TheAnalysis destructor called" << endreq; } //__________________________________________________________________________ StatusCode TheAnalysis::initialize() { MsgStream log( messageService(), name() ); log << MSG::DEBUG <<"TheAnalysis initialize()" << endreq; return StatusCode::SUCCESS; } //__________________________________________________________________________ StatusCode TheAnalysis::finalize() { MsgStream log( messageService(), name() ); log << MSG::DEBUG <<"TheAnalysis finalize()" << endreq; return StatusCode::SUCCESS; } //__________________________________________________________________________ StatusCode TheAnalysis::execute() { //............................................. MsgStream log( messageService(), name() ); log << MSG::DEBUG << "TheAnalysis execute()" << endreq; return StatusCode::SUCCESS; } } // end of namespace bracket