Commit a0dea9d1651497b7c53b3a0c922a4506d6d9e43b
1 parent
1759ade3
Exists in
master
and in
28 other branches
Add a writeDataFile's declaration inside InstantPlot
Showing
2 changed files
with
7 additions
and
1 deletions
Show diff stats
src/ParamOutputImpl/Plot/InstantPlot/InstantPlot.cc
... | ... | @@ -1433,4 +1433,10 @@ void InstantPlot::writeContext(ContextFileWriter &writer, AMDA::Parameters::Time |
1433 | 1433 | |
1434 | 1434 | } |
1435 | 1435 | |
1436 | +void InstantPlot::writeDataFile(){ | |
1437 | + std::string fileName = _panel->_page->fileDataName; | |
1438 | + LOG4CXX_DEBUG(gLogger, "Name of the data file is " << fileName); | |
1439 | + | |
1440 | +} | |
1441 | + | |
1436 | 1442 | } /* namespace plot */ | ... | ... |
src/ParamOutputImpl/Plot/InstantPlot/InstantPlot.hh
... | ... | @@ -115,7 +115,7 @@ public: |
115 | 115 | } |
116 | 116 | |
117 | 117 | protected: |
118 | - | |
118 | + virtual void writeDataFile(); | |
119 | 119 | /** |
120 | 120 | * @overload PanelPlotOutput::drawFills(double startDate, double stopDate) |
121 | 121 | * @brief Draw fill area between parameter and constant or between parameters | ... | ... |