Blame view

src/ParamOutputImpl/Plot/TickPlot/TickPlot.hh 888 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * TickPlot.hh
 *
 *  Created on: 16 janv. 2014
 *      Author: CS
 */

#ifndef TICKPLOT_HH_
#define TICKPLOT_HH_

#include "DecoratorPlot.hh"
#include "PanelPlotOutput.hh"
#include "TickPlotNode.hh"
#include "Time/TimePlot.hh"


namespace plot {

1d1a3b8a   Erdogan Furkan   Done for tickPlot...
19
20
#define TICKPLOT_NODENAME "tickPlot"

fbe3c2bb   Benjamin Renard   First commit
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * @brief Plot that may draw 2 kinds of plots :
 * - a standalone tick plot with a dedicated (and hidden) time axis
 * - a tick plot related to a time plot (in the same panel) that uses
 *   the time plot time axis
 *
 */
class TickPlot: public DecoratorPlot {
public:
	TickPlot(AMDA::Parameters::ParameterManager& manager,
			boost::shared_ptr<Panel> panel, bool isStandalone);
	virtual ~TickPlot();

1d1a3b8a   Erdogan Furkan   Done for tickPlot...
34
35
36
37
38
	virtual const std::string subTypeName()
	{
		return TICKPLOT_NODENAME;
	}

fbe3c2bb   Benjamin Renard   First commit
39
40
41
42
43
44
45
46
	/**
	 * @brief Value decimal format
	 */
	std::string _format;
};

} /* namespace plot */
#endif /* TICKPLOT_HH_ */