Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:13:24

0001 #!/bin/bash
0002 # -----------------------------------------------------------------------------
0003 # 'RunTrksInJetQAOnCondor.sh'
0004 # Derek Anderson
0005 # 04.13.2024
0006 #
0007 # short script to run Fun4All_MakeTrksInJetQA.C via condor
0008 # -----------------------------------------------------------------------------
0009 
0010 # set up environment
0011 export USER="$(id -u -n)"
0012 export LOGNAME=${USER}
0013 export HOME=/sphenix/u/${LOGNAME}
0014 source /opt/sphenix/core/bin/sphenix_setup.sh
0015 printenv
0016 
0017 # run macro
0018 root -b -q "Fun4All_MakeTrksInJetQA.C"
0019 
0020 # end -------------------------------------------------------------------------