|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
Array of Handles to be used in lieu of vector of naked pointers to tools. More...
#include <GaudiKernel/ServiceHandle.h>


Public Member Functions | |
| ServiceHandleArray (const std::vector< std::string > &myTypesAndNamesList, const std::string &myComponentType, const std::string &myParentName) | |
| Generic constructor. | |
| ServiceHandleArray (const std::string &myParentName) | |
| virtual bool | push_back (const std::string &serviceTypeAndName) |
| Add a handle to the array with "type/name" given in <myHandleTypeAndName>. | |
| virtual bool | push_back (const ServiceHandle< T > &myHandle) |
Array of Handles to be used in lieu of vector of naked pointers to tools.
This allows better control through the framework of tool loading and usage. T is the AlgTool interface class (or concrete class) of the tool to use, and must derive from IAlgTool.
Definition at line 112 of file ServiceHandle.h.
| ServiceHandleArray< T >::ServiceHandleArray | ( | const std::vector< std::string > & | myTypesAndNamesList, |
| const std::string & | myComponentType, | ||
| const std::string & | myParentName | ||
| ) | [inline] |
Generic constructor.
Probably not very useful...
Definition at line 119 of file ServiceHandle.h.
:
GaudiHandleArray< ServiceHandle<T> >( myTypesAndNamesList,
myComponentType,
myParentName)
{ }
| ServiceHandleArray< T >::ServiceHandleArray | ( | const std::string & | myParentName ) | [inline] |
Definition at line 126 of file ServiceHandle.h.
: GaudiHandleArray< ServiceHandle<T> >( "Service", myParentName) { }
| virtual bool ServiceHandleArray< T >::push_back | ( | const std::string & | myHandleTypeAndName ) | [inline, virtual] |
Add a handle to the array with "type/name" given in <myHandleTypeAndName>.
Return whether addition was successful or not. Must be implemented by derived class with concrete handle category.
Implements GaudiHandleArrayBase.
Definition at line 130 of file ServiceHandle.h.
{
ServiceHandle<T> handle( serviceTypeAndName,GaudiHandleInfo::parentName());
GaudiHandleArray< ServiceHandle<T> >::push_back( handle );
return true;
}
| virtual bool ServiceHandleArray< T >::push_back | ( | const ServiceHandle< T > & | myHandle ) | [inline, virtual] |
Reimplemented from GaudiHandleArray< ServiceHandle< T > >.
Definition at line 136 of file ServiceHandle.h.
{
return push_back( myHandle.typeAndName() );
}