diff --git a/classes/SCDclass_mdswg.m b/classes/SCDclass_mdswg.m
index 5ec860a05e2df2d6ab8a575b5a4ac016c754df8d..58d590d1d9a50703248fb70e04f172c5d344d89e 100644
--- a/classes/SCDclass_mdswg.m
+++ b/classes/SCDclass_mdswg.m
@@ -152,7 +152,7 @@ classdef SCDclass_mdswg < matlab.mixin.Heterogeneous
         %    out = obj.modelparam;
         %end
 
-        function entrystring = genMARTe2entrycommon(obj, shot)
+        function entrystring = genMARTe2entry(obj, shot)
             %entrystring = ['+' obj.wavegentarget ' = { Class=' obj.classname ' Path=' obj.tdiexpr ];
             entrystring = sprintf('+%-50s = { Class=%-30s Path=%-40s',obj.wavegentarget,obj.marteclassname,obj.genMARTe2MDStdiexpression);
         end
diff --git a/classes/SCDclass_mdswgsigarray1.m b/classes/SCDclass_mdswgsigarray1.m
index faa3601cebb0026433c9487d1eecd47b6068d90a..4d06a15fb8bd453dd0a7e729fa04dec0491faa06 100644
--- a/classes/SCDclass_mdswgsigarray1.m
+++ b/classes/SCDclass_mdswgsigarray1.m
@@ -150,7 +150,7 @@ classdef SCDclass_mdswgsigarray1 < SCDclass_mdswg
             if(obj.srcstartidx~=obj.deststartidx || obj.srcstopidx~=obj.deststopidx)
                 error('SCDclass_mdswgsigarray1:genMARTe2entry','Signal position remapping not yet implemented in the MARTe version of this class');
             end
-            entrystring=obj.genMARTe2entrycommon(shot);
+            entrystring=obj.genMARTe2entry@SCDclass_mdswg(obj,shot);
             entrystring=[entrystring ' StartIdx=' num2str(obj.srcstartidx) ' StopIdx=' num2str(obj.srcstopidx) ' }'];
         end
        
diff --git a/classes/SCDclass_mdswgsigsingle.m b/classes/SCDclass_mdswgsigsingle.m
index 1925dc448029fa64fd21093fecb043b7c4c71618..4d1e462a1a37cbbbe6ff6c8f03641c6fb2a5e9b8 100644
--- a/classes/SCDclass_mdswgsigsingle.m
+++ b/classes/SCDclass_mdswgsigsingle.m
@@ -133,7 +133,7 @@ classdef SCDclass_mdswgsigsingle < SCDclass_mdswg
             if obj.destidx~=1
                 error('SCDclass_mdswgsigsingle:marteerror', 'MARTe2 remapping not yet implemented');
             end
-            entrystring=[obj.genMARTe2entrycommon(shot) ' }'];
+            entrystring=[obj.genMARTe2entry@SCDclass_mdswg(obj,shot) ' }'];
         end
        
         function autopopulatemds(obj, shot)