Skip to content
Snippets Groups Projects

Remove obsolete ART jobs (ATLASSIM-5889)

Merged John Derek Chapman requested to merge jchapman/athena:FixATLASSIM-5889_22.0 into 22.0
1 file
+ 0
41
Compare changes
  • Side-by-side
  • Inline
#!/bin/sh
#
# art-description: MC16-style simulation using FullG4
# art-include: 21.0/Athena
# art-include: 21.3/Athena
# art-include: 21.9/Athena
# art-include: master/Athena
# art-type: grid
# art-output: test.HITS.pool.root
# art-output: truth.root
# MC16 setup
# ATLAS-R2-2016-01-00-01 and OFLCOND-MC16-SDR-14
AtlasG4_tf.py \
--conditionsTag 'default:OFLCOND-MC16-SDR-14' \
--physicsList 'FTFP_BERT_ATL' \
--truthStrategy 'MC15aPlus' \
--postInclude 'default:PyJobTransforms/UseFrontier.py' \
--preInclude 'AtlasG4Tf:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' \
--preExec 'AtlasG4Tf:simFlags.TightMuonStepping=True' \
--DataRunNumber '284500' \
--geometryVersion 'default:ATLAS-R2-2016-01-00-01' \
--inputEVNTFile "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/SimCoreTests/valid1.410000.PowhegPythiaEvtGen_P2012_ttbar_hdamp172p5_nonallhad.evgen.EVNT.e4993.EVNT.08166201._000012.pool.root.1" \
--outputHITSFile "test.HITS.pool.root" \
--maxEvents 1 \
--imf False \
--athenaopts '"--config-only=oldConfig.pkl"'
#--athenaopts '"--config-only=oldstyle_configMC16.pkl"'
rc=$?
rc2=-9999
echo "art-result: $rc simulation"
if [ $rc -eq 0 ]
then
ArtPackage=$1
ArtJobName=$2
art.py compare grid --entries 4 ${ArtPackage} ${ArtJobName} --mode=summary
rc2=$?
fi
echo "art-result: $rc2 regression"
Loading