From 180c3ec93e01dce0255c416ad7e3382942307fd2 Mon Sep 17 00:00:00 2001 From: Ahmed Hasib <a.hasib@cern.ch> Date: Fri, 24 Jul 2020 08:51:10 +0000 Subject: [PATCH] fix ART job configuration * Remove wrong preExec from FullG4 * Add missing G4FastCaloSim --- .../test/test_MC16_G4FastCalo_ttbar.sh | 40 +++++++++++++++++++ .../test/test_Sim_FullG4_ttbar.sh | 4 +- 2 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 Simulation/ISF/ISF_Validation/test/test_MC16_G4FastCalo_ttbar.sh diff --git a/Simulation/ISF/ISF_Validation/test/test_MC16_G4FastCalo_ttbar.sh b/Simulation/ISF/ISF_Validation/test/test_MC16_G4FastCalo_ttbar.sh new file mode 100644 index 00000000000..7a1d99faab2 --- /dev/null +++ b/Simulation/ISF/ISF_Validation/test/test_MC16_G4FastCalo_ttbar.sh @@ -0,0 +1,40 @@ +#!/bin/sh +# +# art-description: MC16-style simulation using G4FastCalo +# 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 +Sim_tf.py \ +--conditionsTag 'default:OFLCOND-MC16-SDR-14' \ +--physicsList 'FTFP_BERT_ATL' \ +--truthStrategy 'MC15aPlus' \ +--simulator 'G4FastCalo' \ +--postInclude 'default:PyJobTransforms/UseFrontier.py' \ +--preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' \ +--preExec 'EVNTtoHITS:simFlags.TightMuonStepping=True' 'from ISF_FastCaloSimServices.ISF_FastCaloSimJobProperties import ISF_FastCaloSimFlags;ISF_FastCaloSimFlags.ParamsInputFilename="/cvmfs/atlas.cern.ch/repo/sw/database/GroupData/FastCaloSim/MC16/TFCSparam_v012.root"'\ +--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 4 \ +--imf False + +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=semi-detailed + rc2=$? +fi + +echo "art-result: $rc2 regression" diff --git a/Simulation/ISF/ISF_Validation/test/test_Sim_FullG4_ttbar.sh b/Simulation/ISF/ISF_Validation/test/test_Sim_FullG4_ttbar.sh index 19582090e25..1b129b68c04 100755 --- a/Simulation/ISF/ISF_Validation/test/test_Sim_FullG4_ttbar.sh +++ b/Simulation/ISF/ISF_Validation/test/test_Sim_FullG4_ttbar.sh @@ -21,9 +21,7 @@ Sim_tf.py \ --inputEVNTFile '/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ISF_Validation/mc12_valid.110401.PowhegPythia_P2012_ttbar_nonallhad.evgen.EVNT.e3099.01517252._000001.pool.root.1' \ --outputHITSFile 'test.HITS.pool.root' \ --maxEvents '4' \ ---imf False \ ---preExec 'from ISF_FastCaloSimServices.ISF_FastCaloSimJobProperties import ISF_FastCaloSimFlags;ISF_FastCaloSimFlags.ParamsInputFilename="/cvmfs/atlas.cern.ch/repo/sw/database/GroupData/FastCaloSim/MC16/TFCSparam_dev_weightedhits_v12.root"' - +--imf False rc=$? rc2=-9999 -- GitLab