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
3ab0be8f
Commit
3ab0be8f
authored
2 years ago
by
Federico Felici
Browse files
Options
Downloads
Patches
Plain Diff
Remove SCD expcode list, moved to TCV project
parent
d212df97
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
functions/SCDconf_createexpcodes.m
+0
-30
0 additions, 30 deletions
functions/SCDconf_createexpcodes.m
with
0 additions
and
30 deletions
functions/SCDconf_createexpcodes.m
deleted
100644 → 0
+
0
−
30
View file @
d212df97
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
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