CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hltExoticaPostProcessors_cff.py
Go to the documentation of this file.
2 
4 
5 # Build the standard strings to the DQM
6 def efficiency_string(objtype,plot_type,triggerpath):
7  # --- IMPORTANT: Add here a elif if you are introduce a new collection
8  # (see EVTColContainer::getTypeString)
9  if objtype == "Mu" :
10  objtypeLatex="#mu"
11  elif objtype == "refittedStandAloneMuons":
12  objtypeLatex="refittedStandAlone #mu"
13  elif objtype == "Ele":
14  objtypeLatex="e"
15  elif objtype == "Photon":
16  objtypeLatex="#gamma"
17  elif objtype == "PFTau":
18  objtypeLatex="#tau"
19  else:
20  objtypeLatex=objtype
21  numer_description = "# gen %s passed the %s" % (objtypeLatex,triggerpath)
22  denom_description = "# gen %s " % (objtypeLatex)
23 
24  if plot_type == "TurnOn1":
25  title = "pT Turn-On"
26  xAxis = "p_{T} of Leading Generated %s (GeV/c)" % (objtype)
27  input_type = "gen%sMaxPt1" % (objtype)
28  if plot_type == "TurnOn2":
29  title = "Next-to-Leading pT Turn-On"
30  xAxis = "p_{T} of Next-to-Leading Generated %s (GeV/c)" % (objtype)
31  input_type = "gen%sMaxPt2" % (objtype)
32  if plot_type == "TurnOn3":
33  title = "Next-to-next-to-Leading pT Turn-On"
34  xAxis = "p_{T} of Next-to-next-to-Leading Generated %s (GeV/c)" % (objtype)
35  input_type = "gen%sMaxPt3" % (objtype)
36  if plot_type == "TurnOn4":
37  title = "SumEt Turn-On"
38  xAxis = "SumEt of Leading Generated %s (GeV/c)" % (objtype)
39  input_type = "gen%sSumEt" % (objtype)
40  if plot_type == "EffEta":
41  title = "#eta Efficiency"
42  xAxis = "#eta of Generated %s " % (objtype)
43  input_type = "gen%sEta" % (objtype)
44  if plot_type == "EffPhi":
45  title = "#phi Efficiency"
46  xAxis = "#phi of Generated %s " % (objtype)
47  input_type = "gen%sPhi" % (objtype)
48  if plot_type == "EffDxy":
49  title = "Dxy Efficiency"
50  xAxis = "Dxy of Generated %s " % (objtype)
51  input_type = "gen%sDxy" % (objtype)
52 
53  yAxis = "%s / %s" % (numer_description, denom_description)
54  all_titles = "%s for trigger %s; %s; %s" % (title, triggerpath,
55  xAxis, yAxis)
56  return "Eff_%s_%s '%s' %s_%s %s" % (input_type,triggerpath,
57  all_titles,input_type,triggerpath,input_type)
58 
59 # Adding the reco objects
60 def add_reco_strings(strings):
61  reco_strings = []
62  for entry in strings:
63  reco_strings.append(entry
64  .replace("Generated", "Reconstructed")
65  .replace("Gen", "Reco")
66  .replace("gen", "rec"))
67  strings.extend(reco_strings)
68 
69 
70 plot_types = ["TurnOn1", "TurnOn2", "TurnOn3", "TurnOn4", "EffEta", "EffPhi", "EffDxy"]
71 #--- IMPORTANT: Update this collection whenever you introduce a new object
72 # in the code (from EVTColContainer::getTypeString)
73 obj_types = ["Mu","refittedStandAloneMuons","Track","Ele","Photon","PFTau","PFJet","MET","PFMET","PFMHT","GenMET","CaloJet"
74  ,"CaloMET","l1MET"]
75 #--- IMPORTANT: Trigger are extracted from the hltExoticaValidator_cfi.py module
76 triggers = [ ]
77 efficiency_strings = []
78 
79 # Extract the triggers used in the hltExoticaValidator, for each path
80 from HLTriggerOffline.Exotica.hltExoticaValidator_cfi import hltExoticaValidator as _config
81 triggers = set([])
82 for an in _config.analysis:
83  s = _config.__getattribute__(an)
84  vstr = s.__getattribute__("hltPathsToCheck")
85  map(lambda x: triggers.add(x.replace("_v","")),vstr)
86 triggers = list(triggers)
87 print triggers
88 #------------------------------------------------------------
89 
90 # Generating the list with all the efficiencies
91 for type in plot_types:
92  for obj in obj_types:
93  for trig in triggers:
94  efficiency_strings.append(efficiency_string(obj,type,trig))
95 #for item in efficiency_strings:
96 # print item
97 
98 add_reco_strings(efficiency_strings)
99 
100 #--- IMPORTANT: Here you have to add the analyses one by one.
101 hltExoticaPostLowPtTrimuon = hltExoticaPostProcessor.clone()
102 hltExoticaPostLowPtTrimuon.subDirs = ['HLT/Exotica/LowPtTrimuon']
103 hltExoticaPostLowPtTrimuon.efficiencyProfile = efficiency_strings
104 
105 hltExoticaPostHighPtDimuon = hltExoticaPostProcessor.clone()
106 hltExoticaPostHighPtDimuon.subDirs = ['HLT/Exotica/HighPtDimuon']
107 hltExoticaPostHighPtDimuon.efficiencyProfile = efficiency_strings
108 
109 hltExoticaPostHighPtDielectron = hltExoticaPostProcessor.clone()
110 hltExoticaPostHighPtDielectron.subDirs = ['HLT/Exotica/HighPtDielectron']
111 hltExoticaPostHighPtDielectron.efficiencyProfile = efficiency_strings
112 
113 hltExoticaPostHighPtElectron = hltExoticaPostProcessor.clone()
114 hltExoticaPostHighPtElectron.subDirs = ['HLT/Exotica/HighPtElectron']
115 hltExoticaPostHighPtElectron.efficiencyProfile = efficiency_strings
116 
117 hltExoticaPostLowPtElectron = hltExoticaPostProcessor.clone()
118 hltExoticaPostLowPtElectron.subDirs = ['HLT/Exotica/LowPtElectron']
119 hltExoticaPostLowPtElectron.efficiencyProfile = efficiency_strings
120 
121 hltExoticaPostLowPtDimuon = hltExoticaPostProcessor.clone()
122 hltExoticaPostLowPtDimuon.subDirs = ['HLT/Exotica/LowPtDimuon']
123 hltExoticaPostLowPtDimuon.efficiencyProfile = efficiency_strings
124 
125 hltExoticaPostLowPtDielectron = hltExoticaPostProcessor.clone()
126 hltExoticaPostLowPtDielectron.subDirs = ['HLT/Exotica/LowPtDielectron']
127 hltExoticaPostLowPtDielectron.efficiencyProfile = efficiency_strings
128 
129 hltExoticaPostHighPtPhoton = hltExoticaPostProcessor.clone()
130 hltExoticaPostHighPtPhoton.subDirs = ['HLT/Exotica/HighPtPhoton']
131 hltExoticaPostHighPtPhoton.efficiencyProfile = efficiency_strings
132 
133 hltExoticaPostDiPhoton = hltExoticaPostProcessor.clone()
134 hltExoticaPostDiPhoton.subDirs = ['HLT/Exotica/DiPhoton']
135 hltExoticaPostDiPhoton.efficiencyProfile = efficiency_strings
136 
137 hltExoticaPostSingleMuon = hltExoticaPostProcessor.clone()
138 hltExoticaPostSingleMuon.subDirs = ['HLT/Exotica/SingleMuon']
139 hltExoticaPostSingleMuon.efficiencyProfile = efficiency_strings
140 
141 hltExoticaPostHT = hltExoticaPostProcessor.clone()
142 hltExoticaPostHT.subDirs = ['HLT/Exotica/HT']
143 hltExoticaPostHT.efficiencyProfile = efficiency_strings
144 
145 hltExoticaPostJetNoBptx = hltExoticaPostProcessor.clone()
146 hltExoticaPostJetNoBptx.subDirs = ['HLT/Exotica/JetNoBptx']
147 hltExoticaPostJetNoBptx.efficiencyProfile = efficiency_strings
148 
149 hltExoticaPostMuonNoBptx = hltExoticaPostProcessor.clone()
150 hltExoticaPostMuonNoBptx.subDirs = ['HLT/Exotica/MuonNoBptx']
151 hltExoticaPostMuonNoBptx.efficiencyProfile = efficiency_strings
152 
153 hltExoticaPostDisplacedMuEG = hltExoticaPostProcessor.clone()
154 hltExoticaPostDisplacedMuEG.subDirs = ['HLT/Exotica/DisplacedMuEG']
155 hltExoticaPostDisplacedMuEG.efficiencyProfile = efficiency_strings
156 
157 hltExoticaPostDisplacedDimuon = hltExoticaPostProcessor.clone()
158 hltExoticaPostDisplacedDimuon.subDirs = ['HLT/Exotica/DisplacedDimuon']
159 hltExoticaPostDisplacedDimuon.efficiencyProfile = efficiency_strings
160 
161 hltExoticaPostDisplacedL2Dimuon = hltExoticaPostProcessor.clone()
162 hltExoticaPostDisplacedL2Dimuon.subDirs = ['HLT/Exotica/DisplacedL2Dimuon']
163 hltExoticaPostDisplacedL2Dimuon.efficiencyProfile = efficiency_strings
164 
165 hltExoticaPostMonojet = hltExoticaPostProcessor.clone()
166 hltExoticaPostMonojet.subDirs = ['HLT/Exotica/Monojet']
167 hltExoticaPostMonojet.efficiencyProfile = efficiency_strings
168 
169 hltExoticaPostMonojetBackup = hltExoticaPostProcessor.clone()
170 hltExoticaPostMonojetBackup.subDirs = ['HLT/Exotica/MonojetBackup']
171 hltExoticaPostMonojetBackup.efficiencyProfile = efficiency_strings
172 
173 hltExoticaPostPureMET = hltExoticaPostProcessor.clone()
174 hltExoticaPostPureMET.subDirs = ['HLT/Exotica/PureMET']
175 hltExoticaPostPureMET.efficiencyProfile = efficiency_strings
176 
177 hltExoticaPostMETplusTrack = hltExoticaPostProcessor.clone()
178 hltExoticaPostMETplusTrack.subDirs = ['HLT/Exotica/METplusTrack']
179 hltExoticaPostMETplusTrack.efficiencyProfile = efficiency_strings
180 
181 hltExoticaDisplacedDimuonDijet = hltExoticaPostProcessor.clone()
182 hltExoticaDisplacedDimuonDijet.subDirs = ['HLT/Exotica/DisplacedDimuonDijet']
183 hltExoticaDisplacedDimuonDijet.efficiencyProfile = efficiency_strings
184 
185 hltExoticaEleMu = hltExoticaPostProcessor.clone()
186 hltExoticaEleMu.subDirs = ['HLT/Exotica/EleMu']
187 hltExoticaEleMu.efficiencyProfile = efficiency_strings
188 
189 hltExoticaPhotonMET = hltExoticaPostProcessor.clone()
190 hltExoticaPhotonMET.subDirs = ['HLT/Exotica/PhotonMET']
191 hltExoticaPhotonMET.efficiencyProfile = efficiency_strings
192 
193 hltExoticaHTDisplacedJets = hltExoticaPostProcessor.clone()
194 hltExoticaHTDisplacedJets.subDirs = ['HLT/Exotica/HTDisplacedJets']
195 hltExoticaHTDisplacedJets.efficiencyProfile = efficiency_strings
196 
197 hltExoticaPostProcessors = cms.Sequence(
198  # Tri-lepton paths
199  hltExoticaPostLowPtTrimuon +
200  # Di-lepton paths
201  hltExoticaPostHighPtDimuon +
202  hltExoticaPostHighPtDielectron +
203  hltExoticaPostLowPtDimuon +
204  hltExoticaPostLowPtDielectron +
205  # Single Lepton paths
206  hltExoticaPostHighPtElectron +
207  hltExoticaPostLowPtElectron +
208  # Photon paths
209  hltExoticaPostHighPtPhoton +
210  hltExoticaPostDiPhoton +
211  # HT path
212  hltExoticaPostHT +
213  # NoBptx paths
214  hltExoticaPostJetNoBptx +
215  hltExoticaPostMuonNoBptx +
216  # Displaced paths
217  hltExoticaPostDisplacedMuEG +
218  hltExoticaPostDisplacedDimuon +
219  hltExoticaPostDisplacedL2Dimuon +
220  # Others
221  hltExoticaPostMonojet +
222  hltExoticaPostMonojetBackup +
223  hltExoticaPostPureMET +
224  hltExoticaPostMETplusTrack +
225  hltExoticaDisplacedDimuonDijet +
226  hltExoticaEleMu +
227  hltExoticaPhotonMET +
228  hltExoticaHTDisplacedJets
229  )
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