Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SCDDS-core
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SPC
SCDDS
SCDDS-core
Commits
836e33e0
Commit
836e33e0
authored
4 years ago
by
Federico Felici
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup SCD class
parent
77ddad50
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/classes/SCD.m
+10
-7
10 additions, 7 deletions
code/classes/SCD.m
with
10 additions
and
7 deletions
code/classes/SCD.m
+
10
−
7
View file @
836e33e0
...
...
@@ -2,7 +2,9 @@ classdef SCD
% main interface class for interacting with SCD expcodes
%
% H = SCD.load(expcode); % loads the obj for a desired expcode
% H = SCD.init(expcode,shot); % does load, setup, callinits, actualize
% H = SCD.init(expcode); % loads and initialize
% H = SCD.prepforcompile(expcode); % loads, initialize, and setup (ready for compilation)
% H = SCD.prepforsim(expcode,shot); % does load, init, setup, actualize
%
% C = SCD.getexpcodecontainer; % get expcode container
...
...
@@ -20,19 +22,20 @@ classdef SCD
SCDconf_setSIMconf
;
% set conf for simulation
end
function
H
=
setup
(
expcode
)
% load and setup
function
H
=
init
(
expcode
)
H
=
SCD
.
load
(
expcode
);
H
.
setup
;
H
.
init
;
end
function
H
=
init
(
expcode
)
function
H
=
prepforcompile
(
expcode
)
H
=
SCD
.
load
(
expcode
);
H
.
init
;
H
.
setup
;
end
function
H
=
actualize
(
expcode
,
shot
)
H
=
SCD
.
load
(
expcode
);
function
H
.
prepforsim
(
expcode
,
shot
)
H
=
SCD
.
load
(
expcode
);
H
.
init
;
H
.
setup
;
H
.
actualize
(
shot
);
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment