All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GaudiHandleBase Class Reference

Base class to handles to be used in lieu of naked pointers to various Gaudi components. More...

#include <GaudiKernel/GaudiHandle.h>

Inheritance diagram for GaudiHandleBase:
Collaboration diagram for GaudiHandleBase:

Public Member Functions

std::string typeAndName () const
 The full type and name: "type/name". More...
 
std::string type () const
 The concrete component class name: the part before the '/'. More...
 
std::string name () const
 The instance name: the part after the '/'. More...
 
bool empty () const
 Check if the handle has been set to empty string (i.e. More...
 
void setTypeAndName (const std::string &myTypeAndName)
 The component "type/name" string. More...
 
void setName (const std::string &myName)
 Set the instance name (part after the '/') without changing the class type. More...
 
const std::string pythonPropertyClassName () const
 Name of the componentType with "Handle" appended. More...
 
const std::string messageName () const
 name used for printing messages More...
 
virtual const std::string pythonRepr () const
 Python representation of handle, i.e. More...
 
- Public Member Functions inherited from GaudiHandleInfo
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...
 

Protected Member Functions

 GaudiHandleBase (const std::string &myTypeAndName, const std::string &myComponentType, const std::string &myParentName)
 Create a handle ('smart pointer') to a gaudi component. More...
 
- Protected Member Functions inherited from GaudiHandleInfo
 GaudiHandleInfo (const std::string &myComponentType, const std::string &myParentName)
 Some basic information and helper functions shared between various handles/arrays. More...
 

Private Attributes

std::string m_typeAndName
 

Detailed Description

Base class to handles to be used in lieu of naked pointers to various Gaudi components.

This allows better control through the framework of component loading, configuration and usage. This base class implements common features.

Author
Marti.nosp@m.n.Wo.nosp@m.udstr.nosp@m.a@ce.nosp@m.rn.ch

Definition at line 80 of file GaudiHandle.h.

Constructor & Destructor Documentation

GaudiHandleBase::GaudiHandleBase ( const std::string &  myTypeAndName,
const std::string &  myComponentType,
const std::string &  myParentName 
)
inlineprotected

Create a handle ('smart pointer') to a gaudi component.

Parameters
myTypeAndName"MyType/MyName" ("MyType" is short for "MyType/MyType") 'MyType' is the name of the concrete class of the component 'MyName' is to distinguish several instances of the same concrete class
myComponentTypestring indicating what type of component the handle is pointing to. For example: "PublicTool", "PrivateTool", "Service". This is used for printout and on the python side for type checking. On the python side there are classes with these names with "Handle" appended: PublicToolHandle,PrivateToolHandle,ServiceHandle
myParentNameName of the parent that has this handle as a member. Used in printout.

Definition at line 96 of file GaudiHandle.h.

98  : GaudiHandleInfo(myComponentType,myParentName)
99  {
100  setTypeAndName(myTypeAndName);
101  }
GaudiHandleInfo(const std::string &myComponentType, const std::string &myParentName)
Some basic information and helper functions shared between various handles/arrays.
Definition: GaudiHandle.h:24
void setTypeAndName(const std::string &myTypeAndName)
The component "type/name" string.
Definition: GaudiHandle.cpp:9

Member Function Documentation

bool GaudiHandleBase::empty ( ) const
inline

Check if the handle has been set to empty string (i.e.

typeAndName string is empty).

Definition at line 118 of file GaudiHandle.h.

118  {
119  return m_typeAndName.empty();
120  }
std::string m_typeAndName
Definition: GaudiHandle.h:145
const std::string GaudiHandleBase::messageName ( ) const

name used for printing messages

Definition at line 48 of file GaudiHandle.cpp.

48  {
49  std::string propName = propertyName();
50  if ( propName.empty() ) {
51  propName = pythonPropertyClassName() + "('" + m_typeAndName + "')";
52  }
53  return parentName() + "." + propName;
54 }
const std::string & parentName() const
The name of the parent.
Definition: GaudiHandle.h:48
const std::string & propertyName() const
name as used in declareProperty(name,gaudiHandle)
Definition: GaudiHandle.h:38
std::string m_typeAndName
Definition: GaudiHandle.h:145
const std::string pythonPropertyClassName() const
Name of the componentType with "Handle" appended.
Definition: GaudiHandle.cpp:44
std::string GaudiHandleBase::name ( ) const

The instance name: the part after the '/'.

Definition at line 24 of file GaudiHandle.cpp.

24  {
25  std::string::size_type slash = m_typeAndName.find('/');
26  if ( slash == std::string::npos ) {
27  // only type is given, or string is empty.
28  // return default name (=type or empty, in this case full string)
29  return m_typeAndName;
30  } else if ( slash != m_typeAndName.length() -1 ) {
31  // an explicit name is given, so return it
32  return m_typeAndName.substr(slash+1);
33  } else {
34  // ends with /, i.e. explicit empty name.
35  // Should probably never happen.
36  return "";
37  }
38 }
std::string m_typeAndName
Definition: GaudiHandle.h:145
const std::string GaudiHandleBase::pythonPropertyClassName ( ) const
virtual

Name of the componentType with "Handle" appended.

Used as the python class name for the property in the genconf-generated configurables. The python class is defined in GaudiPython/python/GaudiHandles.py.

Implements GaudiHandleInfo.

Definition at line 44 of file GaudiHandle.cpp.

44  {
45  return componentType() + "Handle";
46 }
const std::string & componentType() const
Definition: GaudiHandle.h:33
const std::string GaudiHandleBase::pythonRepr ( ) const
virtual

Python representation of handle, i.e.

python class name and argument. Can be used in the genconf-generated configurables. The corresponding python classes are defined in GaudiPython/GaudiHandles.py

Implements GaudiHandleInfo.

Definition at line 56 of file GaudiHandle.cpp.

56  {
57  return pythonPropertyClassName() + "('" + m_typeAndName + "')";
58 }
std::string m_typeAndName
Definition: GaudiHandle.h:145
const std::string pythonPropertyClassName() const
Name of the componentType with "Handle" appended.
Definition: GaudiHandle.cpp:44
void GaudiHandleBase::setName ( const std::string &  myName)

Set the instance name (part after the '/') without changing the class type.

Definition at line 40 of file GaudiHandle.cpp.

40  {
41  m_typeAndName = type() + '/' + myName;
42 }
std::string m_typeAndName
Definition: GaudiHandle.h:145
std::string type() const
The concrete component class name: the part before the '/'.
Definition: GaudiHandle.cpp:13
void GaudiHandleBase::setTypeAndName ( const std::string &  myTypeAndName)

The component "type/name" string.

Definition at line 9 of file GaudiHandle.cpp.

9  {
10  m_typeAndName = myTypeAndName;
11 }
std::string m_typeAndName
Definition: GaudiHandle.h:145
std::string GaudiHandleBase::type ( ) const

The concrete component class name: the part before the '/'.

Definition at line 13 of file GaudiHandle.cpp.

13  {
14  std::string::size_type slash = m_typeAndName.find('/');
15  if ( slash != std::string::npos ) {
16  // return only part before /
17  return m_typeAndName.substr(0,slash);
18  } else {
19  // return full string
20  return m_typeAndName;
21  }
22 }
std::string m_typeAndName
Definition: GaudiHandle.h:145
std::string GaudiHandleBase::typeAndName ( ) const
inline

The full type and name: "type/name".

Definition at line 107 of file GaudiHandle.h.

107  {
108  return m_typeAndName;
109  }
std::string m_typeAndName
Definition: GaudiHandle.h:145

Member Data Documentation

std::string GaudiHandleBase::m_typeAndName
private

Definition at line 145 of file GaudiHandle.h.


The documentation for this class was generated from the following files: