TABLE OF CONTENTS
::pwtk::queue::runBANDS
SYNOPSIS
proc ::pwtk::queue::runBANDS {queueSystem head} {
PURPOSE
Run the bands.x program via queueSystem.
ARGUMENTS
- queueSystem -- name of batch queuing system (e.g. slurm, ll, lsf, ...)
- head -- rootname of the input file (for example the rootname of file.inp is file)
SOURCE
variable scriptBody set head [::pwtk::headname $head {.bands.in .bands.inp .in .inp}] set ihandle [::pwtk::input_handle] ::pwtk::bi_fprint $head.pp.in set script_ { \$PREFIX \$BANDS \$POSTFIX $ihandle $head.bands.in > $head.bands.out } append scriptBody($queueSystem) "[subst -nocommands $script_]\n" }