Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:12:40

0001 #!/bin/bash
0002 #
0003 #
0004 
0005 if [[ $# -lt 1 ]]
0006 then
0007   echo 'Usage: runupctrigstudy.cmd DST_CALO.root <nevents>'
0008   exit -1
0009 fi
0010 
0011 echo PWD=${PWD}
0012 echo LD_LIBRARY_PATH=${LD_LIBRARY_PATH}
0013 echo HOST=`hostname`
0014 
0015 ulimit -c 0     # no core files
0016 
0017 # get dst fname
0018 dst_calo_fname=$1
0019 
0020 cd OUTPUT
0021 
0022 nevents=0
0023 if [[ $# -eq 2 ]]
0024 then
0025   nevents=$2
0026 fi
0027 
0028 echo root.exe -b -q Fun4All_UPCTrigStudy.C\(${nevents},\"${dst_calo_fname}\"\)
0029 root.exe -b -q Fun4All_UPCTrigStudy.C\(${nevents},\"${dst_calo_fname}\"\)
0030