Skip to content
Snippets Groups Projects
Commit 1f29426c authored by Carlo Varni's avatar Carlo Varni Committed by Adam Edward Barton
Browse files

Use the same command as used in Acts SPOT also in the CI

Use the same command as used in Acts SPOT also in the CI
parent a73304aa
4 merge requests!66406ZDC & ZDC LED monitoring updates,!66102ZDC & RPD monitoring update,!65937Draft: Updated post-processing and plotting scripts for 2023 data in ZLumi_Scripts directory,!65575Use the same command as used in Acts SPOT also in the CI
......@@ -267,7 +267,8 @@ atlas_add_citest( ACTS_ActsGSFRefitting
SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/test/ActsGSFRefitting.sh )
atlas_add_citest( ACTS_ActsBenchmarkWithSpot
SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/test/ActsBenchmarkWithSpot.sh )
SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/test/ActsBenchmarkWithSpot.sh 8 100
PROPERTIES PROCESSOR 8)
#################################################################################
# Trigger
......
#!/usr/bin/bash
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
# ttbar mu=200 input
input_rdo=/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/PhaseIIUpgrade/RDO/ATLAS-P2-RUN4-03-00-00/mc21_14TeV.601229.PhPy8EG_A14_ttbar_hdamp258p75_SingleLep.recon.RDO.e8481_s4149_r14700/RDO.33629020._000047.pool.root.1
n_events=10
NTHREADS=${1}
NEVENTS=${2}
DATADIR="/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/PhaseIIUpgrade/RDO"
# Run the job
export TRF_ECHO=1;
ATHENA_CORE_NUMBER=${NTHREADS} Reco_tf.py \
--CA 'all:True' \
--maxEvents ${NEVENTS} \
--perfmon 'fullmonmt' \
--multithreaded 'True' \
--autoConfiguration 'everything' \
--conditionsTag 'all:OFLCOND-MC15c-SDR-14-05' \
--geometryVersion 'all:ATLAS-P2-RUN4-03-00-00' \
--postInclude 'all:PyJobTransforms.UseFrontier' \
--preInclude "InDetConfig.ConfigurationHelpers.OnlyTrackingPreInclude,ActsConfig.ActsCIFlags.actsBenchmarkSpotFlags" \
--steering 'doRAWtoALL' \
--preExec 'all:ConfigFlags.Tracking.doITkFastTracking=False' \
--postExec 'all:cfg.getService("AlgResourcePool").CountAlgorithmInstanceMisses = True;cfg.getEventAlgo("ActsTrkITkPixelClusterizationAlg").PixelClustersKey="xAODpixelClusters";cfg.getEventAlgo("ActsTrkITkStripClusterizationAlg").StripClustersKey="xAODstripClusters";' \
--inputRDOFile ${DATADIR}"/ATLAS-P2-RUN4-03-00-00/mc21_14TeV.601229.PhPy8EG_A14_ttbar_hdamp258p75_SingleLep.recon.RDO.e8481_s4149_r14700/*" \
--outputAODFile 'myAOD.pool.root' \
--jobNumber '1'
Reco_tf.py --CA \
--preExec "flags.Exec.FPE=500;" \
--preInclude "InDetConfig.ConfigurationHelpers.OnlyTrackingPreInclude,ActsConfig.ActsCIFlags.actsBenchmarkSpotFlags" \
--postExec "cfg.getEventAlgo(\"ActsTrkITkPixelClusterizationAlg\").PixelClustersKey=\"xAODpixelClusters\";cfg.getEventAlgo(\"ActsTrkITkStripClusterizationAlg\").StripClustersKey=\"xAODstripClusters\";" \
--inputRDOFile ${input_rdo} \
--outputAODFile AOD.pool.root \
--maxEvents ${n_events}
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