diff --git a/classes/SCDclass_mdswg.m b/classes/SCDclass_mdswg.m index ba89bf456cc017b43257422e9d47a0de737a3786..590731b056819ef3f3e0d8dc93c1eb68c98c05c1 100644 --- a/classes/SCDclass_mdswg.m +++ b/classes/SCDclass_mdswg.m @@ -28,6 +28,8 @@ classdef SCDclass_mdswg < matlab.mixin.Heterogeneous overrideshot % =1 if instantiated with overridden shot number, in this case this shot number will be always used during actualization overrideshotn % shot number in case of overridden shot number + + bound % true if wavegen has been bound to another SCDDS component end properties @@ -50,6 +52,7 @@ classdef SCDclass_mdswg < matlab.mixin.Heterogeneous obj.verbose=1; obj.wavegenbasestruct=''; + obj.bound=false; end function obj=parseconstructor(obj, srctdi, destwavegen, varargin) @@ -81,6 +84,7 @@ classdef SCDclass_mdswg < matlab.mixin.Heterogeneous obj(ii) = obj(ii).setmodelname(modelname); obj(ii) = obj(ii).setdatadictionary(datadictionary); obj(ii) = obj(ii).settiminginfo(timingsrc); + obj(ii).bound = true; end end end