Skip to content
Snippets Groups Projects
Commit 3aa9154a authored by Christina Nelson's avatar Christina Nelson
Browse files

first ART script for jet reco HITS to AOD

parent de091246
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!37745ART script for jet reco HITS to AOD
#!/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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment