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

Merge branch 'UpdateDigitizationFlagDefaults_master' into 'master'

Update default value of TRTRangeCut

See merge request atlas/athena!47609
parents a44f1264 893958b7
No related branches found
No related tags found
No related merge requests found
......@@ -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