Blame view

src/ParamOutputImpl/Plot/SeriesProperties.cc 1.79 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
 * SeriesProperties.cc
 *
 *  Created on: Dec 4, 2013
 *      Author: amdadev
 */
#ifndef SERIESPROPERTIES_CC_
#define SERIESPROPERTIES_CC_

#include "SeriesProperties.hh"
#include "DrawingProperties.hh"
#include <sstream>

namespace plot {

/*
 * Dumps properties for test.
 */
void SeriesProperties::dump(std::ostream& out_, std::string& prefix_) {
	out_ << "[SERIES PROPERTIES]" << std::endl;
	out_ << prefix_ << "index=" << getIndex().getDim1Index() << "x" << getIndex().getDim2Index() << std::endl;
	out_ << prefix_ << "id=" << getId() << std::endl;
	out_ << prefix_ << "xAxisId=" << getXAxisId() << std::endl;
	out_ << prefix_ << "yAxisId=" << getYAxisId() << std::endl;;
	out_ << prefix_ << "zAxisId=" << getZAxisId() << std::endl;;
	out_ << prefix_ << "colorSerieId=" << getColorSerieId() << std::endl;
	out_ << prefix_ << "paramId=" << getParamId() << std::endl;;
	getColor().dump(out_, prefix_);
	getLineProperties().dump(out_, prefix_);
	getSymbolProperties().dump(out_, prefix_);
}

std::ostream& operator<<(std::ostream& out_, const SeriesProperties& prop_) {
	out_ << "[SERIES PROPERTIES]" << std::endl;
	out_ << "{" << std::endl;
	out_ << "  index=" << prop_._index.getDim1Index() << "x" << prop_._index.getDim2Index() << std::endl;
	out_ << "  id=" << prop_._id << std::endl;
	out_ << "  xAxis Id = " << prop_.getXAxisId() << std::endl;
	out_ << "  yAxis Id = " << prop_.getYAxisId() << std::endl;
	out_ << "  zAxis Id = " << prop_.getZAxisId() << std::endl;
	out_ << "  colorSerieId = " << prop_.getColorSerieId() << std::endl;
	out_ << "  default color = " << prop_.getColor() << std::endl;
	out_ << "  " << prop_.getLineProperties() << std::endl;
	out_ << "  " << prop_.getSymbolProperties() << std::endl;
	out_ << "}" << std::endl;
	return out_;
}

}  // namespace plot

#endif /* SERIESPROPERTIES_CC_ */