The Gaudi Framework  v29r0 (ff2e7097)
IAlgManager.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_IALGMANAGER_H
2 #define GAUDIKERNEL_IALGMANAGER_H
3 
4 // Include files
6 #include "GaudiKernel/SmartIF.h"
8 #include <list>
9 #include <string>
10 
11 // Forward class declaration
12 class IService;
13 class IAlgorithm;
14 class ISvcLocator;
15 
27 class GAUDI_API IAlgManager : virtual public IComponentManager
28 {
29 public:
32 
34  virtual StatusCode addAlgorithm( IAlgorithm* alg // Pointer to the Algorithm
35  ) = 0;
37  virtual StatusCode removeAlgorithm( IAlgorithm* alg // Pointer to the Algorithm
38  ) = 0;
41  virtual StatusCode
42  createAlgorithm( const std::string& algtype, // Algorithm type name
43  const std::string& algname, // Algorithm name to be assigned
44  IAlgorithm*& alg, // Returned algorithm
45  bool managed = false, // Flag to indicate if the algorithm is managed
46  bool checkIfExists = true // Flag to indicate if clones of existing algorithms can be created
47  ) = 0;
48 #if !defined( GAUDI_V22_API ) || defined( G22_NEW_SVCLOCATOR )
49  virtual StatusCode getAlgorithm( const std::string& name, // Algorithm name to be searched
51  IAlgorithm*& alg // Returned algorithm
52  ) const
53  {
54  SmartIF<IAlgorithm>& si = const_cast<IAlgManager*>( this )->algorithm( name, false );
55  alg = si.get();
57  }
58 #endif
59  virtual bool existsAlgorithm( const std::string& name // Algorithm name to be searched
61  ) const = 0;
63  virtual const std::vector<IAlgorithm*>& getAlgorithms() const = 0;
64 
67  const bool createIf = true ) = 0;
68 
70  template <typename T>
71  inline SmartIF<T> algorithm( const Gaudi::Utils::TypeNameString& typeName, const bool createIf = true )
72  {
73  return SmartIF<T>( algorithm( typeName, createIf ) );
74  }
75 };
76 
77 #endif // GAUDI_IALGMANAGER_H
DeclareInterfaceID(IComponentManager, 1, 0)
InterfaceID.
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
The IAlgManager is the interface implemented by the Algorithm Factory in the Application Manager to s...
Definition: IAlgManager.h:27
STL class.
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:82
Helper class to parse a string of format "type/name".
GAUDI_API IAlgorithm * getAlgorithm(const IAlgContextSvc *svc, const AlgSelector &sel)
simple function to get the algorithm from Context Service
Definition: GetAlg.cpp:24
General service interface definition.
Definition: IService.h:18
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
The IAlgorithm is the interface implemented by the Algorithm base class.
Definition: IAlgorithm.h:28
SmartIF< T > algorithm(const Gaudi::Utils::TypeNameString &typeName, const bool createIf=true)
Returns a smart pointer to the requested interface of a service.
Definition: IAlgManager.h:71
std::string typeName(const std::type_info &typ)
Definition: Dictionary.cpp:23
#define GAUDI_API
Definition: Kernel.h:110