LaunchQueueJob

PURPOSE ^

LAUNCHQUEUEJOB - ...

SYNOPSIS ^

function LaunchQueueJob(md,executionpath)

DESCRIPTION ^

LAUNCHQUEUEJOB - ...

   Usage:
      LaunchQueueJob(md,executionpath)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SUBFUNCTIONS ^

SOURCE CODE ^

0001 function LaunchQueueJob(md,executionpath)
0002 %LAUNCHQUEUEJOB - ...
0003 %
0004 %   Usage:
0005 %      LaunchQueueJob(md,executionpath)
0006 
0007 %First try and figure out if there is a special script for thie particular cluster
0008 function_name=['LaunchQueueJob' md.cluster];
0009 if exist(function_name,'file'),
0010     %Call this function:
0011     eval([function_name '(md,executionpath);']);
0012 else
0013     %Call the generic LaunchQueueJob:
0014     LaunchQueueJobGeneric(md,executionpath);
0015 end

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003