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

Constructor & Destructor Documentation

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

Definition at line 836 of file Types.py.

837  def __init__(self,*arg,**args):
super(VEventID,self).__init__(*arg,**args)
def __init__
Definition: Types.py:836

Member Function Documentation

def Types.VEventID._itemIsValid (   item)
staticprivate

Definition at line 839 of file Types.py.

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

840  def _itemIsValid(item):
return EventID._isValid(item)
def _itemIsValid
Definition: Types.py:839
def Types.VEventID._valueFromString (   value)
staticprivate

Definition at line 850 of file Types.py.

851  def _valueFromString(value):
return VEventID(*_ValidatingParameterListBase._itemsFromStrings(value,EventID._valueFromString))
def _valueFromString
Definition: Types.py:850
def Types.VEventID.configValueForItem (   self,
  item,
  options 
)

Definition at line 841 of file Types.py.

842  def configValueForItem(self,item,options):
return EventID.formatValueForConfig(item)
def configValueForItem
Definition: Types.py:841
def Types.VEventID.insertInto (   self,
  parameterSet,
  myname 
)

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

853  def insertInto(self, parameterSet, myname):
854  cppIDs = list()
855  for i in self:
856  item = i
857  if isinstance(item, basestring):
858  item = EventID._valueFromString(item)
859  cppIDs.append(item.cppID(parameterSet))
860  parameterSet.addVEventID(self.isTracked(), myname, cppIDs)
861 
def insertInto
Definition: Types.py:852
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.VEventID.pythonValueForItem (   self,
  item,
  options 
)

Definition at line 843 of file Types.py.

844  def pythonValueForItem(self,item, options):
845  # we tolerate strings as members
846  if isinstance(item, basestring):
847  return '"'+item+'"'
848  else:
return item.dumpPython(options)
def pythonValueForItem
Definition: Types.py:843