CMS 3D CMS Logo

cosmicsHybrid.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 """
3 _cosmicsHybrid_
4 
5 Scenario supporting cosmics data taking in hybrid mode
6 """
7 
8 from Configuration.DataProcessing.Impl.cosmics import cosmics
9 
11  def __init__(self):
12  cosmics.__init__(self)
13  self.customs = [ "RecoLocalTracker/SiStripZeroSuppression/customiseHybrid.runOnHybridZS" ]
14  """
15  _cosmicsHybrid_
16 
17  Implement configuration building for data processing for cosmic
18  data taking with the strip tracker in hybrid ZS mode
19 
20  """
21 
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 
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 
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)
def expressProcessing(self, globalTag, args)
def visualizationProcessing(self, globalTag, args)
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