Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 #!/usr/bin/env ruby
0002 # -----------------------------------------------------------------------------
0003 # 'RunTracksInJetsQAMaker.rb'
0004 # Derek Anderson
0005 # 04.13.2024
0006 #
0007 # Short script to run the 'Fun4All_MakeTracksInJetsQA.C' macro
0008 # with default options.
0009 # -----------------------------------------------------------------------------
0010 
0011 if ARGV[0] == "local"
0012   exec("root -b -q Fun4All_MakeTrksInJetQA.C")
0013 else
0014   exec("condor_submit RunTrksInJetQAOnCondor.job")
0015 end
0016 
0017 # end -------------------------------------------------------------------------