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.VLuminosityBlockRange Class Reference
Inheritance diagram for Types.VLuminosityBlockRange:
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 862 of file Types.py.

Constructor & Destructor Documentation

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

Definition at line 863 of file Types.py.

864  def __init__(self,*arg,**args):
super(VLuminosityBlockRange,self).__init__(*arg,**args)

Member Function Documentation

def Types.VLuminosityBlockRange._itemIsValid (   item)
staticprivate

Definition at line 866 of file Types.py.

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

867  def _itemIsValid(item):
return LuminosityBlockRange._isValid(item)
def Types.VLuminosityBlockRange._valueFromString (   value)
staticprivate

Definition at line 876 of file Types.py.

877  def _valueFromString(value):
return VLuminosityBlockRange(*_ValidatingParameterListBase._itemsFromStrings(value,VLuminosityBlockRange._valueFromString))
def Types.VLuminosityBlockRange.configValueForItem (   self,
  item,
  options 
)

Definition at line 868 of file Types.py.

869  def configValueForItem(self,item,options):
return LuminosityBlockRange.formatValueForConfig(item)
def Types.VLuminosityBlockRange.insertInto (   self,
  parameterSet,
  myname 
)

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

879  def insertInto(self, parameterSet, myname):
880  cppIDs = list()
881  for i in self:
882  item = i
883  if isinstance(item, basestring):
884  item = LuminosityBlockRange._valueFromString(item)
885  cppIDs.append(item.cppID(parameterSet))
886  parameterSet.addVLuminosityBlockRange(self.isTracked(), myname, cppIDs)
887 
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.VLuminosityBlockRange.pythonValueForItem (   self,
  item,
  options 
)

Definition at line 870 of file Types.py.

871  def pythonValueForItem(self,item, options):
872  if isinstance(item, basestring):
873  return '"'+item+'"'
874  else:
return item.dumpPython(options)