CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Private Member Functions
Types.VLuminosityBlockID Class Reference
Inheritance diagram for Types.VLuminosityBlockID:
Mixins._ValidatingParameterListBase Mixins._ValidatingListBase Mixins._ParameterTypeBase

Public Member Functions

def __init__
 
def configValueForItem
 
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
 

Static Private Member Functions

def _itemIsValid
 
def _valueFromString
 

Detailed Description

Definition at line 752 of file Types.py.

Constructor & Destructor Documentation

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

Definition at line 753 of file Types.py.

754  def __init__(self,*arg,**args):
super(VLuminosityBlockID,self).__init__(*arg,**args)

Member Function Documentation

def Types.VLuminosityBlockID._itemIsValid (   item)
staticprivate

Definition at line 756 of file Types.py.

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

757  def _itemIsValid(item):
return LuminosityBlockID._isValid(item)
def Types.VLuminosityBlockID._valueFromString (   value)
staticprivate

Definition at line 763 of file Types.py.

764  def _valueFromString(value):
return VLuminosityBlockID(*_ValidatingParameterListBase._itemsFromStrings(value,LuminosityBlockID._valueFromString))
def Types.VLuminosityBlockID.configValueForItem (   self,
  item,
  options 
)

Definition at line 758 of file Types.py.

759  def configValueForItem(self,item,options):
return LuminosityBlockID.formatValueForConfig(item)
def Types.VLuminosityBlockID.insertInto (   self,
  parameterSet,
  myname 
)

Definition at line 765 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().

766  def insertInto(self, parameterSet, myname):
767  cppIDs = list()
768  for i in self:
769  item = i
770  if isinstance(item, basestring):
771  item = LuminosityBlockID._valueFromString(item)
772  cppIDs.append(item.cppID(parameterSet))
773  parameterSet.addVLuminosityBlockID(self.isTracked(), myname, cppIDs)
774 
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.VLuminosityBlockID.pythonValueForItem (   self,
  item,
  options 
)

Definition at line 760 of file Types.py.

761  def pythonValueForItem(self,item, options):
return item.dumpPython(options)