BuildQueueingScript

PURPOSE ^

BUILDQUEUEINGSCRIPT -

SYNOPSIS ^

function BuildQueueingScript(md,solutiontype,executionpath,codepath)

DESCRIPTION ^

BUILDQUEUEINGSCRIPT - 

   Usage:
      BuildQueueingScript(md,solutiontype,executionpath,codepath)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SUBFUNCTIONS ^

SOURCE CODE ^

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

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