ATLAS Offline Software
Loading...
Searching...
No Matches
JetCalibrationTool.cxx
Go to the documentation of this file.
1
2
3/*
4 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
5*/
6
7// JetCalibrationTool.cxx
8// Implementation file for class JetCalibrationTool
9// Author: Joe Taenzer <joseph.taenzer@cern.ch>
11
27
30
32 : asg::AsgMetadataTool( name )
33{
34 declareProperty( "JetCollection", m_jetAlgo = "AntiKt4LCTopo" );
35 declareProperty( "ConfigFile", m_config = "" );
36 declareProperty( "CalibSequence", m_calibSeq = "JetArea_Offset_AbsoluteEtaJES_Insitu" );
37 declareProperty( "IsData", m_isData = true );
38 declareProperty( "ForceCampaign", m_forceCampaign = "");
39 declareProperty( "ConfigDir", m_dir = "JetCalibTools/CalibrationConfigs/" );
40 declareProperty( "EventInfoName", m_eInfoName = "EventInfo");
41 declareProperty( "DEVmode", m_devMode = false);
42 declareProperty( "OriginScale", m_originScale = "JetOriginConstitScaleMomentum");
43 declareProperty( "CalibArea", m_calibAreaTag = "00-04-82");
44 declareProperty( "GSCDepth", m_gscDepth);
45 declareProperty( "useOriginVertex", m_useOriginVertex = false);
46 // Options to force files for metadata-dependent calibration in case metadata is not available
47 declareProperty( "ForceCalibFilePtResidual", m_forceCalibFile_PtResidual = "");
48 declareProperty( "ForceCalibFileFastSim", m_forceCalibFile_FastSim = "");
49 declareProperty( "ForceCalibFileMC2MC", m_forceCalibFile_MC2MC = "");
50}
51
57
58
60// Public methods:
62
64 ATH_MSG_INFO ("Initializing " << name() << " to calibrate " << m_jetAlgo << " jets. ");
65
66 TString jetAlgo = m_jetAlgo;
67 TString calibSeq = m_calibSeq;
68 std::string dir = m_dir;
69
70 //Make sure the necessary properties were set via the constructor or python configuration
71 if ( jetAlgo.EqualTo("") || calibSeq.EqualTo("") ) {
72 ATH_MSG_FATAL("JetCalibrationTool::initialize : At least one of your constructor arguments is not set. Did you use the copy constructor?");
73 return StatusCode::FAILURE;
74 }
75
76 if ( m_config.empty() ) { ATH_MSG_FATAL("No configuration file specified."); return StatusCode::FAILURE; }
77 // The calibration area tag is a property of the tool
78 const std::string calibPath = "CalibArea-" + m_calibAreaTag + "/";
79 if(m_devMode){
80 ATH_MSG_WARNING("Dev Mode is ON!!!");
81 ATH_MSG_WARNING("Dev Mode is NOT RECOMMENDED!!!");
82 dir = "JetCalibTools/";
83 }
84 else{dir.insert(14,calibPath);} // Obtaining the path of the configuration file
85 std::string configPath=dir+m_config; // Full path
86 TString fn = PathResolverFindCalibFile(configPath);
87 if(fn=="") {
88 ATH_MSG_FATAL( "Couldn't find ConfigFile " << configPath ); return StatusCode::FAILURE;
89 } else {
90 ATH_MSG_INFO("Reading global JES settings from: " << configPath);
91 ATH_MSG_INFO("resolved in: " << fn);
92 }
93
94 m_globalConfig = new TEnv();
95 int status=m_globalConfig->ReadFile(fn ,EEnvLevel(0));
96 if (status!=0) { ATH_MSG_FATAL("Cannot read config file " << fn ); return StatusCode::FAILURE; }
97
98 //Make sure that one of the standard jet collections is being used
99 if ( calibSeq.Contains("JetArea") ) {
100 if ( jetAlgo.Contains("PFlow") ) m_jetScale = PFLOW;
101 else if ( jetAlgo.Contains("EM") ) m_jetScale = EM;
102 else if ( jetAlgo.Contains("LC") ) m_jetScale = LC;
103 else { ATH_MSG_FATAL("jetAlgo " << jetAlgo << " not recognized."); return StatusCode::FAILURE; }
104 }
105
106 // Settings for R21/2.5.X
107 m_originCorrectedClusters = m_globalConfig->GetValue("OriginCorrectedClusters",false);
108 m_doSetDetectorEta = m_globalConfig->GetValue("SetDetectorEta",true);
109
110 // Rho key specified in the config file?
111 std::string rhoKey_config = m_globalConfig->GetValue("RhoKey", "None");
112
113 bool requireRhoInput = false;
114
115 //Make sure the residual correction is turned on if requested
116 if ( !calibSeq.Contains("JetArea") && !calibSeq.Contains("Residual") ) {
117 m_doJetArea = false;
118 m_doResidual = false;
119 } else if ( calibSeq.Contains("JetArea") ) {
120 if ( m_rhoKey.key().compare("auto") == 0 && rhoKey_config.compare("None") == 0) {
122 if ( m_jetScale == EM ) m_rhoKey = "Kt4EMTopoEventShape";
123 else if ( m_jetScale == LC ) m_rhoKey = "Kt4LCTopoEventShape";
124 else if ( m_jetScale == PFLOW ) m_rhoKey = "Kt4EMPFlowEventShape";
125 } else{
126 if ( m_jetScale == EM ) m_rhoKey = "Kt4EMTopoOriginEventShape";
127 else if ( m_jetScale == LC ) m_rhoKey = "Kt4LCTopoOriginEventShape";
128 else if ( m_jetScale == PFLOW ) m_rhoKey = "Kt4EMPFlowEventShape";
129 }
130 }
131 else if(rhoKey_config.compare("None") != 0 && m_rhoKey.key().compare("auto") == 0){
132 m_rhoKey = rhoKey_config;
133 }
134 requireRhoInput = true;
135 if ( !calibSeq.Contains("Residual") ) m_doResidual = false;
136 } else if ( !calibSeq.Contains("JetArea") && calibSeq.Contains("Residual") ) {
137 m_doJetArea = false;
138 ATH_MSG_INFO("ApplyOnlyResidual should be true if only Residual pile up correction wants to be applied. Need to specify pile up starting scale in the configuration file.");
139 }
140 // get nJet threshold and name
141 m_useNjetInResidual = m_globalConfig->GetValue("OffsetCorrection.UseNjet", false);
142 m_nJetThreshold = m_globalConfig->GetValue("OffsetCorrection.nJetThreshold", 20);
143 m_nJetContainerName = m_globalConfig->GetValue("OffsetCorrection.nJetContainerName",
144 "HLT_xAOD__JetContainer_a4tcemsubjesISFS");
145
146 if ( !calibSeq.Contains("Origin") ) m_doOrigin = false;
147 if ( !calibSeq.Contains("GSC") && !calibSeq.Contains("GNNC")) m_doGSC = false;
148 if ( !calibSeq.Contains("Bcid") ) m_doBcid = false;
149 if ( calibSeq.Contains("DNN") ) m_doDNNCal = true;
150
151 //Protect against the in-situ calibration being requested when isData is false
152 if ( calibSeq.Contains("Insitu") && !m_isData ) {
153 ATH_MSG_FATAL("JetCalibrationTool::initialize : calibSeq string contains Insitu with isData set to false. Can't apply in-situ correction to MC!!");
154 return StatusCode::FAILURE;
155 }
156
157 // Time-Dependent Insitu Calibration
158 m_timeDependentCalib = m_globalConfig->GetValue("TimeDependentInsituCalibration",false);
159 if(m_timeDependentCalib && calibSeq.Contains("Insitu")){ // Read Insitu Configs
160 m_timeDependentInsituConfigs = JetCalibUtils::Vectorize( m_globalConfig->GetValue("InsituTimeDependentConfigs","") );
161 if(m_timeDependentInsituConfigs.empty()) ATH_MSG_ERROR("Please check there are at least two insitu configs");
162 m_runBins = JetCalibUtils::VectorizeD( m_globalConfig->GetValue("InsituRunBins","") );
163 if(m_runBins.size()!=m_timeDependentInsituConfigs.size()+1) ATH_MSG_ERROR("Please check the insitu run bins");
164 for(unsigned int i=0;i<m_timeDependentInsituConfigs.size();++i){
165
166 std::string configPath_insitu = dir+m_timeDependentInsituConfigs.at(i).Data(); // Full path
167 TString fn_insitu = PathResolverFindCalibFile(configPath_insitu);
168
169 ATH_MSG_INFO("Reading time-dependent insitu settings from: " << m_timeDependentInsituConfigs.at(i));
170 ATH_MSG_INFO("resolved in: " << fn_insitu);
171
172 TEnv *globalConfig_insitu = new TEnv();
173 int status = globalConfig_insitu->ReadFile(fn_insitu ,EEnvLevel(0));
174 if (status!=0) { ATH_MSG_FATAL("Cannot read config file " << fn_insitu ); return StatusCode::FAILURE; }
175 m_globalTimeDependentConfigs.push_back(globalConfig_insitu);
176 }
177 }
178
179 //Combined Mass Calibration:
180 m_insituCombMassCalib = m_globalConfig->GetValue("InsituCombinedMassCorrection",false);
181 if(m_insituCombMassCalib && calibSeq.Contains("InsituCombinedMass")){ // Read Combination Config
182 m_insituCombMassConfig = JetCalibUtils::Vectorize( m_globalConfig->GetValue("InsituCombinedMassCorrectionFile","") );
183 if(m_insituCombMassConfig.empty()) ATH_MSG_ERROR("Please check there is a combination config");
184 for(unsigned int i=0;i<m_insituCombMassConfig.size();++i){
185
186 std::string configPath_comb = dir+m_insituCombMassConfig.at(i).Data(); // Full path
187 TString fn_comb = PathResolverFindCalibFile(configPath_comb);
188
189 ATH_MSG_INFO("Reading combination settings from: " << m_insituCombMassConfig.at(i));
190 ATH_MSG_INFO("resolved in: " << fn_comb);
191
192 TEnv *globalInsituCombMass = new TEnv();
193 int status = globalInsituCombMass->ReadFile(fn_comb ,EEnvLevel(0));
194 if (status!=0) { ATH_MSG_FATAL("Cannot read config file " << fn_comb ); return StatusCode::FAILURE; }
195 m_globalInsituCombMassConfig.push_back(globalInsituCombMass);
196 }
197 }
198
199 //Loop over the request calib sequence
200 //Initialize derived classes for applying the requested calibrations and add them to a vector
201 std::vector<TString> vecCalibSeq = JetCalibUtils::Vectorize(calibSeq,"_");
202 for ( unsigned int i=0; i<vecCalibSeq.size(); ++i) {
203 if ( vecCalibSeq[i].EqualTo("Origin") || vecCalibSeq[i].EqualTo("DEV") ) continue;
204 if ( vecCalibSeq[i].EqualTo("Residual") && m_doJetArea ) continue;
205 ATH_CHECK( getCalibClass(vecCalibSeq[i] ));
206 }
207
208 // Initialise ReadHandle(s)
209 ATH_CHECK( m_evtInfoKey.initialize() );
210 ATH_CHECK( m_muKey.initialize() );
211 ATH_CHECK( m_actualMuKey.initialize() );
212 ATH_CHECK( m_rhoKey.initialize(requireRhoInput) );
213 if(m_pvKey.empty()) {
214 // No PV key: -- check if it is required
215 if(m_doResidual) {
216 // May require modification in case of residual that does not require NPV
217 ATH_MSG_ERROR("Residual calibration requested but no primary vertex container specified!");
218 return StatusCode::FAILURE;
219 }
220 else if(m_doGSC) {
221 if(m_jetAlgo.find("PFlow")!=std::string::npos) {
222 ATH_MSG_ERROR("GSC calibration for PFlow requested but no primary vertex container specified!");
223 return StatusCode::FAILURE;
224 }
225 else if((m_gscDepth!="Tile0" && m_gscDepth!="EM3")) {
226 ATH_MSG_ERROR("GSC calibration with tracks requested but no primary vertex container specified!");
227 return StatusCode::FAILURE;
228 }
229 }
230 } else {
231 // Received a PV key, declare the data dependency
232 ATH_CHECK( m_pvKey.initialize() );
233 }
234 return StatusCode::SUCCESS;
235}
236
237//Method for initializing the requested calibration derived classes
238StatusCode JetCalibrationTool::getCalibClass(const TString& calibration) {
239 TString jetAlgo = m_jetAlgo;
240 const TString calibPath = "CalibArea-" + m_calibAreaTag + "/";
241
242 // Metadata needed to configure some corrections
243 TString generatorsInfo{};
244 TString simFlavour{};
245 float mcDSID{-1.0};
246 TString mcCampaign{};
247 if ( inputMetaStore()->contains<xAOD::FileMetaData>("FileMetaData") ) {
248 const xAOD::FileMetaData *fmd = nullptr;
249 ATH_CHECK(inputMetaStore()->retrieve(fmd,"FileMetaData") );
250
251 if(m_isData){
252 UInt_t dataYear = 0;
253 fmd->value(xAOD::FileMetaData::dataYear, dataYear);
254 if (dataYear >= 2015 && dataYear <= 2018) {
255 mcCampaign = "MC20";
256 } else if (dataYear >= 2022 && dataYear <= 2024) {
257 mcCampaign = "MC23";
258 } else {
259 ATH_MSG_WARNING("Data year " << dataYear << " not recognized from file metadata. The corresponding mcCampaign will not be known.");
260 }
261
262 } else { // is MC
263 std::string str_generatorsInfo;
264 fmd->value(xAOD::FileMetaData::generatorsInfo, str_generatorsInfo);
265 generatorsInfo = str_generatorsInfo;
266
267 std::string str_simFlavour;
268 fmd->value(xAOD::FileMetaData::simFlavour, str_simFlavour);
269 simFlavour = str_simFlavour;
270
271 fmd->value(xAOD::FileMetaData::mcProcID, mcDSID);
272
273 std::string str_mcCampaign;
274 fmd->value(xAOD::FileMetaData::mcCampaign, str_mcCampaign);
275 str_mcCampaign.resize(4); //Only keep top-level of campaign (e.g. mc20 or mc23)
276 mcCampaign = str_mcCampaign;
277 mcCampaign.ToUpper();
278
279 ATH_MSG_INFO("Have loaded metadata mcDSID:" << mcDSID << ", generatorsInfo: " << generatorsInfo << ", mcCampaign: " << mcCampaign << ", simFlavour: " << simFlavour);
280 }
281 }
282 // Force the MCCamapign (or data equivalent) for missing Metadata or tests
283 if( m_forceCampaign != "" ){
284 mcCampaign = m_forceCampaign;
285 }
286
287 if ( calibration.EqualTo("Bcid") ){
288 m_globalConfig->SetValue("PileupStartingScale","JetBcidScaleMomentum");
289 std::unique_ptr<JetCalibrationStep> bcidCorr = std::make_unique<BcidOffsetCorrection>(this->name()+"_Bcid", m_globalConfig, jetAlgo, calibPath, m_isData);
290 ATH_CHECK(bcidCorr->initialize());
291 m_calibSteps.push_back(std::move(bcidCorr));
292 return StatusCode::SUCCESS;
293 }
294 else if ( calibration.EqualTo("JetArea") || calibration.EqualTo("Residual") ) {
295 std::unique_ptr<JetCalibrationStep> puCorr = std::make_unique<JetPileupCorrection>(this->name()+"_Pileup", m_globalConfig, jetAlgo, calibPath,
297 puCorr->msg().setLevel( this->msg().level() );
298 ATH_CHECK(puCorr->initialize());
299 m_calibSteps.push_back(std::move(puCorr));
300 return StatusCode::SUCCESS;
301 }
302 else if ( calibration.EqualTo("EtaJES") || calibration.EqualTo("AbsoluteEtaJES") ) {
303 std::unique_ptr<JetCalibrationStep> etaJESCorr = std::make_unique<EtaJESCorrection>(this->name()+"_EtaJES", m_globalConfig, jetAlgo, calibPath, false, m_devMode);
304 etaJESCorr->msg().setLevel( this->msg().level() );
305 ATH_CHECK(etaJESCorr->initialize());
306 m_calibSteps.push_back(std::move(etaJESCorr));
307 return StatusCode::SUCCESS;
308 }
309 else if ( calibration.EqualTo("EtaMassJES") ) {
310 std::unique_ptr<JetCalibrationStep> etaJESCorr = std::make_unique<EtaJESCorrection>(this->name()+"_EtaMassJES", m_globalConfig, jetAlgo, calibPath, true, m_devMode);
311 etaJESCorr->msg().setLevel( this->msg().level() );
312 ATH_CHECK(etaJESCorr->initialize());
313 m_calibSteps.push_back(std::move(etaJESCorr));
314 return StatusCode::SUCCESS;
315 }
316 else if ( calibration.EqualTo("GSC") ) {
317 std::unique_ptr<JetCalibrationStep> gsc = std::make_unique<GlobalSequentialCorrection>(this->name()+"_GSC", m_globalConfig, jetAlgo, m_gscDepth, calibPath, m_useOriginVertex, m_devMode);
318 gsc->msg().setLevel( this->msg().level() );
319 ATH_CHECK(gsc->initialize());
320 m_calibSteps.push_back(std::move(gsc));
321
322 // Set devMode paths for the following corrections
323 TString actualCalibPath;
324 if(m_devMode){
325 actualCalibPath = "JetCalibTools/";
326 } else {
327 actualCalibPath = "JetCalibTool/CalibArea-" + m_calibAreaTag + "/";
328 }
329 // Additional FastSim and PtResidual patches happen after GSC
330 bool do_FastSim = m_globalConfig->GetValue("JPS_FastSim.doCalibration", false) || (m_forceCalibFile_FastSim != "");
331 if(m_isData and do_FastSim){
332 ATH_MSG_WARNING("JPS_FastSim.doCalibration is set in JetCalibrationTool config but isData is set to true. Will turn off FastSim calibration.");
333 do_FastSim = false;
334 }
335 if(do_FastSim){
336 if ( (m_forceCalibFile_FastSim == "") && !inputMetaStore()->contains<xAOD::FileMetaData>("FileMetaData") ) {
337 ATH_MSG_FATAL("JPS_FastSim.doCalibration is set in JetCalibrationTool config but file has no FileMetaData. Please fix the sample or configuration.");
338 return StatusCode::FAILURE;
339 }
340 std::unique_ptr<JetCalibrationStep> JPS_FastSim = std::make_unique<Generic4VecCorrection>(this->name()+"_FastSim", m_globalConfig, jetAlgo, actualCalibPath, m_forceCalibFile_FastSim, Generic4VecCorrection::JET_CORRTYPE::FASTSIM, mcCampaign, simFlavour);
341 JPS_FastSim->msg().setLevel( this->msg().level() );
342 ATH_CHECK(JPS_FastSim->initialize());
343 m_calibSteps.push_back(std::move(JPS_FastSim));
344 }
345 bool do_PtResidual = m_globalConfig->GetValue("JPS_PtResidual.doCalibration", false) || (m_forceCalibFile_PtResidual != "");
346 if(do_PtResidual){
347 std::unique_ptr<JetCalibrationStep> JPS_PtResidual = std::make_unique<Generic4VecCorrection>(this->name()+"_PtResidual", m_globalConfig, jetAlgo, actualCalibPath, m_forceCalibFile_PtResidual, Generic4VecCorrection::JET_CORRTYPE::PTRESIDUAL, mcCampaign);
348 JPS_PtResidual->msg().setLevel( this->msg().level() );
349 ATH_CHECK(JPS_PtResidual->initialize());
350 m_calibSteps.push_back(std::move(JPS_PtResidual));
351 }
352 return StatusCode::SUCCESS;
353 }
354 else if ( calibration.EqualTo("GNNC") ) {
355 std::unique_ptr<JetCalibrationStep> gnnc = std::make_unique<GlobalNNCalibration>(this->name()+"_GNNC",m_globalConfig,jetAlgo,calibPath,m_devMode);
356 gnnc->msg().setLevel( this->msg().level() );
357 ATH_CHECK(gnnc->initialize());
358 m_calibSteps.push_back(std::move(gnnc));
359 return StatusCode::SUCCESS;
360 }
361 else if ( calibration.EqualTo("MC2MC") ) {
362 // Set devMode paths for this correction
363 TString actualCalibPath;
364 if(m_devMode){
365 actualCalibPath = "JetCalibTools/";
366 } else {
367 actualCalibPath = "JetCalibTool/CalibArea-" + m_calibAreaTag + "/";
368 }
369 if ( !inputMetaStore()->contains<xAOD::FileMetaData>("FileMetaData") && (m_forceCalibFile_MC2MC == "") ) {
370 ATH_MSG_FATAL("MC2MC step of jet calibration is requested but file has no FileMetaData. Please fix the sample or configuration.");
371 return StatusCode::FAILURE;
372 }
373 std::unique_ptr<JetCalibrationStep> JPS_MC2MC = std::make_unique<Generic4VecCorrection>(this->name()+"_MC2MC", m_globalConfig, jetAlgo, actualCalibPath, m_forceCalibFile_MC2MC, Generic4VecCorrection::JET_CORRTYPE::MC2MC, mcCampaign, simFlavour, (int) mcDSID, generatorsInfo);
374 JPS_MC2MC->msg().setLevel( this->msg().level() );
375 ATH_CHECK(JPS_MC2MC->initialize());
376 m_calibSteps.push_back(std::move(JPS_MC2MC));
377 return StatusCode::SUCCESS;
378 }
379 else if ( calibration.EqualTo("JMS") ) {
380 std::unique_ptr<JetCalibrationStep> jetMassCorr = std::make_unique<JMSCorrection>(this->name()+"_JMS", m_globalConfig, jetAlgo, calibPath, m_devMode);
381 jetMassCorr->msg().setLevel( this->msg().level() );
382 ATH_CHECK(jetMassCorr->initialize());
383 m_calibSteps.push_back(std::move(jetMassCorr));
384 return StatusCode::SUCCESS;
385 }
386 else if ( calibration.EqualTo("InsituCombinedMass") ){
387 for(unsigned int i=0;i<m_insituCombMassConfig.size();++i){
388 std::unique_ptr<JetCalibrationStep> jetMassCorr = std::make_unique<JMSCorrection>(this->name()+"_InsituCombinedMass", m_globalInsituCombMassConfig.at(i), jetAlgo, calibPath, m_devMode);
389 jetMassCorr->msg().setLevel( this->msg().level() );
390 ATH_CHECK(jetMassCorr->initialize());
391 m_calibSteps.push_back(std::move(jetMassCorr));
392 }
393 return StatusCode::SUCCESS;
394 }
395 else if ( calibration.EqualTo("Insitu") ) {
397 std::unique_ptr<JetCalibrationStep> insituDataCorr = std::make_unique<InsituDataCorrection>(this->name()+"_Insitu", m_globalConfig, jetAlgo, calibPath, m_devMode);
398 insituDataCorr->msg().setLevel( this->msg().level() );
399 ATH_CHECK(insituDataCorr->initialize());
400 m_calibSteps.push_back(std::move(insituDataCorr));
401 return StatusCode::SUCCESS;
402 }
403 else{
404 ATH_MSG_INFO("Initializing Time-Dependent Insitu Corrections");
405 for(unsigned int i=0;i<m_timeDependentInsituConfigs.size();++i){
406 // Add 0.5 before casting to avoid floating-point precision issues
407 unsigned int firstRun = static_cast<unsigned int>(m_runBins.at(i)+1.5);
408 unsigned int lastRun = static_cast<unsigned int>(m_runBins.at(i+1)+0.5);
409 std::unique_ptr<JetCalibrationStep> insituDataCorr = std::make_unique<InsituDataCorrection>(this->name()+"_Insitu_"+std::to_string(i), m_globalTimeDependentConfigs.at(i), jetAlgo,
410 calibPath, m_devMode, firstRun, lastRun);
411 insituDataCorr->msg().setLevel( this->msg().level() );
412 ATH_CHECK(insituDataCorr->initialize());
413 m_calibSteps.push_back(std::move(insituDataCorr));
414 }
415 return StatusCode::SUCCESS;
416 }
417 }
418 else if ( calibration.EqualTo("Smear") ) {
419 if(m_isData){
420 ATH_MSG_FATAL("Asked for smearing of data, which is not supported. Aborting.");
421 return StatusCode::FAILURE;
422 }
423 std::unique_ptr<JetCalibrationStep> jetSmearCorr = std::make_unique<JetSmearingCorrection>(this->name()+"_Smear", m_globalConfig,jetAlgo,calibPath,m_devMode);
424 jetSmearCorr->msg().setLevel(this->msg().level());
425 ATH_CHECK(jetSmearCorr->initialize());
426 m_calibSteps.push_back(std::move(jetSmearCorr));
427 m_smearIndex = m_calibSteps.size() - 1;
428 return StatusCode::SUCCESS;
429 }
430 else if ( calibration.EqualTo("LargeRDNN") ) {
431 std::unique_ptr<JetCalibrationStep> largeR_dnn = std::make_unique<GlobalLargeRDNNCalibration>(this->name()+"_R10DNN", m_globalConfig,calibPath,m_devMode);
432 largeR_dnn->msg().setLevel(this->msg().level());
433 ATH_CHECK(largeR_dnn->initialize());
434 m_calibSteps.push_back(std::move(largeR_dnn));
435 return StatusCode::SUCCESS;
436 }
437 ATH_MSG_FATAL("Calibration string not recognized: " << calibration << ", aborting.");
438 return StatusCode::FAILURE;
439}
440
442 //Grab necessary event info for pile up correction and store it in a JetEventInfo class object
443 ATH_MSG_VERBOSE("Modifying jet collection.");
444 JetEventInfo jetEventInfo;
445 ATH_CHECK( initializeEvent(jetEventInfo) );
446 for (xAOD::Jet* jet : jets) ATH_CHECK( calibrate(*jet, jetEventInfo) );
447 return StatusCode::SUCCESS;
448}
449
450// Private/Protected Methods
452
453StatusCode JetCalibrationTool::initializeEvent(JetEventInfo& jetEventInfo) const {
454
455 // Check if the tool was initialized
456 if( m_calibSteps.empty() ){
457 ATH_MSG_FATAL(" JetCalibrationTool::initializeEvent : The tool was not initialized.");
458 return StatusCode::FAILURE;
459 }
460
461 // static accessor for PV index access
462 static const SG::AuxElement::ConstAccessor<int> PVIndexAccessor("PVIndex");
463
464 ATH_MSG_VERBOSE("Initializing event.");
465
466 if( m_doJetArea ) {
467 //Determine the rho value to use for the jet area subtraction
468 //Should be determined using EventShape object, use hard coded values if EventShape doesn't exist
469 double rho=0;
470 const xAOD::EventShape * eventShape = nullptr;
471
473
474 if ( rhRhoKey.isValid() ) {
475 ATH_MSG_VERBOSE(" Found event density container " << m_rhoKey.key());
476 eventShape = rhRhoKey.cptr();
477 if ( !rhRhoKey.isValid() ) {
478 ATH_MSG_VERBOSE(" Event shape container not found.");
479 ATH_MSG_FATAL("Could not retrieve the xAOD::EventShape container " << m_rhoKey.key() << " from the input file");
480 return StatusCode::FAILURE;
481 } else if ( !eventShape->getDensity( xAOD::EventShape::Density, rho ) ) {
482 ATH_MSG_VERBOSE(" Event density not found in container.");
483 ATH_MSG_FATAL("Could not retrieve the xAOD::EventShape::Density variable from " << m_rhoKey.key());
484 return StatusCode::FAILURE;
485 } else {
486 ATH_MSG_VERBOSE(" Event density retrieved.");
487 }
488 } else if ( m_doJetArea && !rhRhoKey.isValid() ) {
489 ATH_MSG_VERBOSE(" Rho container not found: " << m_rhoKey.key());
490 ATH_MSG_FATAL("Could not retrieve xAOD::EventShape container " << m_rhoKey.key() << " from the input file");
491 return StatusCode::FAILURE;
492 }
493 jetEventInfo.setRho(rho);
494 ATH_MSG_VERBOSE(" Rho = " << 0.001*rho << " GeV");
495
496 // Necessary retrieval and calculation for use of nJetX instead of NPV
498 // retrieve the container
499 const xAOD::JetContainer * jets = nullptr;
501 ATH_MSG_VERBOSE(" Found jet container " << m_nJetContainerName);
502 if ( evtStore()->retrieve(jets, m_nJetContainerName).isFailure() || !jets ) {
503 ATH_MSG_FATAL("Could not retrieve xAOD::JetContainer " << m_nJetContainerName << " from evtStore");
504 return StatusCode::FAILURE;
505 }
506 } else {
507 ATH_MSG_FATAL("Could not find jet container " << m_nJetContainerName << " in the evtStore");
508 return StatusCode::FAILURE;
509 }
510
511 // count jets above threshold
512 int nJets = 0;
513 for (const auto *jet : *jets) {
514 if(jet->pt()/1000. > m_nJetThreshold)
515 nJets += 1;
516 }
517 jetEventInfo.setNjet(nJets);
518 }
519 }
520
521 // Retrieve EventInfo object, which now has multiple uses
523 const xAOD::EventInfo * eventObj = nullptr;
524 static std::atomic<unsigned int> eventInfoWarnings = 0;
526 if ( rhEvtInfo.isValid() ) {
527 eventObj = rhEvtInfo.cptr();
528 } else {
529 ++eventInfoWarnings;
530 if ( eventInfoWarnings < 20 )
531 ATH_MSG_ERROR(" JetCalibrationTool::initializeEvent : Failed to retrieve event information.");
532 jetEventInfo.setMu(0); //Hard coded value mu = 0 in case of failure (to prevent seg faults later).
533 jetEventInfo.setPVIndex(0);
534 return StatusCode::SUCCESS; //error is recoverable, so return SUCCESS
535 }
536 jetEventInfo.setRunNumber( eventObj->runNumber() );
537
538 // If we are applying the reisdual, then store mu
539 if (m_doResidual || m_doBcid) {
541 if(!eventInfoDecor.isPresent()) {
542 ATH_MSG_ERROR("EventInfo decoration not available!");
543 return StatusCode::FAILURE;
544 }
545 jetEventInfo.setMu( eventInfoDecor(0) );
546 }
547
548 // If this is GSC, we need EventInfo to determine the PV to use
549 // This is support for groups where PV0 is not the vertex of interest (H->gamgam, etc)
550 if (m_doGSC)
551 {
552 // First retrieve the PVIndex if specified
553 // Default is to not specify this, so no warning if it doesn't exist
554 // However, if specified, it should be a sane value - fail if not
555 if ( m_doGSC && PVIndexAccessor.isAvailable(*eventObj) )
556 jetEventInfo.setPVIndex( PVIndexAccessor(*eventObj) );
557 else{
558 if(!m_pvKey.empty()){
559 const xAOD::VertexContainer * vertices = nullptr;
561 if (rhPV.isValid()) {
562 vertices = rhPV.cptr();
563 xAOD::VertexContainer::const_iterator vtx_itr = vertices->begin();
564 xAOD::VertexContainer::const_iterator vtx_end = vertices->end();
565 for ( ; vtx_itr != vtx_end; ++vtx_itr ){
566 if ( (*vtx_itr)->vertexType() == xAOD::VxType::PriVtx ){
567 jetEventInfo.setPVIndex((*vtx_itr)->index());
568 break;
569 }
570 }
571 }
572 else{
573 jetEventInfo.setPVIndex(0);
574 }
575 }
576 else{
577 jetEventInfo.setPVIndex(0);
578 }
579 }
580 }
581
582 // Extract the BCID information for the BCID correction
583 if (m_doBcid)
584 {
585 static const SG::ConstAccessor<int> BCIDDistanceFromFrontAcc ("DFCommonJets_BCIDDistanceFromFront");
586 static const SG::ConstAccessor<int> BCIDGapBeforeTrainAcc ("DFCommonJets_BCIDGapBeforeTrain");
587 static const SG::ConstAccessor<int> BCIDGapBeforeTrainMinus12Acc ("DFCommonJets_BCIDGapBeforeTrainMinus12");
588
589 jetEventInfo.setBcidDistanceFromFront( BCIDDistanceFromFrontAcc (*eventObj) );
590 jetEventInfo.setBcidGapBeforeTrain( BCIDGapBeforeTrainAcc (*eventObj) );
591 jetEventInfo.setBcidGapBeforeTrainMinus12( BCIDGapBeforeTrainMinus12Acc (*eventObj) );
592 }
593
594 // If PV index is not zero, we need to confirm it's a reasonable value
595 // To do this, we need the primary vertices
596 // However, other users of the GSC may not have the PV collection (in particular: trigger GSC in 2016)
597 // So only retrieve vertices if needed for NPV (residual) or a non-zero PV index was specified (GSC)
598 if ((m_doResidual && !m_useNjetInResidual) || (m_doGSC && jetEventInfo.PVIndex()))
599 {
600 //Retrieve VertexContainer object, use it to obtain NPV for the residual correction or check validity of GSC non-PV0 usage
601 const xAOD::VertexContainer * vertices = nullptr;
602
604 if (rhPV.isValid()) {
605 vertices = rhPV.cptr();
606 } else {
607 ATH_MSG_WARNING(" JetCalibrationTool::initializeEvent : Failed to retrieve primary vertices.");
608 jetEventInfo.setNPV(0); //Hard coded value NPV = 0 in case of failure (to prevent seg faults later).
609 return StatusCode::SUCCESS; //error is recoverable, so return SUCCESS
610 }
611
612 // Calculate and set NPV if this is residual
613 if (m_doResidual)
614 {
615 int eventNPV = 0;
616 eventNPV = std::count_if(vertices->begin(), vertices->end(), [](const xAOD::Vertex* vtx){ return vtx->vertexType() == xAOD::VxType::PileUp || vtx->vertexType() == xAOD::VxType::PriVtx;});
617 jetEventInfo.setNPV(eventNPV);
618 }
619
620 // Validate value of non-standard PV index usage
621 if (m_doGSC && jetEventInfo.PVIndex())
622 {
623 static std::atomic<unsigned int> vertexIndexWarnings = 0;
624 if (jetEventInfo.PVIndex() < 0 || static_cast<size_t>(jetEventInfo.PVIndex()) >= vertices->size())
625 {
626 ++vertexIndexWarnings;
627 if (vertexIndexWarnings < 20)
628 ATH_MSG_WARNING(" JetCalibrationTool::initializeEvent : PV index is out of bounds.");
629 jetEventInfo.setPVIndex(0); // Hard coded value PVIndex = 0 in case of failure (to prevent seg faults later).
630 return StatusCode::SUCCESS; // error is recoverable, so return SUCCESS
631 }
632 }
633 }
634 } else if (m_doDNNCal) {
635 // retrieve mu and NPV only from eventInfo
636 static std::atomic<unsigned int> eventInfoWarningsMu = 0;
638 if ( rhEvtInfo.isValid() ) {
640 jetEventInfo.setMu(eventInfoDecor(0));
641 } else {
642 ++eventInfoWarningsMu;
643 if ( eventInfoWarningsMu < 20 ) ATH_MSG_WARNING(" JetCalibrationTool::initializeEvent : Failed to retrieve event information.");
644 jetEventInfo.setMu(0); //Hard coded value mu = 0 in case of failure (to prevent seg faults later).
645 }
646
647 static std::atomic<unsigned int> eventInfoWarningsPV = 0;
648 const xAOD::VertexContainer * vertices = nullptr;
650 if (rhPV.isValid()) {
651 vertices = rhPV.cptr();
652 int eventNPV = 0;
653 eventNPV = std::count_if(vertices->begin(), vertices->end(), [](const xAOD::Vertex* vtx){ return vtx->vertexType() == xAOD::VxType::PileUp || vtx->vertexType() == xAOD::VxType::PriVtx;});
654 jetEventInfo.setNPV(eventNPV);
655 } else {
656 ++eventInfoWarningsPV;
657 if ( eventInfoWarningsPV < 20 ) ATH_MSG_WARNING(" JetCalibrationTool::initializeEvent : Failed to retrieve primary vertices.");
658 jetEventInfo.setNPV(0); //Hard coded value NPV = 0 in case of failure (to prevent seg faults later).
659 }
660 }
661 return StatusCode::SUCCESS;
662}
663
664StatusCode JetCalibrationTool::calibrate(xAOD::Jet& jet, JetEventInfo& jetEventInfo) const {
665
666 //Check for OriginCorrected and PileupCorrected attributes, assume they are false if not found
667 int tmp = 0; //temporary int for checking getAttribute
668 if ( !jet.getAttribute<int>("OriginCorrected",tmp) )
669 jet.setAttribute<int>("OriginCorrected",false);
670 if ( !jet.getAttribute<int>("PileupCorrected",tmp) )
671 jet.setAttribute<int>("PileupCorrected",false);
672
673 ATH_MSG_VERBOSE("Calibrating jet " << jet.index());
675 xAOD::JetFourMom_t jetconstitP4 = jet.getAttribute<xAOD::JetFourMom_t>("JetConstitScaleMomentum");
676 jet.setAttribute<float>("DetectorEta",jetconstitP4.eta()); //saving constituent scale eta for later use
677 }
678
679 for (unsigned int i=0; i<m_calibSteps.size(); ++i) ATH_CHECK(m_calibSteps[i]->calibrate(jet, jetEventInfo));
680
681 return StatusCode::SUCCESS;
682}
683
684
685StatusCode JetCalibrationTool::getNominalResolutionData(const xAOD::Jet& jet, double& resolution) const{
686
687 if(m_smearIndex < 0){
688 ATH_MSG_ERROR("Requested jet resolution without a smearing step in the CalibSequence!");
689 return StatusCode::FAILURE;
690 }
691 return m_calibSteps.at(m_smearIndex)->getNominalResolutionData(jet, resolution);
692}
693
694StatusCode JetCalibrationTool::getNominalResolutionMC(const xAOD::Jet& jet, double& resolution) const{
695
696 if(m_smearIndex < 0){
697 ATH_MSG_ERROR("Requested jet resolution without a smearing step in the CalibSequence!");
698 return StatusCode::FAILURE;
699 }
700 return m_calibSteps.at(m_smearIndex)->getNominalResolutionMC(jet, resolution);
701}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_FATAL(x)
#define ATH_MSG_INFO(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
Handle class for reading a decoration on an object.
Helper class to provide constant type-safe access to aux data.
std::string PathResolverFindCalibFile(const std::string &logical_file_name)
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
ServiceHandle< StoreGateSvc > & evtStore()
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
size_type size() const noexcept
Returns the number of elements in the collection.
JetCalibrationTool(const std::string &name="JetCalibrationTool")
Constructor with parameters:
std::vector< double > m_runBins
std::vector< TString > m_timeDependentInsituConfigs
SG::ReadHandleKey< xAOD::EventInfo > m_evtInfoKey
StatusCode calibrate(xAOD::Jet &jet, JetEventInfo &jetEventInfo) const
SG::ReadDecorHandleKey< xAOD::EventInfo > m_muKey
std::vector< TString > m_insituCombMassConfig
SG::ReadHandleKey< xAOD::EventShape > m_rhoKey
SG::ReadHandleKey< xAOD::VertexContainer > m_pvKey
std::vector< TEnv * > m_globalTimeDependentConfigs
std::vector< std::unique_ptr< JetCalibrationStep > > m_calibSteps
StatusCode initialize() override
Dummy implementation of the initialisation function.
std::string m_forceCalibFile_FastSim
StatusCode getNominalResolutionData(const xAOD::Jet &jet, double &resolution) const override
std::string m_forceCalibFile_PtResidual
StatusCode initializeEvent(JetEventInfo &jetEventInfo) const
StatusCode applyCalibration(xAOD::JetContainer &) const override
Apply calibration to a jet container.
std::string m_forceCalibFile_MC2MC
StatusCode getNominalResolutionMC(const xAOD::Jet &jet, double &resolution) const override
StatusCode getCalibClass(const TString &calibration)
~JetCalibrationTool()
Destructor:
std::string m_nJetContainerName
SG::ReadDecorHandleKey< xAOD::EventInfo > m_actualMuKey
std::vector< TEnv * > m_globalInsituCombMassConfig
void setBcidDistanceFromFront(Int_t BcidDistanceFromFront)
void setRho(double rho)
void setBcidGapBeforeTrainMinus12(Int_t BcidGapBeforeTrainMinus12)
void setMu(double mu)
void setPVIndex(int PVindex)
void setRunNumber(UInt_t RunNumber)
void setBcidGapBeforeTrain(Int_t BcidGapBeforeTrain)
void setNjet(double nJet)
void setNPV(double NPV)
SG::ConstAccessor< T, ALLOC > ConstAccessor
Definition AuxElement.h:569
Helper class to provide constant type-safe access to aux data.
bool isAvailable(const ELT &e) const
Test to see if this variable exists in the store.
Handle class for reading a decoration on an object.
bool isPresent() const
Is the referenced container present in SG?
virtual bool isValid() override final
Can the handle be successfully dereferenced?
const_pointer_type cptr()
Dereference the pointer.
AsgMetadataTool(const std::string &name)
Normal ASG tool constructor with a name.
MetaStorePtr_t inputMetaStore() const
Accessor for the input metadata store.
uint32_t runNumber() const
The current event's run number.
bool getDensity(EventDensityID id, double &v) const
Get a density variable from the object.
@ mcProcID
Same as mc_channel_number [float].
@ generatorsInfo
Generators information [string].
@ mcCampaign
MC campaign [string].
@ dataYear
Data year [uint32_t].
@ simFlavour
Fast or Full sim [string].
bool value(MetaDataType type, std::string &val) const
Get a pre-defined string value out of the object.
bool contains(const std::string &s, const std::string &regx)
does a string contain the substring
Definition hcg.cxx:114
StrV Vectorize(const TString &str, const TString &sep=" ")
VecD VectorizeD(const TString &str, const TString &sep=" ")
@ PriVtx
Primary vertex.
Jet_v1 Jet
Definition of the current "jet version".
EventInfo_v1 EventInfo
Definition of the latest event info version.
VertexContainer_v1 VertexContainer
Definition of the current "Vertex container version".
Vertex_v1 Vertex
Define the latest version of the vertex class.
EventShape_v1 EventShape
Definition of the current event format version.
Definition EventShape.h:16
FileMetaData_v1 FileMetaData
Declare the latest version of the class.
JetContainer_v1 JetContainer
Definition of the current "jet container version".
ROOT::Math::LorentzVector< ROOT::Math::PtEtaPhiM4D< double > > JetFourMom_t
Base 4 Momentum type for Jet.
Definition JetTypes.h:17
MsgStream & msg
Definition testRead.cxx:32