Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • bsub -q long -o $USHERNFS/RealData/recon.out $CMTPATH/Gleam/v5r8
    p1/rh9_gcc32/Gleam.exe
  • use "bjobs" to check on the status of the job

In theory this can be done from a shell script...

  • But I could not get the following to work. Basically, when I
    source readdigi_runrecon.csh
    it tells me that it can't find Gleam, essentially because the CMTPATH is undefined.
    What can I say other than it is for these types of reasons that I don't like linux...
No Format
#!/bin/csh
#
#echo 'Default read digi - run recon starting at:' ; date
#
unsetenv LD_LIBRARY_PATH
setenv CMTPATH /nfs/farm/g/glast/u09/builds/rh9_gcc32/GlastRelease/GlastRelease-HEAD1.420
pushd $CMTPATH/Gleam/v5r8p1/cmt
source setup.csh
#
popd
setenv JOBOPTIONS $USHERNFS/RealData/readdigi_runrecon.txt
bsub -q xlong -G glastgrp -o $USHERNFS/RealData/recon.out $CMTPATH/Gleam/v5r8p1/rh9_gcc32/Gleam.exe
#
#echo 'Default read digi - run recon ending at:' ; date

...