Warning, /analysis/EventMix/ana/work/condormb.job is written in an unsupported language. File is not indexed.
0001 # All local jobs are part of the vanilla universe.
0002 Universe = vanilla
0003
0004 # We want email if the job completed successfully. This can
0005 # be set to Always, Error, or Never.
0006 Notification = Never
0007
0008 # The executable we want to run.
0009 Executable = runanamb.csh
0010
0011 GroupNumber = 4300
0012
0013 # The argument to pass to the executable.
0014 # process number, number of events
0015 Arguments = $(GroupNumber) $(Process)
0016
0017 # The requirement line specifies which machines we want to
0018 # run this job on. Any arbitrary classad expression can
0019 # be used.
0020 Requirements = CPU_Speed >= 1
0021
0022 # Rank is an expression that states how to rank machines which
0023 # have already met the requirements expression. Essentially,
0024 # rank expresses preference. A higher numeric value equals better
0025 # rank. Condor will give the job the machine with the highest rank.
0026 Rank = CPU_Speed
0027
0028 # This tells Condor the maximum virtual image size to which
0029 # you believe your program will grow during its execution.
0030 #Image_Size = 428 Meg
0031
0032 # Jobs with higher numerical priority will run before jobs
0033 # with lower numerical priority (-20 to 20).
0034 Priority = +20
0035
0036 # Copy all of the user's current shell environment variables
0037 # at the time of job submission.
0038 #GetEnv = True
0039
0040 # Used to give jobs a directory with respect to file input
0041 # and output.
0042 Initialdir = /gpfs/mnt/gpfs02/sphenix/user/lebedev/mdc/test/analysis/EventMix/ana/work
0043
0044 # Input file given to the job.
0045 Input = /dev/null
0046
0047 # The job's stdout is sent to this file.
0048 Output = /sphenix/user/lebedev/mdc/logs/ana.$(GroupNumber).$(Process).log
0049
0050 # The job's stderr is sent to this file.
0051 Error = /sphenix/user/lebedev/mdc/logs/ana.$(GroupNumber).$(Process).log
0052
0053
0054 # The condor log file for this job, useful when debugging.
0055 Log = /sphenix/user/lebedev/mdc/logs/ana.$(GroupNumber).$(Process).log
0056
0057
0058 # Email address to send notification to.
0059 #Notify_user = lebedev@iastate.edu
0060
0061 # These are job flags which are non-Condor specific.
0062 # increase this as needed, job will be evicted at 30% above this value
0063 request_memory = 12G
0064
0065 # currently always true for sPHENIX jobs
0066 request_cpus = 1
0067
0068 # this puts evicted jobs on hold, condor by default puts them back in idle
0069 # but they will never start again.
0070 # They will actually prevent other jobs from starting
0071 PeriodicHold = (NumJobStarts>=1 && JobStatus == 1)
0072
0073 # This should be the last command and tells condor to queue the
0074 # job. If a number is placed after the command (i.e. Queue 15)
0075 # then the job will be submitted N times. Use the $(Process)
0076 # macro to make your input/output and log files unique.
0077 Queue 10
0078