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

Merge remote-tracking branch 'origin/feature/ITER2025' into feature/addSupervisory

parents 22dd005e 2bc12633
No related branches found
No related tags found
No related merge requests found
classdef SCD
% main interface class just to get expcode
% E = SCD.load(expcode);
properties (Access = private)
E % expcode
SCDexps % expcode code container
end
methods (Static)
function E=load(expcode)
% Creating the experimental code container class
SCDexps = SCD.getexpcodecontainer();
E = SCDexps.getbymaincode(expcode);
end
function help()
SCDexps = SCD.getexpcodecontainer();
SCDexps.printexpcodes;
end
function list()
SCD.help;
end
function SCDexps = getexpcodecontainer()
SCDexps = SCDconf_createexpcodes;
end
end
end
\ No newline at end of file
...@@ -15,6 +15,7 @@ SCDexps=SCDexps.insertexpcode(1005, @(x) SCDexpcodeconf_tcvstandard02); ...@@ -15,6 +15,7 @@ SCDexps=SCDexps.insertexpcode(1005, @(x) SCDexpcodeconf_tcvstandard02);
SCDexps=SCDexps.insertexpcode(10 , @(x) SCDexpcodeconf_f4eexample); SCDexps=SCDexps.insertexpcode(10 , @(x) SCDexpcodeconf_f4eexample);
SCDexps=SCDexps.insertexpcode(1006, @(x) SCDexpcodeconf_DMmagcontrol); SCDexps=SCDexps.insertexpcode(1006, @(x) SCDexpcodeconf_DMmagcontrol);
SCDexps=SCDexps.insertexpcode(1010, @(x) SCDexpcodeconf_integrated); SCDexps=SCDexps.insertexpcode(1010, @(x) SCDexpcodeconf_integrated);
SCDexps=SCDexps.insertexpcode(2025, @(x) SCDexpcodeconf_LIUQEtester);
if nargout == 0 if nargout == 0
% assign output argument in base % assign output argument in base
......
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