CMS 3D CMS Logo

earlyDeleteSettings_cff.py
Go to the documentation of this file.
1 # Abstract all early deletion settings here
2 
3 import collections
4 
5 import FWCore.ParameterSet.Config as cms
6 
7 from RecoTracker.Configuration.customiseEarlyDeleteForSeeding import customiseEarlyDeleteForSeeding
8 from CommonTools.ParticleFlow.Isolation.customiseEarlyDeleteForCandIsoDeposits import customiseEarlyDeleteForCandIsoDeposits
9 import six
10 
11 def _hasInputTagModuleLabel(process, pset, psetModLabel, moduleLabels, result):
12  for name in pset.parameterNames_():
13  value = getattr(pset,name)
14  if isinstance(value, cms.PSet):
15  _hasInputTagModuleLabel(process, value, psetModLabel, moduleLabels, result)
16  elif isinstance(value, cms.VPSet):
17  for ps in value:
18  _hasInputTagModuleLabel(process, ps, psetModLabel, moduleLabels, result)
19  elif isinstance(value, cms.VInputTag):
20  for t in value:
21  t2 = t
22  if not isinstance(t, cms.InputTag):
23  t2 = cms.InputTag(t2)
24  for i,moduleLabel in enumerate(moduleLabels):
25  if result[i]: continue #no need
26  if t2.getModuleLabel() == moduleLabel:
27  result[i]=True
28  elif isinstance(value, cms.InputTag):
29  for i,moduleLabel in enumerate(moduleLabels):
30  if result[i]: continue #no need
31  if value.getModuleLabel() == moduleLabel:
32  result[i]=True
33  elif isinstance(value, cms.string) and name == "refToPSet_":
34  try:
35  ps = getattr(process, value.value())
36  except AttributeError:
37  raise RuntimeError("Module %s has a 'PSet(refToPSet_ = cms.string(\"%s\"))', but the referenced-to PSet does not exist in the Process." % (psetModLabel, value.value()))
38  _hasInputTagModuleLabel(process, ps, psetModLabel, moduleLabels, result)
39 
40 
41 def customiseEarlyDelete(process):
42  # Mapping label -> [branches]
43  # for the producers whose products are to be deleted early
44  products = collections.defaultdict(list)
45 
46  products = customiseEarlyDeleteForSeeding(process, products)
47 
48  products = customiseEarlyDeleteForCandIsoDeposits(process, products)
49 
50  # Set process.options.canDeleteEarly
51  if not hasattr(process.options, "canDeleteEarly"):
52  process.options.canDeleteEarly = cms.untracked.vstring()
53 
54  branchSet = set()
55  for branches in six.itervalues(products):
56  for branch in branches:
57  branchSet.add(branch)
58  process.options.canDeleteEarly.extend(list(branchSet))
59 
60  # LogErrorHarvester should not wait for deleted items
61  for prod in six.itervalues(process.producers_()):
62  if prod.type_() == "LogErrorHarvester":
63  if not hasattr(prod,'excludeModules'):
64  prod.excludeModules = cms.untracked.vstring()
65  t = prod.excludeModules.value()
66  t.extend([b.split('_')[1] for b in branchSet])
67  prod.excludeModules = t
68 
69  # Find the consumers
70  producers=[]
71  branchesList=[]
72  for producer, branches in six.iteritems(products):
73  producers.append(producer)
74  branchesList.append(branches)
75 
76  for moduleType in [process.producers_(), process.filters_(), process.analyzers_()]:
77  for name, module in six.iteritems(moduleType):
78  result=[]
79  for producer in producers:
80  result.append(False)
81 
82  _hasInputTagModuleLabel(process, module, name, producers, result)
83  for i in range(len(result)):
84  if result[i]:
85  #if it exists it might be optional or empty, both evaluate to False
86  if hasattr(module, "mightGet") and module.mightGet:
87  module.mightGet.extend(branchesList[i])
88  else:
89  module.mightGet = cms.untracked.vstring(branchesList[i])
90  return process
91 
92 
93 if __name__=="__main__":
94  import unittest
95 
96  class TestHasInputTagModuleLabel(unittest.TestCase):
97  def setUp(self):
98  """Nothing to do """
99  None
101  p = cms.Process("A")
102  p.pset = cms.PSet(a=cms.InputTag("a"),a2=cms.untracked.InputTag("a2"))
103  p.prod = cms.EDProducer("Producer",
104  foo = cms.InputTag("foo"),
105  foo2 = cms.InputTag("foo2", "instance"),
106  foo3 = cms.InputTag("foo3", "instance", "PROCESS"),
107  foo4 = cms.untracked.InputTag("foo4"),
108  nested = cms.PSet(
109  bar = cms.InputTag("bar"),
110  bar2 = cms.untracked.InputTag("bar2"),
111  ),
112  nested2 = cms.untracked.PSet(
113  bar3 = cms.untracked.InputTag("bar3"),
114  ),
115  flintstones = cms.VPSet(
116  cms.PSet(fred=cms.InputTag("fred")),
117  cms.PSet(wilma=cms.InputTag("wilma"))
118  ),
119  flintstones2 = cms.VPSet(
120  cms.PSet(fred2=cms.untracked.InputTag("fred2")),
121  cms.PSet(wilma2=cms.InputTag("wilma2"))
122  ),
123  ref = cms.PSet(
124  refToPSet_ = cms.string("pset")
125  ),
126  ref2 = cms.untracked.PSet(
127  refToPSet_ = cms.string("pset")
128  ),
129  )
130  p.prod2 = cms.EDProducer("Producer2",
131  foo = cms.PSet(
132  refToPSet_ = cms.string("nonexistent")
133  )
134  )
135 
136  result=[False,False,False,False,False,False,False,False,False,False,False,False,False,False]
137  _hasInputTagModuleLabel(p, p.prod, "prod", ["foo","foo2","foo3","bar","fred","wilma","a","foo4","bar2","bar3","fred2","wilma2","a2","joe"], result)
138  for i in range (0,13):
139  self.assert_(result[i])
140  self.assert_(not result[13])
141 
142  result = [False]
143  self.assertRaises(RuntimeError, _hasInputTagModuleLabel, p, p.prod2, "prod2", ["foo"], result)
144 
145  unittest.main()
FastTimerService_cff.range
range
Definition: FastTimerService_cff.py:34
earlyDeleteSettings_cff.customiseEarlyDelete
def customiseEarlyDelete(process)
Definition: earlyDeleteSettings_cff.py:41
earlyDeleteSettings_cff.TestHasInputTagModuleLabel.testHasInputTagModuleLabel
def testHasInputTagModuleLabel(self)
Definition: earlyDeleteSettings_cff.py:100
customiseEarlyDeleteForSeeding
Definition: customiseEarlyDeleteForSeeding.py:1
earlyDeleteSettings_cff.TestHasInputTagModuleLabel
Definition: earlyDeleteSettings_cff.py:96
customiseEarlyDeleteForCandIsoDeposits
Definition: customiseEarlyDeleteForCandIsoDeposits.py:1
earlyDeleteSettings_cff.TestHasInputTagModuleLabel.setUp
def setUp(self)
Definition: earlyDeleteSettings_cff.py:97
earlyDeleteSettings_cff._hasInputTagModuleLabel
def _hasInputTagModuleLabel(process, pset, psetModLabel, moduleLabels, result)
Definition: earlyDeleteSettings_cff.py:11
list
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