CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
Impl.cosmicsHybrid.cosmicsHybrid Class Reference
Inheritance diagram for Impl.cosmicsHybrid.cosmicsHybrid:

Public Member Functions

def __init__ (self)
 
def expressProcessing (self, globalTag, args)
 
def promptReco (self, globalTag, args)
 
def visualizationProcessing (self, globalTag, args)
 

Public Attributes

 customs
 

Detailed Description

Definition at line 10 of file cosmicsHybrid.py.

Constructor & Destructor Documentation

def Impl.cosmicsHybrid.cosmicsHybrid.__init__ (   self)

Definition at line 11 of file cosmicsHybrid.py.

11  def __init__(self):
12  cosmics.__init__(self)
13  self.customs = [ "RecoLocalTracker/SiStripZeroSuppression/customiseHybrid.runOnHybridZS" ]

Member Function Documentation

def Impl.cosmicsHybrid.cosmicsHybrid.expressProcessing (   self,
  globalTag,
  args 
)

Definition at line 30 of file cosmicsHybrid.py.

References Impl.cosmicsHybrid.cosmicsHybrid.customs, and list().

30  def expressProcessing(self, globalTag, **args):
31  if not "customs" in args:
32  args["customs"] = list(self.customs)
33  else:
34  args["customs"] += self.customs
35 
36  return cosmics.expressProcessing(self, globalTag, **args)
37 
def expressProcessing(self, globalTag, args)
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 Impl.cosmicsHybrid.cosmicsHybrid.promptReco (   self,
  globalTag,
  args 
)

Definition at line 22 of file cosmicsHybrid.py.

References Impl.cosmicsHybrid.cosmicsHybrid.customs, and list().

22  def promptReco(self, globalTag, **args):
23  if not "customs" in args:
24  args["customs"] = list(self.customs)
25  else:
26  args["customs"] += self.customs
27 
28  return cosmics.promptReco(self, globalTag, **args)
29 
def promptReco(self, globalTag, args)
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 Impl.cosmicsHybrid.cosmicsHybrid.visualizationProcessing (   self,
  globalTag,
  args 
)

Definition at line 38 of file cosmicsHybrid.py.

References Impl.cosmicsHybrid.cosmicsHybrid.customs, and list().

38  def visualizationProcessing(self, globalTag, **args):
39  if not "customs" in args:
40  args["customs"] = list(self.customs)
41  else:
42  args["customs"] += self.customs
43 
44  return cosmics.visualizationProcessing(self, globalTag, **args)
45 
def visualizationProcessing(self, globalTag, args)
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

Member Data Documentation