Warning, /snippets/Calorimetery/CaloDebugTools/UtilityScripts/RunDD4hepOnCondor.job is written in an unsupported language. File is not indexed.
0001 # -----------------------------------------------------------------------------
0002 # 'RunDD4hepOnCondor.job'
0003 # Derek Anderson
0004 # 03.21.2024
0005 #
0006 # Condor job file to run `RunDD4hep.job` via condor.
0007 # -----------------------------------------------------------------------------
0008
0009 # generic parameters
0010 Universe = vanilla
0011 notification = Never
0012
0013 # executable parameters
0014 Executable = RunDD4hepInSerial.rb
0015 Arguments = $(iterations) $(label) $(steering)
0016 PeriodicHold = ((NumJobStarts >= 1) && (JobStatus == 1))
0017 Initialdir = ./
0018 request_memory = 8GB
0019
0020 # output parameters
0021 Output = $(Initialdir)/log/test_$(process).out
0022 Error = $(Initialdir)/log/test_$(process).err
0023 Log = $(Initialdir)/log/test_$(process).log
0024
0025 # queue jobs
0026 Queue iterations, label, steering from test.job_parameters.list
0027
0028 # end -------------------------------------------------------------------------