Skip to content
Snippets Groups Projects
Commit 3ab0be8f authored by Federico Felici's avatar Federico Felici
Browse files

Remove SCD expcode list, moved to TCV project

parent d212df97
No related branches found
No related tags found
No related merge requests found
function SCDexps = SCDconf_createexpcodes()
%% The expcode container,
% it contains a list of expcode numbers and function pointers
% to the corresponding object builder functions,
% we chose not to insert the object itself in the container
% since we do not want to call external code w.r.t. the in use
% expcode (comprising its defining code).
% Not that the printexpcodes method calls all the builder
% in sequence, printing out which ones are generating errors.
SCDexps=SCDclass_expcodecontainer;
SCDexps=SCDexps.insertexpcode(1, @(x) SCDexpcodeconf_template);
SCDexps=SCDexps.insertexpcode(1005, @(x) SCDexpcodeconf_tcvstandard02);
SCDexps=SCDexps.insertexpcode(10 , @(x) SCDexpcodeconf_f4eexample);
SCDexps=SCDexps.insertexpcode(1006, @(x) SCDexpcodeconf_DMmagcontrol);
SCDexps=SCDexps.insertexpcode(1007, @(x) SCDexpcodeconf_genmagcontrol);
SCDexps=SCDexps.insertexpcode(1008, @(x) SCDexpcodeconf_detachcontrol);
SCDexps=SCDexps.insertexpcode(1010, @(x) SCDexpcodeconf_integrated);
SCDexps=SCDexps.insertexpcode(2025, @(x) SCDexpcodeconf_LIUQEtester);
SCDexps=SCDexps.insertexpcode(2030, @(x) SCDexpcodeconf_THOMSONtester);
if nargout == 0
% assign output argument in base
assignin('base','SCDexps',SCDexps);
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment