113def getJetCalibTool(jetdef, context, data_type, calibseq = "", rhoname = "", pvname = "PrimaryVertices", gscdepth = "auto"):
114
115 jetcollection = jetdef.basename
116
117
118 if data_type not in ['data','mc','afii']:
119 jetcaliblog.error("JetCalibConfig accepts data_type values: 'data', 'mc', 'afii'")
120 raise ValueError("Unsupported data_type provided: '{0}".format(data_type))
121
122 if jetcollection.endswith("Jets"):
123 jetcaliblog.error("Jet collection '{0}'should be specified w/o 'Jets' in the name.".format(jetcollection))
124 raise ValueError("Bad jet collection formatting in getJetCalibTool.")
125
126 jetcaliblog.debug("Preparing calibration for {0}, in context {1} on sample type {2}".format(jetcollection,context,data_type))
127
128 jetcontexts = calibcontexts[jetcollection]
129
130 if jetcollection == "AntiKt4EMTopo" and context == "T0":
131 if jetdef._cflags.GeoModel.Run >= LHCPeriod.Run4:
132 context = "HLLHC"
133
134 try:
135 configfile, calibarea, calibseq_def = jetcontexts[context]
136 _calibseq = calibseq if calibseq else calibseq_def
137
138
139
140
141 if _calibseq.endswith("Insitu"):
142 if data_type == 'data':
143 if jetcollection not in hasInSitu:
144 raise ValueError("In situ calibration does not exist for {0}, context {1}".format(jetcollection,context))
145 else:
146 raise ValueError("In situ calibration requested for MC on {0}, context {1}".format(jetcollection,context))
147 _configfile = configfile
148 if data_type == "afii" and jetcollection in af2configs.keys():
149 _configfile = af2configs[jetcollection]
150 _data_type = data_type
151
152
153
154 if context == "T0":
155 _data_type = "data"
156 _pvname = ""
157 if "Residual" in _calibseq or "GSC" in _calibseq and gscdepth!="EM3" or "LargeRDNN" in _calibseq:
158 _pvname = pvname
159
160 if context == "TrigHIUPC":
161 _pvname = pvname
162
163 _jetcollection = jetcollection
164 if "PFlow" in jetcollection and (context=="TrigSoftDrop" or context=="TrigHLTSoftDrop"):
165 _jetcollection = jetcollection.replace("EMPFlow","UFO")
166 if "_noElectrons" in jetcollection :
167 _jetcollection = _jetcollection.replace("_noElectrons","")
168 if "_noMuons" in jetcollection :
169 _jetcollection = _jetcollection.replace("_noMuons","")
170 if "_noLeptons" in jetcollection :
171 _jetcollection = _jetcollection.replace("_noLeptons","")
172 if "_tauSeedEleRM" in jetcollection :
173 _jetcollection = _jetcollection.replace("_tauSeedEleRM","")
174
175 if "ByVertex" in jetcollection:
176 _jetcollection = jetcollection.replace("ByVertex","")
177 return defineJetCalibTool(_jetcollection, context, _configfile, calibarea, _calibseq, _data_type, rhoname, _pvname, gscdepth)
178 except KeyError as e:
179 jetcaliblog.error("Context '{0}' not found for jet collection '{1}'".format(context,jetcollection))
180 jetcaliblog.error("Options are '{0}".format(','.join(jetcontexts.keys())))
181 raise e
182 return None
183
184