Skip to content
Snippets Groups Projects
Commit 91a675c8 authored by Cristian Galperti's avatar Cristian Galperti
Browse files

line selector for G7,9,10,11 in the aval block added

parent 31f1f3c6
No related branches found
No related tags found
No related merge requests found
classdef SCDclass_mdsparvectorint < SCDclass_mdspar
% A constant 1D vector integer (int32) MDS+ parameter
properties
end
methods
function obj=SCDclass_mdsparvectorint(srctdimodel, destparam, varargin)
obj@SCDclass_mdspar();
% Constructor parser customization definitions here
obj=obj.parseconstructorcommon(srctdimodel, destparam, varargin);
% Constructor parser customization results here
obj.classname=mfilename;
obj.marteclassname='MDSParVectorInt';
end
function actualizedata(obj, shot)
obj=obj.preactualizecommon(shot);
if ~obj.actualizable, return; end
obj.caststring=sprintf('%s=int32(%s);',obj.assignvar,obj.assignvar);
obj.postactualizecommon(shot);
end
function [obj, value] = getdata(obj,shot)
[obj,value]=obj.getdatacommon(shot);
value=single(value);
end
function printinfo(obj)
obj.printinfocommon;
end
function entrystring = genMARTe2entry(obj, shot)
entrystring=[obj.genMARTe2entrycommon(shot) ' }'];
end
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