Source
19
19
//# Correspondence concerning AIPS++ should be addressed as follows:
20
20
//# Internet email: aips2-request@nrao.edu.
21
21
//# Postal address: AIPS++ Project Office
22
22
//# National Radio Astronomy Observatory
23
23
//# 520 Edgemont Road
24
24
//# Charlottesville, VA 22903-2475 USA
25
25
//#
26
26
//# $Id: $
27
27
#ifndef PLOTMSPLOT_H_
28
28
#define PLOTMSPLOT_H_
29
+
#include <vector>
29
30
30
31
#include <graphics/GenericPlotter/PlotFactory.h>
31
32
#include <plotms/Data/PlotMSCacheBase.h>
32
33
#include <plotms/PlotMS/PlotMSRegions.h>
33
34
#include <plotms/PlotMS/PlotMS.h>
34
35
#include <plotms/Plots/PlotMSPlotParameters.h>
35
36
#include <plotms/Plots/PlotMSPlot.h>
36
37
#include <plotms/Plots/PlotMSPage.h>
37
38
#include <plotms/Data/PlotMSIndexer.h>
38
39
350
351
void checkIteraxis(casacore::String caltype, PMS_PP_Iteration* iter);
351
352
352
353
//Note: First index for a plot is the dataCount,
353
354
//second index is the number of iteration.
354
355
std::vector<std::vector<MaskedScatterPlotPtr> > itsPlots_;
355
356
356
357
//Note: First index for a canvas is the number of rows,
357
358
//second index is the column withen a grid.
358
359
std::vector<std::vector<PlotCanvasPtr> > itsCanvases_;
359
360
360
-
vector<vector</*QPScatterPlot**/ColoredPlotPtr> > itsColoredPlots_;
361
+
std::vector<std::vector</*QPScatterPlot**/ColoredPlotPtr> > itsColoredPlots_;
361
362
TCLParams itsTCLParams_;
362
363
int gridRow;
363
364
int gridCol;
364
365
365
366
casacore::Int iter_;
366
367
casacore::Int iterStep_;
367
368
368
369
static const casacore::uInt PIXEL_THRESHOLD;
369
370
static const casacore::uInt MEDIUM_THRESHOLD;
370
371
static const casacore::uInt LARGE_THRESHOLD;