Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Activate IrradiationBiasCorrection in Pixel CPE generic for Run3 #27183

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Configuration/AlCa/python/autoCond.py
Expand Up @@ -66,9 +66,9 @@
# GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2021
'phase1_2021_design' : '106X_upgrade2021_design_v3', # GT containing design conditions for Phase1 2021
mmusich marked this conversation as resolved.
Show resolved Hide resolved
# GlobalTag for MC production with realistic conditions for Phase1 2021
'phase1_2021_realistic' : '106X_upgrade2021_realistic_v7', # GT containing realistic conditions for Phase1 2021
'phase1_2021_realistic' : '106X_upgrade2021_realistic_Candidate_2019_06_17_18_50_50', # GT containing realistic conditions for Phase1 2021
# GlobalTag for MC production (cosmics) with realistic conditions for Phase1 2021, Strip tracker in DECO mode
'phase1_2021_cosmics' : '106X_upgrade2021cosmics_realistic_deco_v2',
'phase1_2021_cosmics' : '106X_upgrade2021cosmics_realistic_deco_Candidate_2019_06_17_19_08_59',
# GlobalTag for MC production with realistic conditions for Phase2 2023
'phase2_realistic' : '106X_upgrade2023_realistic_v5'
}
Expand Down
Expand Up @@ -59,6 +59,11 @@
MagneticFieldRecord = cms.ESInputTag(""),
)

# This customizes the Run3 Pixel CPE generic reconstruction in order to activate the IrradiationBiasCorrection
# because of the expected resolution loss due to radiation damage
from Configuration.Eras.Modifier_run3_common_cff import run3_common
run3_common.toModify(PixelCPEGenericESProducer, IrradiationBiasCorrection = True)

# This customization will be removed once we get the templates for phase2 pixel
# FIXME::Is the Upgrade variable actually used?
from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
Expand All @@ -71,4 +76,3 @@
DoCosmics = False,
Upgrade = cms.bool(True)
)