Skip to content
Snippets Groups Projects
Commit 48ecfbd4 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'UpdateDigitizationFlagDefaults_master' into 'master'

Update default value of TRTRangeCut

See merge request !47609
parents a44f1264 893958b7
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