Skip to content
Snippets Groups Projects
Commit 893958b7 authored by John Chapman's avatar John Chapman
Browse files

Update default value of TRTRangeCut

Update default value of TRTRangeCut from 0.05 to 30.0 - this has been set in a preExec since
MC16, so there is no reason not to update the default in the python now.
parent 633d722b
No related branches found
No related tags found
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!47609Update default value of TRTRangeCut
......@@ -51,7 +51,7 @@ def createDigitizationCfgFlags():
flags.addFlag("Digitization.PileUp", False)
# TRT Range cut used in simulation in mm. Should be 0.05 or 30.
flags.addFlag("Digitization.TRTRangeCut",
lambda prevFlags: float(GetFileMD(prevFlags.Input.Files).get('TRTRangeCut', 0.05)))
lambda prevFlags: float(GetFileMD(prevFlags.Input.Files).get('TRTRangeCut', 30.0)))
# Temporary TGC flag
flags.addFlag("Digitization.UseUpdatedTGCConditions", False)
# Write out truth information?
......
......@@ -733,7 +733,7 @@ class TRTRangeCut(JobProperty):
statusOn=True
allowedTypes=['float']
allowedValues = [0.05,30.0]
StoredValue=0.05
StoredValue=30.0
#
class UseUpdatedTGCConditions(JobProperty):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment