CMS 3D CMS Logo

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__ (self, arg, args)
 
def configValueForItem (self, item, options)
 
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)
 

Static Private Member Functions

def _itemIsValid (item)
 
def _valueFromString (value)
 

Detailed Description

Definition at line 929 of file Types.py.

Constructor & Destructor Documentation

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

Definition at line 930 of file Types.py.

930  def __init__(self,*arg,**args):
931  super(VLuminosityBlockRange,self).__init__(*arg,**args)
def __init__(self, arg, args)
Definition: Types.py:930

Member Function Documentation

def Types.VLuminosityBlockRange._itemIsValid (   item)
staticprivate

Definition at line 933 of file Types.py.

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

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

Definition at line 943 of file Types.py.

943  def _valueFromString(value):
944  return VLuminosityBlockRange(*_ValidatingParameterListBase._itemsFromStrings(value,VLuminosityBlockRange._valueFromString))
def _valueFromString(value)
Definition: Types.py:943
def Types.VLuminosityBlockRange.configValueForItem (   self,
  item,
  options 
)

Definition at line 935 of file Types.py.

935  def configValueForItem(self,item,options):
936  return LuminosityBlockRange.formatValueForConfig(item)
def configValueForItem(self, item, options)
Definition: Types.py:935
def Types.VLuminosityBlockRange.insertInto (   self,
  parameterSet,
  myname 
)

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

945  def insertInto(self, parameterSet, myname):
946  cppIDs = list()
947  for i in self:
948  item = i
949  if isinstance(item, str):
950  item = LuminosityBlockRange._valueFromString(item)
951  cppIDs.append(item.cppID(parameterSet))
952  parameterSet.addVLuminosityBlockRange(self.isTracked(), myname, cppIDs)
953 
954 
def insertInto(self, parameterSet, myname)
Definition: Types.py:945
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 937 of file Types.py.

937  def pythonValueForItem(self,item, options):
938  if isinstance(item, str):
939  return '"'+item+'"'
940  else:
941  return item.dumpPython(options)
def pythonValueForItem(self, item, options)
Definition: Types.py:937