


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


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