Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:13:23

0001 #!/usr/bin/env ruby
0002 # -----------------------------------------------------------------------------
0003 # \file   RunENCCalculation.rb
0004 # \author Derek Anderson
0005 # \date   01.18.2024
0006 #
0007 # Short script to run RunENCCalculation.cxx
0008 # -----------------------------------------------------------------------------
0009 
0010 if ARGV[0] == "condor"
0011   exec("condor_submit RunENCCalculationOnCondor.job")
0012 else
0013   exec("root -b -q RunENCCalculation.cxx")
0014 end
0015 
0016 # end -------------------------------------------------------------------------