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

Constructor & Destructor Documentation

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

Definition at line 889 of file Types.py.

890  def __init__(self,*arg,**args):
super(VEventRange,self).__init__(*arg,**args)

Member Function Documentation

def Types.VEventRange._itemIsValid (   item)
staticprivate

Definition at line 892 of file Types.py.

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

893  def _itemIsValid(item):
return EventRange._isValid(item)
def _itemIsValid
Definition: Types.py:892
def Types.VEventRange._valueFromString (   value)
staticprivate

Definition at line 902 of file Types.py.

903  def _valueFromString(value):
return VEventRange(*_ValidatingParameterListBase._itemsFromStrings(value,VEventRange._valueFromString))
def _valueFromString
Definition: Types.py:902
def Types.VEventRange.configValueForItem (   self,
  item,
  options 
)

Definition at line 894 of file Types.py.

895  def configValueForItem(self,item,options):
return EventRange.formatValueForConfig(item)
def configValueForItem
Definition: Types.py:894
def Types.VEventRange.insertInto (   self,
  parameterSet,
  myname 
)

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

905  def insertInto(self, parameterSet, myname):
906  cppIDs = list()
907  for i in self:
908  item = i
909  if isinstance(item, basestring):
910  item = EventRange._valueFromString(item)
911  cppIDs.append(item.cppID(parameterSet))
912  parameterSet.addVEventRange(self.isTracked(), myname, cppIDs)
913 
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.VEventRange.pythonValueForItem (   self,
  item,
  options 
)

Definition at line 896 of file Types.py.

897  def pythonValueForItem(self,item, options):
898  if isinstance(item, basestring):
899  return '"'+item+'"'
900  else:
return item.dumpPython(options)
def pythonValueForItem
Definition: Types.py:896