diff --git a/HLT/Trigger/TrigTransforms/TrigTransform/README.md b/HLT/Trigger/TrigTransforms/TrigTransform/README.md index 8912350b6f1dd0fe030359909bcdee62351968eb..0a2cc455b1e39926784f12241bd0e5e59585b5ec 100644 --- a/HLT/Trigger/TrigTransforms/TrigTransform/README.md +++ b/HLT/Trigger/TrigTransforms/TrigTransform/README.md @@ -22,3 +22,11 @@ When running the debug stream recovery there is an additional output file produc rerunning the trigger. Also the input file is used to make sure exactly the same release is used to reprocess the data, unless any local patches are included in the setup. +### Examples + +The transform is tested in the nightly tests and these give examples of which options are to be used: +- [test_trigP1_v1PhysP1_T0MonTrf_build.py](https://gitlab.cern.ch/atlas/athena/-/blob/master/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0MonTrf_build.py) Running steps from BS as in Trigger Reprocessings +- [test_trigP1_v1PhysP1_trfDbgStream_build.py](https://gitlab.cern.ch/atlas/athena/-/blob/master/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_trfDbgStream_build.py) Running the transform in the debug recovery mode + + + diff --git a/HLT/Trigger/TrigTransforms/TrigTransform/python/trigRecoExe.py b/HLT/Trigger/TrigTransforms/TrigTransform/python/trigRecoExe.py index 8dd2e043362755ccaf30c27dd665d9500fcf8ea9..b6bc8329e6e4cbe3c9c7f68f1a232d0028888500 100644 --- a/HLT/Trigger/TrigTransforms/TrigTransform/python/trigRecoExe.py +++ b/HLT/Trigger/TrigTransforms/TrigTransform/python/trigRecoExe.py @@ -251,7 +251,7 @@ class trigRecoExecutor(athenaExecutor): msg.error('Failed to open transform logfile {0}: {1:s}'.format(log, e)) for line, lineCounter in myGen: # Check to see if any of the hlt children had an issue - if 'Child Issue' in line > -1: + if 'Child Issue' in line: try: signal = int((re.search('signal ([0-9]*)', line)).group(1)) except AttributeError: