![]() |
The Gaudi Framework
v26r0
|
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. More... | |
virtual | ~ServiceHandleArray () |
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>. More... | |
virtual bool | push_back (const ServiceHandle< T > &myHandle) |
![]() | |
virtual | ~GaudiHandleArray () |
GaudiHandleArray & | operator= (const std::vector< std::string > &myTypesAndNamesList) |
Set the array of GaudiHandles from typeAndNames given in vector of strings. More... | |
virtual GaudiHandleArrayBase::BaseHandleArray | getBaseArray () |
Get a read-write vector of GaudiHandleBase* pointing to the real handles. More... | |
virtual GaudiHandleArrayBase::ConstBaseHandleArray | getBaseArray () const |
Get a read-only vector of const GaudiHandleBase* pointing to the real handles. More... | |
iterator | begin () |
const_iterator | begin () const |
iterator | end () |
const_iterator | end () const |
const_iterator | rbegin () const |
const_iterator | rend () const |
size_type | size () const |
virtual void | clear () |
Clear the list of handles. More... | |
virtual bool | empty () const |
Return whether the list of tools is empty. More... | |
ServiceHandle< T > & | operator[] (int index) |
const ServiceHandle< T > & | operator[] (int index) const |
ServiceHandle< T > * | operator[] (const std::string &name) |
Get pointer (!) to ToolHandle by instance name. More... | |
const ServiceHandle< T > * | operator[] (const std::string &name) const |
Get const pointer (!) to ToolHandle by instance name. More... | |
StatusCode | retrieve () |
Retrieve all tools. More... | |
StatusCode | release () |
Release all tools. More... | |
![]() | |
bool | setTypesAndNames (const std::vector< std::string > &myTypesAndNamesList) |
Set the array of handles from list of "type/name" strings in <myTypesAndNamesList>. More... | |
const std::vector< std::string > | typesAndNames () const |
Return a vector with "type/name" strings of all handles in the array. More... | |
const std::vector< std::string > | types () const |
Return a vector with "type" strings of all handles in the array. More... | |
const std::vector< std::string > | names () const |
Return a vector with "type/name" strings of all handles in the array. More... | |
const std::vector< std::string > | getBaseInfos (std::string(GaudiHandleBase::*pMemFunc)() const ) const |
Helper function to get a vector of strings filled with the return value of each tool of a member function if GaudiHandleBase. More... | |
virtual const std::string | pythonPropertyClassName () const |
Name of the componentType with "HandleArray" appended. More... | |
virtual const std::string | pythonRepr () const |
Python representation of array of handles, i.e. More... | |
![]() | |
virtual | ~GaudiHandleInfo () |
virtual destructor so that derived class destructor is called. More... | |
const std::string & | componentType () const |
const std::string & | propertyName () const |
name as used in declareProperty(name,gaudiHandle) More... | |
void | setPropertyName (const std::string &propName) |
set name as used in declareProperty(name,gaudiHandle). More... | |
const std::string & | parentName () const |
The name of the parent. More... | |
Additional Inherited Members | |
![]() | |
typedef std::vector < ServiceHandle< T > > | HandleVector |
typedef HandleVector::value_type | value_type |
typedef HandleVector::size_type | size_type |
typedef HandleVector::reference | reference |
typedef HandleVector::const_reference | const_reference |
typedef HandleVector::iterator | iterator |
typedef HandleVector::const_iterator | const_iterator |
typedef HandleVector::reverse_iterator | reverse_iterator |
typedef HandleVector::const_reverse_iterator | const_reverse_iterator |
![]() | |
typedef std::vector < GaudiHandleBase * > | BaseHandleArray |
typedef std::vector< const GaudiHandleBase * > | ConstBaseHandleArray |
![]() | |
GaudiHandleArray (const std::vector< std::string > &myTypesAndNamesList, const std::string &myComponentType, const std::string &myParentName) | |
Generic constructor. More... | |
GaudiHandleArray (const std::string &myComponentType, const std::string &myParentName) | |
Constructor creating an empty array. More... | |
![]() | |
GaudiHandleArrayBase (const std::string &myComponentType, const std::string &myParentName) | |
![]() | |
GaudiHandleInfo (const std::string &myComponentType, const std::string &myParentName) | |
Some basic information and helper functions shared between various handles/arrays. More... | |
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 27 of file PropertyMgr.h.
|
inline |
|
inlinevirtual |
Definition at line 126 of file ServiceHandle.h.
|
inline |
Definition at line 128 of file ServiceHandle.h.
|
inlinevirtual |
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 132 of file ServiceHandle.h.
|
inlinevirtual |
Reimplemented from GaudiHandleArray< ServiceHandle< T > >.
Definition at line 138 of file ServiceHandle.h.