Definition at line 29 of file GaudiHandles.py.
◆ __init__()
| def GaudiKernel.GaudiHandles.GaudiHandle.__init__ |
( |
|
self, |
|
|
|
typeAndName |
|
) |
| |
◆ __eq__()
| def GaudiKernel.GaudiHandles.GaudiHandle.__eq__ |
( |
|
self, |
|
|
|
other |
|
) |
| |
Definition at line 90 of file GaudiHandles.py.
90 def __eq__(self, other):
91 return type(self)
is type(other)
and self.typeAndName == other.typeAndName
◆ __opt_value__()
| def GaudiKernel.GaudiHandles.GaudiHandle.__opt_value__ |
( |
|
self | ) |
|
Definition at line 53 of file GaudiHandles.py.
53 def __opt_value__(self):
54 return self.toStringProperty()
◆ __repr__()
| def GaudiKernel.GaudiHandles.GaudiHandle.__repr__ |
( |
|
self | ) |
|
Definition at line 45 of file GaudiHandles.py.
46 return "%s(%r)" % (self.__class__.__name__, self.toStringProperty())
◆ __str__()
| def GaudiKernel.GaudiHandles.GaudiHandle.__str__ |
( |
|
self | ) |
|
◆ getFullName()
| def GaudiKernel.GaudiHandles.GaudiHandle.getFullName |
( |
|
self | ) |
|
Definition at line 87 of file GaudiHandles.py.
87 def getFullName(self):
88 return self.toStringProperty()
◆ getGaudiHandle()
| def GaudiKernel.GaudiHandles.GaudiHandle.getGaudiHandle |
( |
|
self | ) |
|
◆ getName()
| def GaudiKernel.GaudiHandles.GaudiHandle.getName |
( |
|
self | ) |
|
Get the 'name' part of the \"type/name\" string.
If only a type is given, this will be returned as the name.
If the \"type/name\" string is empty, it will return an emtpy string.
Definition at line 72 of file GaudiHandles.py.
73 """Get the 'name' part of the \"type/name\" string.
74 If only a type is given, this will be returned as the name.
75 If the \"type/name\" string is empty, it will return an emtpy string."""
76 slash = self.typeAndName.find(
"/")
79 return self.typeAndName[slash + 1 :]
82 return self.typeAndName
◆ getType()
| def GaudiKernel.GaudiHandles.GaudiHandle.getType |
( |
|
self | ) |
|
Get the 'type' part of the \"type/name\" string.
Definition at line 62 of file GaudiHandles.py.
63 """Get the 'type' part of the \"type/name\" string."""
64 slash = self.typeAndName.find(
"/")
67 return self.typeAndName[0:slash]
70 return self.typeAndName
◆ toStringProperty()
| def GaudiKernel.GaudiHandles.GaudiHandle.toStringProperty |
( |
|
self | ) |
|
Definition at line 59 of file GaudiHandles.py.
59 def toStringProperty(self):
60 return self.typeAndName
◆ componentType
| string GaudiKernel.GaudiHandles.GaudiHandle.componentType = "Unspecified" |
|
static |
◆ isPublic
| bool GaudiKernel.GaudiHandles.GaudiHandle.isPublic = True |
|
static |
◆ typeAndName
| GaudiKernel.GaudiHandles.GaudiHandle.typeAndName |
The documentation for this class was generated from the following file: