CMS 3D CMS Logo

List of all members | Public Member Functions | Static Private Member Functions
Types.VESInputTag Class Reference
Inheritance diagram for Types.VESInputTag:
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 872 of file Types.py.

Constructor & Destructor Documentation

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

Definition at line 873 of file Types.py.

873  def __init__(self,*arg,**args):
874  super(VESInputTag,self).__init__(*arg,**args)
def __init__(self, arg, args)
Definition: Types.py:873

Member Function Documentation

def Types.VESInputTag._itemIsValid (   item)
staticprivate

Definition at line 876 of file Types.py.

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

876  def _itemIsValid(item):
877  return ESInputTag._isValid(item)
def _itemIsValid(item)
Definition: Types.py:876
def Types.VESInputTag._valueFromString (   value)
staticprivate

Definition at line 891 of file Types.py.

891  def _valueFromString(value):
892  return VESInputTag(*_ValidatingParameterListBase._itemsFromStrings(value,ESInputTag._valueFromString))
def _valueFromString(value)
Definition: Types.py:891
def Types.VESInputTag.configValueForItem (   self,
  item,
  options 
)

Definition at line 878 of file Types.py.

878  def configValueForItem(self,item,options):
879  # we tolerate strings as members
880  if isinstance(item, str):
881  return '"'+item+'"'
882  else:
883  return ESInputTag.formatValueForConfig(item)
def configValueForItem(self, item, options)
Definition: Types.py:878
def Types.VESInputTag.insertInto (   self,
  parameterSet,
  myname 
)

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

893  def insertInto(self, parameterSet, myname):
894  cppTags = list()
895  for i in self:
896  item = i
897  if isinstance(item, str):
898  item = ESInputTag(i)
899  cppTags.append(item.cppTag(parameterSet))
900  parameterSet.addVESInputTag(self.isTracked(), myname, cppTags)
901 
def insertInto(self, parameterSet, myname)
Definition: Types.py:893
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.VESInputTag.pythonValueForItem (   self,
  item,
  options 
)

Definition at line 884 of file Types.py.

884  def pythonValueForItem(self,item, options):
885  # we tolerate strings as members
886  if isinstance(item, str):
887  return '"'+item+'"'
888  else:
889  return item.dumpPython(options)
def pythonValueForItem(self, item, options)
Definition: Types.py:884