diff --git a/Reconstruction/Jet/JetValidation/test/test_jet.sh b/Reconstruction/Jet/JetValidation/test/test_jet.sh new file mode 100755 index 0000000000000000000000000000000000000000..1ce0bd15815be4dd09dfc967f0f11d73f736313c --- /dev/null +++ b/Reconstruction/Jet/JetValidation/test/test_jet.sh @@ -0,0 +1,34 @@ +#!/bin/sh +# art-description: ART test job HITS to AOD +# art-type: grid +# art-input: mc16_13TeV.410470.PhPy8EG_A14_ttbar_hdamp258p75_nonallhad.simul.HITS.e6337_s3126 +# art-include: master/Athena +# art-output: *.root + +ART_PATH="/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/" +ART_FILE="mc16_13TeV.410470.PhPy8EG_A14_ttbar_hdamp258p75_nonallhad.simul.HITS.e6337_s3126/HITS.12860054._032508.pool.root.1" +HITSFile="${ART_PATH}${ART_FILE}" +echo "Input HITS file for : ${HITSFile}" + +Nevents=3000 +echo "Number of test events : ${Nevents}" + +ART_AOD="nightly_jet.AOD.pool.root" +echo "Output AOD file : ${ART_AOD}" + +ART_Validation="nightly_jet.PHYSVAL.root" +echo "Output Validation file : ${ART_Validation}" + +echo "Submitting Reconstruction ..." + +Reco_tf.py \ + --maxEvents ${Nevents} \ + --inputHITSFile=${HITSFile} \ + --outputAODFile=${ART_AOD} \ + --outputNTUP_PHYSVALFile ${ART_Validation} \ + --validationFlags noExample \ + --autoConfiguration everything \ + --preExec 'from RecExConfig.RecFlags import rec;rec.doTrigger=False' \ + direct + +echo "art-result: $? Reco"