Newer
Older
function plot_Validation( hMainFig, hPlotAxes, nPlot, PARA )
% Get tsg application data
% ------------------------
tsg = getappdata( hMainFig, 'tsg_data');
SAMPLE = tsg.plot.sample;
% get lineType from popupmenu cell string
% ---------------------------------------
lineType = ...
tsg.preference.plot_connected_string{tsg.preference.plot_connected_value};
switch nPlot
% ---------------------------------------------------------------------
case 1
% erase all plpot with 'Tag'= ['TAG_PLOT' num2str(PlotNum) '_LINE_']
% ------------------------------------------------------------------
% if there is data to plot
% ------------------------
if ~isempty( tsg.(PARA) )
% if lineType is selcted from menu option/preferences and ne 'none'
% -----------------------------------------------------------------
if ~strcmp(lineType, 'none')
% just plot data line and without QC & marker in black in first plot
% -----------------------------------------------------------------
plot_Tsg( hMainFig, hPlotAxes, 1, tsg.DAYD, tsg.(PARA), [],...
PARA, 'k', lineType, 'none', 1);
end
% plot data data with QC color
% ----------------------------
plot_Tsg( hMainFig, hPlotAxes, 1, tsg.DAYD, tsg.(PARA), ...
tsg.([PARA '_QC']), PARA, '', 'none', '*', 2);
if ~isempty( tsg.([SAMPLE '_EXT']) )
% -----------------------
indWS = strmatch( 'WS', tsg.([SAMPLE '_EXT_TYPE']), 'exact');
if ~isempty(ind)
plot_Tsg( hMainFig, hPlotAxes, 1,...
tsg.DAYD_EXT(indWS), tsg.([SAMPLE '_EXT'])(indWS),...
tsg.([SAMPLE '_EXT_QC'])(indWS), ...
% -------------------------------------
indEXT = setxor(ind, indWS);
if ~isempty(indEXT)
plot_Tsg( hMainFig, hPlotAxes, 1, tsg.DAYD_EXT(indEXT),...
tsg.([SAMPLE '_EXT'])(indEXT),...
tsg.([SAMPLE '_EXT_QC'])(indEXT),...
% ---------------------------------------------------------------------
case 2
erase_Line( hPlotAxes, 2 );
% if ~isempty( tsg.([PARA '_QC']) )
plot_Tsg( hMainFig, hPlotAxes, 2, tsg.DAYD, tsg.(PARA),...
% else
% plot_Tsg( hMainFig, hPlotAxes, 2, tsg.DAYD, tsg.(PARA),...
% [],PARA,'k','none','*',2);
% end
end
% ---------------------------------------------------------------------
case 3
erase_Line( hPlotAxes, 3 );
if ~isempty( tsg.(PARA) )
plot_Tsg( hMainFig, hPlotAxes, 3, tsg.DAYD, tsg.(PARA),[],...
end
end
axesCommonProp( hPlotAxes );
end