CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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__
 
def __repr__
 
def configValueForItem
 
def copy
 
def insertInto
 
def pythonValueForItem
 
- Public Member Functions inherited from Mixins._ValidatingParameterListBase
def __init__
 
def __repr__
 
def configValue
 
def configValueForItem
 
def dumpPython
 
def pythonValueForItem
 
def setValue
 
def value
 
- Public Member Functions inherited from Mixins._ValidatingListBase
def __add__
 
def __init__
 
def __setitem__
 
def append
 
def extend
 
def insert
 
- Public Member Functions inherited from Mixins._ParameterTypeBase
def __init__
 
def __repr__
 
def configTypeName
 
def dumpPython
 
def isFrozen
 
def isModified
 
def isTracked
 
def pythonTypeName
 
def resetModified
 
def setIsFrozen
 
def setIsTracked
 
- Public Member Functions inherited from Mixins._Labelable
def __str__
 
def dumpSequenceConfig
 
def dumpSequencePython
 
def hasLabel_
 
def label
 
def label_
 
def setLabel
 

Private Member Functions

def _place
 

Static Private Member Functions

def _itemIsValid
 

Private Attributes

 _nPerLine
 

Detailed Description

Definition at line 914 of file Types.py.

Constructor & Destructor Documentation

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

Definition at line 915 of file Types.py.

916  def __init__(self,*arg,**args):
917  super(VPSet,self).__init__(*arg,**args)
self._nPerLine = 1
def __init__
Definition: Types.py:915

Member Function Documentation

def Types.VPSet.__repr__ (   self)

Definition at line 937 of file Types.py.

References editorTools.UserCodeTool.dumpPython(), Vispa.Plugins.ConfigEditor.ToolDataAccessor.ImportTool.dumpPython(), Mixins._ParameterTypeBase.dumpPython(), Vispa.Plugins.ConfigEditor.ToolDataAccessor.ApplyTool.dumpPython(), ConfigToolBase.ConfigToolBase.dumpPython(), Vispa.Plugins.ConfigEditor.ConfigEditorTabController.ConfigEditorTabController.dumpPython(), Vispa.Plugins.ConfigEditor.ConfigDataAccessor.ConfigDataAccessor.dumpPython(), Config.Process.dumpPython(), and Config.SubProcess.dumpPython().

938  def __repr__(self):
939  return self.dumpPython()
def __repr__
Definition: Types.py:937
def Types.VPSet._itemIsValid (   item)
staticprivate

Definition at line 919 of file Types.py.

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

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

Definition at line 927 of file Types.py.

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

Definition at line 921 of file Types.py.

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

Definition at line 925 of file Types.py.

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

Definition at line 929 of file Types.py.

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

930  def insertInto(self, parameterSet, myname):
931  # translate the PSet members into C++ parameterSets
932  parametersets = list()
933  for pset in self:
934  newparameterset = parameterSet.newPSet()
935  pset.insertContentsInto(newparameterset)
936  parametersets.append(newparameterset)
parameterSet.addVPSet(self.isTracked(), myname, parametersets)
def insertInto
Definition: Types.py:929
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 923 of file Types.py.

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

Member Data Documentation

Types.VPSet._nPerLine
private

Definition at line 917 of file Types.py.

Referenced by Mixins._ValidatingParameterListBase.dumpPython().