Skip to content
Snippets Groups Projects

Sweeping !23729 from master to 21.0.Add ART test for Decaying Neutralino samples

Merged Sweeping !23729 from master to 21.0.Add ART test for Decaying Neutralino samples
Merged Atlas Nightlybuild requested to merge cherry-pick-c6a6a88a63-21.0 into 21.0
1 file
+ 38
0
Compare changes
  • Side-by-side
  • Inline
#!/bin/sh
#
# art-description: MC16-style simulation of decaying Neutralinos using FullG4 (tests sim response to many displaced “primary” particles)
# art-type: grid
# art-include: 21.0/Athena
# art-include: 21.0/AthSimulation
# art-include: 21.3/Athena
# art-include: 21.9/Athena
# art-include: master/Athena
# art-include: master/AthSimulation
# MC16 setup
# ATLAS-R2-2016-01-00-01 and OFLCOND-MC16-SDR-14
Sim_tf.py \
--conditionsTag 'default:OFLCOND-MC16-SDR-14' \
--physicsList 'FTFP_BERT_ATL' \
--truthStrategy 'MC15aPlusLLP' \
--simulator 'FullG4' \
--postInclude 'default:PyJobTransforms/UseFrontier.py' \
--preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' \
--DataRunNumber '284500' \
--geometryVersion 'default:ATLAS-R2-2016-01-00-01' \
--inputEVNTFile "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/SimCoreTests/mc15_13TeV.448168.MGPy8EG_A14NNPDF23LO_GG_qqn1_2400_850_rpvLF_p01ns.evgen.EVNT.e7245.EVNT.17092338._000002.pool.root.1" \
--outputHITSFile "Hits.pool.root" \
--maxEvents 10 \
--imf False
rc=$?
echo "art-result: $rc simulation"
rc2=-9999
if [ $rc -eq 0 ]
then
ArtPackage=$1
ArtJobName=$2
art.py compare grid --entries 10 ${ArtPackage} ${ArtJobName} --mode=summary
rc2=$?
fi
echo "art-result: $rc2 regression"
Loading