Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:11:00

0001 #!/bin/bash
0002 # -----------------------------------------------------------------------------
0003 # 'DoTrackCutStudyOnCondor.sh'
0004 # Derek Anderson
0005 # 03.23.2023
0006 #
0007 # Called by 'DoTrackCutStudyOnCondor.job'
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 "DoTrackCutStudy.C(true)"
0019 
0020 # end -------------------------------------------------------------------------
0021