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

Add comments

parent ebdec22a
No related branches found
No related tags found
No related merge requests found
classdef SCD classdef SCD
% main interface class just to get expcode % main interface class for interacting with SCD expcodes
% E = SCD.load(expcode); %
% H = SCD.load(expcode); % loads the obj for a desired expcode
% H = SCD.init(expcode,shot); % does load, setup, callinits, actualize
%
% C = SCD.getexpcodecontainer; % get expcode container
properties (Access = private) properties (Access = private)
E % expcode E % expcode
SCDexps % expcode code container SCDexps % expcode code container
...@@ -15,15 +21,15 @@ classdef SCD ...@@ -15,15 +21,15 @@ classdef SCD
end end
function H=init(expcode,shot) function H=init(expcode,shot)
assert(nargin==2,'must supply 2 inputs to init(expcode,shot)')
H=SCD.load(expcode); H=SCD.load(expcode);
H.setup; H.setup;
H.callinits(shot); H.callinits;
H.actualize(shot); H.actualize(shot);
end end
function help() function help()
SCDexps = SCD.getexpcodecontainer(); help(mfilename);
SCDexps.printexpcodes;
end end
function list() function list()
......
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