CMS 3D CMS Logo

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

Constructor & Destructor Documentation

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

Definition at line 843 of file Types.py.

843  def __init__(self,*arg,**args):
844  super(VInputTag,self).__init__(*arg,**args)
def __init__(self, arg, args)
Definition: Types.py:843

Member Function Documentation

def Types.VInputTag._itemIsValid (   item)
staticprivate
def Types.VInputTag._valueFromString (   value)
staticprivate

Definition at line 861 of file Types.py.

861  def _valueFromString(value):
862  return VInputTag(*_ValidatingParameterListBase._itemsFromStrings(value,InputTag._valueFromString))
def _valueFromString(value)
Definition: Types.py:861
def Types.VInputTag.configValueForItem (   self,
  item,
  options 
)

Definition at line 848 of file Types.py.

848  def configValueForItem(self,item,options):
849  # we tolerate strings as members
850  if isinstance(item, str):
851  return '"'+item+'"'
852  else:
853  return InputTag.formatValueForConfig(item)
def configValueForItem(self, item, options)
Definition: Types.py:848
def Types.VInputTag.insertInto (   self,
  parameterSet,
  myname 
)

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

863  def insertInto(self, parameterSet, myname):
864  cppTags = list()
865  for i in self:
866  item = i
867  if isinstance(item, str):
868  item = InputTag(i)
869  cppTags.append(item.cppTag(parameterSet))
870  parameterSet.addVInputTag(self.isTracked(), myname, cppTags)
871 
def insertInto(self, parameterSet, myname)
Definition: Types.py:863
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.VInputTag.pythonValueForItem (   self,
  item,
  options 
)

Definition at line 854 of file Types.py.

854  def pythonValueForItem(self,item, options):
855  # we tolerate strings as members
856  if isinstance(item, str):
857  return '"'+item+'"'
858  else:
859  return item.dumpPython(options)
def pythonValueForItem(self, item, options)
Definition: Types.py:854