List of all members.
Detailed Description
Definition at line 835 of file Types.py.
Constructor & Destructor Documentation
def Types::VEventID::__init__ |
( |
|
self, |
|
|
|
arg, |
|
|
|
args |
|
) |
| |
Member Function Documentation
def Types::VEventID::_itemIsValid |
( |
|
item | ) |
[private] |
Definition at line 839 of file Types.py.
00840 :
return EventID._isValid(item)
def Types::VEventID::_valueFromString |
( |
|
value | ) |
[private] |
Definition at line 850 of file Types.py.
00851 :
return VEventID(*_ValidatingParameterListBase._itemsFromStrings(value,EventID._valueFromString))
def Types::VEventID::configValueForItem |
( |
|
self, |
|
|
|
item, |
|
|
|
options |
|
) |
| |
def Types::VEventID::insertInto |
( |
|
self, |
|
|
|
parameterSet, |
|
|
|
myname |
|
) |
| |
Definition at line 852 of file Types.py.
00853 :
00854 cppIDs = list()
00855 for i in self:
00856 item = i
00857 if isinstance(item, basestring):
00858 item = EventID._valueFromString(item)
00859 cppIDs.append(item.cppID(parameterSet))
00860 parameterSet.addVEventID(self.isTracked(), myname, cppIDs)
00861
def Types::VEventID::pythonValueForItem |
( |
|
self, |
|
|
|
item, |
|
|
|
options |
|
) |
| |