Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:24

0001 #! /bin/bash
0002 
0003 ## input
0004 suite=${1:-"forPR"}
0005 useARCH=${2:-0}
0006 lnxuser=${3:-${USER}}
0007 
0008 ## In case this is run separately from the main script
0009 source xeon_scripts/common-variables.sh ${suite} ${useARCH} ${lnxuser}
0010 source xeon_scripts/init-env.sh
0011 
0012 ##### Make plots of track properties (kinematics, nHits, etc) from text files, comparing different machine configurations #####
0013 for build in "${text_builds[@]}"
0014 do echo ${!build} | while read -r bN bO
0015     do
0016         echo "Making plots from text files for" ${sample} ":" ${bN}
0017         for archV in "${arch_array_textdump[@]}" 
0018         do echo ${archV} | while read -r archN archO
0019             do
0020                 echo "Extracting plots from dump for" ${archN} ${archO}
0021                 python plotting/makePlotsFromDump.py ${archN} ${sample} ${bN} ${archO}
0022             done
0023         done
0024                 
0025         echo "Making comparison plots from dump for" ${sample} ":" ${bN}
0026         root -b -q -l plotting/makePlotsFromDump.C\(\"${sample}\",\"${bN}\",\"${suite}\",${useARCH}\)
0027     done
0028 done