Skip to content
Snippets Groups Projects

Sweeping !49358 from 22.0-mc20 to master. TCT: Updated references for the data Run2 reprocessing tests

Closed Sweeping !49358 from 22.0-mc20 to master. TCT: Updated references for the data Run2 reprocessing tests
Closed Atlas Nightlybuild requested to merge cherry-pick-cc74fd37918-master into master
4 files
+ 180
0
Compare changes
  • Side-by-side
  • Inline
Files
4
#!/bin/bash
#
# art-description: Reco_tf.py data15 RAWtoALL in MT mode
# art-type: grid
# art-include: master/Athena
# art-include: 22.0-mc20/Athena
# art-athena-mt: 8
# Updated on 7.12.2021 based on the tag r13100 which is currently used for Run2 Reprocessing
timeout 64800 Reco_tf.py \
--inputBSFile=/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data15_13TeV.00276689.physics_Main.daq.RAW._lb0220._SFO-1._0001.data \
--outputAODFile=myAOD.pool.root \
--outputHISTFile=myHIST.root \
--outputDESDM_MCPFile=myDESDM_MCP.pool.root \
--outputDRAW_ZMUMUFile=myDRAW_ZMUMU.data \
--outputDAOD_IDTIDEFile=myIDTIDE.pool.root \
--multithreaded='True' \
--preExec 'all:from AthenaCommon.AthenaCommonFlags import athenaCommonFlags; from InDetRecExample.InDetJobProperties import InDetFlags; from RecExConfig.RecFlags import rec; InDetFlags.useMuForTRTErrorScaling.set_Value_and_Lock(True if not rec.doRDOTrigger else False); from AthenaMonitoring.DQMonFlags import DQMonFlags; DQMonFlags.doHLTMon=False;' \
--autoConfiguration='everything' \
--conditionsTag 'all:CONDBR2-BLKPA-RUN2-09' --geometryVersion='default:ATLAS-R2-2016-01-00-01' \
--runNumber='357750' --steering='doRAWtoALL' --maxEvents=200 --imf False
rc1=$?
echo "art-result: $rc1 Reco_tf_data15_mt"
rc2=-9999
if [ ${rc1} -eq 0 ]
then
ArtPackage=$1
ArtJobName=$2
art.py compare grid --entries 30 ${ArtPackage} ${ArtJobName} --mode=semi-detailed --order-trees --ignore-exit-code diff-pool
rc2=$?
fi
echo "art-result: ${rc2} Comparison with the latest result"
rc3=-9999
if [ ${rc1} -eq 0 ]
then
art.py compare ref . /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/TCT_Run2Reprocessing_references_for_comparison/test_data15_2021-12-09T2101 --entries 30 --mode=semi-detailed --order-trees --ignore-exit-code diff-pool
rc3=$?
fi
echo "art-result: ${rc3} Comparison with fixed reference"
Loading