![]() |
|
|
Generated: 18 Jul 2008 |
#include <IAlgContextSvc.h>
Inheritance diagram for IAlgContextSvc:


Definition at line 28 of file IAlgContextSvc.h.
Public Types | |
| typedef std::vector< IAlgorithm * > | Algorithms |
| the actual type of algorithm' stack | |
Public Member Functions | |
| virtual StatusCode | setCurrentAlg (IAlgorithm *a)=0 |
| set the currently executing algorithm ("push_back") | |
| virtual StatusCode | unSetCurrentAlg (IAlgorithm *a)=0 |
| remove the algorithm ("pop_back") | |
| virtual IAlgorithm * | currentAlg () const=0 |
| accessor to current algorithm: | |
| virtual const Algorithms & | algorithms () const=0 |
| get the stack of executed algorithms | |
Static Public Member Functions | |
| static const InterfaceID & | interfaceID () |
| unique algorithm identification | |
Protected Member Functions | |
| virtual | ~IAlgContextSvc () |
| virtual and protected desctructor | |
| typedef std::vector<IAlgorithm*> IAlgContextSvc::Algorithms |
| IAlgContextSvc::~IAlgContextSvc | ( | ) | [protected, virtual] |
| virtual StatusCode IAlgContextSvc::setCurrentAlg | ( | IAlgorithm * | a | ) | [pure virtual] |
| virtual StatusCode IAlgContextSvc::unSetCurrentAlg | ( | IAlgorithm * | a | ) | [pure virtual] |
remove the algorithm ("pop_back")
Implemented in AlgContextSvc.
Referenced by Gaudi::Utils::AlgContext::~AlgContext().
| virtual IAlgorithm* IAlgContextSvc::currentAlg | ( | ) | const [pure virtual] |
accessor to current algorithm:
Implemented in AlgContextSvc.
Referenced by HistorySvc::getCurrentIAlg().
| virtual const Algorithms& IAlgContextSvc::algorithms | ( | ) | const [pure virtual] |
get the stack of executed algorithms
Implemented in AlgContextSvc.
Referenced by getAlg(), Gaudi::Utils::getAlgorithm(), and Gaudi::Utils::getSequencer().
| const InterfaceID & IAlgContextSvc::interfaceID | ( | ) | [static] |
unique algorithm identification
Reimplemented from IInterface.
Definition at line 31 of file AlgContext.cpp.
Referenced by AlgContextSvc::queryInterface().
00032 { 00033 static const InterfaceID s_interface ( "IAlgContextSvc" , 2 , 0 ) ; 00034 return s_interface ; 00035 }