CMS 3D CMS Logo

Public Member Functions | Private Member Functions

Types::vuint32 Class Reference

Inheritance diagram for Types::vuint32:
Mixins::_ValidatingParameterListBase Mixins::_ValidatingListBase Mixins::_ParameterTypeBase

List of all members.

Public Member Functions

def __init__
def insertInto

Private Member Functions

def _itemIsValid
def _valueFromString

Detailed Description

Definition at line 667 of file Types.py.


Constructor & Destructor Documentation

def Types::vuint32::__init__ (   self,
  arg,
  args 
)

Reimplemented from Mixins::_ValidatingParameterListBase.

Definition at line 668 of file Types.py.

00669                                   :
        super(vuint32,self).__init__(*arg,**args)

Member Function Documentation

def Types::vuint32::_itemIsValid (   item) [private]

Definition at line 671 of file Types.py.

00672                           :
        return uint32._isValid(item)
def Types::vuint32::_valueFromString (   value) [private]

Definition at line 674 of file Types.py.

00675                                :
        return vuint32(*_ValidatingParameterListBase._itemsFromStrings(value,uint32._valueFromString))
def Types::vuint32::insertInto (   self,
  parameterSet,
  myname 
)

Definition at line 676 of file Types.py.

00677                                               :
00678         parameterSet.addVUInt32(self.isTracked(), myname, self.value())
00679 
00680