CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes
Types.VPSet Class Reference
Inheritance diagram for Types.VPSet:
Mixins._ValidatingParameterListBase Mixins._ConfigureComponent Mixins._Labelable Mixins._ValidatingListBase Mixins._ParameterTypeBase

Public Member Functions

def __init__ (self, arg, args)
 
def __repr__ (self)
 
def configValueForItem (self, item, options)
 
def copy (self)
 
def insertInto (self, parameterSet, myname)
 
def pythonValueForItem (self, item, options)
 
- Public Member Functions inherited from Mixins._ValidatingParameterListBase
def __init__ (self, arg, args)
 
def __repr__ (self)
 
def configValue (self, options=PrintOptions())
 
def configValueForItem (self, item, options)
 
def dumpPython (self, options=PrintOptions())
 
def pythonValueForItem (self, item, options)
 
def setValue (self, v)
 
def value (self)
 
- Public Member Functions inherited from Mixins._ValidatingListBase
def __add__ (self, rhs)
 
def __init__ (self, arg, args)
 
def __setitem__ (self, key, value)
 
def append (self, x)
 
def extend (self, x)
 
def insert (self, i, x)
 
- Public Member Functions inherited from Mixins._ParameterTypeBase
def __init__ (self)
 
def __repr__ (self)
 
def configTypeName (self)
 
def dumpPython (self, options=PrintOptions())
 
def isFrozen (self)
 
def isModified (self)
 
def isTracked (self)
 
def pythonTypeName (self)
 
def resetModified (self)
 
def setIsFrozen (self)
 
def setIsTracked (self, trackness)
 
- Public Member Functions inherited from Mixins._Labelable
def __str__ (self)
 
def dumpSequenceConfig (self)
 
def dumpSequencePython (self, options=PrintOptions())
 
def hasLabel_ (self)
 
def label (self)
 
def label_ (self)
 
def setLabel (self, label)
 

Private Member Functions

def _place (self, name, proc)
 

Static Private Member Functions

def _itemIsValid (item)
 

Private Attributes

 _nPerLine
 

Detailed Description

Definition at line 981 of file Types.py.

Constructor & Destructor Documentation

def Types.VPSet.__init__ (   self,
  arg,
  args 
)

Definition at line 982 of file Types.py.

982  def __init__(self,*arg,**args):
983  super(VPSet,self).__init__(*arg,**args)
984  self._nPerLine = 1
def __init__(self, arg, args)
Definition: Types.py:982

Member Function Documentation

def Types.VPSet.__repr__ (   self)
def Types.VPSet._itemIsValid (   item)
staticprivate

Definition at line 986 of file Types.py.

Referenced by Mixins._ValidatingListBase.__setitem__(), Mixins._ValidatingListBase._isValid(), Mixins._ValidatingListBase.append(), and Mixins._ValidatingListBase.insert().

986  def _itemIsValid(item):
987  return isinstance(item, PSet) and PSet._isValid(item)
def _itemIsValid(item)
Definition: Types.py:986
def Types.VPSet._place (   self,
  name,
  proc 
)
private

Definition at line 994 of file Types.py.

994  def _place(self,name,proc):
995  proc._placeVPSet(name,self)
def _place(self, name, proc)
Definition: Types.py:994
def Types.VPSet.configValueForItem (   self,
  item,
  options 
)

Definition at line 988 of file Types.py.

988  def configValueForItem(self,item, options):
989  return PSet.configValue(item, options)
def configValueForItem(self, item, options)
Definition: Types.py:988
def Types.VPSet.copy (   self)

Definition at line 992 of file Types.py.

992  def copy(self):
993  return copy.copy(self)
def copy(self)
Definition: Types.py:992
def Types.VPSet.insertInto (   self,
  parameterSet,
  myname 
)

Definition at line 996 of file Types.py.

References edm::AllowedLabelsDescriptionBase.isTracked(), edm::ParameterWildcardBase.isTracked(), edm::ParameterDescriptionBase.isTracked(), edm::ParameterSetEntry.isTracked(), edm::VParameterSetEntry.isTracked(), Mixins._ParameterTypeBase.isTracked(), edm::Entry.isTracked(), and list().

996  def insertInto(self, parameterSet, myname):
997  # translate the PSet members into C++ parameterSets
998  parametersets = list()
999  for pset in self:
1000  newparameterset = parameterSet.newPSet()
1001  pset.insertContentsInto(newparameterset)
1002  parametersets.append(newparameterset)
1003  parameterSet.addVPSet(self.isTracked(), myname, parametersets)
def insertInto(self, parameterSet, myname)
Definition: Types.py:996
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run
def Types.VPSet.pythonValueForItem (   self,
  item,
  options 
)

Definition at line 990 of file Types.py.

990  def pythonValueForItem(self,item, options):
991  return PSet.dumpPython(item,options)
def pythonValueForItem(self, item, options)
Definition: Types.py:990

Member Data Documentation

Types.VPSet._nPerLine
private

Definition at line 984 of file Types.py.

Referenced by Mixins._ValidatingParameterListBase.dumpPython().