Blame view

src/ExternLib/mexvex_els_decode/MexVexElsDecodeCreator.hh 7.34 KB
35de3ffa   Elena.Budnik   mexvex_els
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
/*
 * MexVexElsDecodeCreator.hh
 *
 *  Created on: Oct 14, 2016
 *      Author: elena
 */

#ifndef MexVexElsDecodeCREATOR_HH_
#define MexVexElsDecodeCREATOR_HH_


#include "DicError.hh"
#include "AMDA_exception.hh"

#include "ParamData.hh"
#include "VisitorOfParamData.hh"
#include "MexVexElsDecode.hh"

namespace AMDA {
namespace Parameters {

/**
 * @class MexVexElsDecodeCreator
 * @brief Creator of the Operation MexVexElsDecodeCreator parameterized with ParamData input type.
 * @details Implement the interface VisitorOfParamData.
 */
class MexVexElsDecodeCreator : public VisitorOfParamData {
public:
	/**
	 * @brief Constructor.
	 */
6a28e3ab   Benjamin Renard   Fix Mex/Vex ELS p...
32
33
	MexVexElsDecodeCreator(Process& pProcess, ParamData& paramInput, ParamData& energyTableInput)
		: _process(pProcess), _paramData(paramInput), _energyTableInput(energyTableInput), _operation(NULL) {
35de3ffa   Elena.Budnik   mexvex_els
34
35
36
37
38
39
40
41

		_paramData.accept(*this);
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireShort *)
	 */
	 void visit(ParamDataScalaireShort *)		  
404c4140   Benjamin Renard   Fix mexvex_els_de...
42
	 {_operation = new MexVexElsDecode::MexVexElsDecode<ParamDataScalaireShort, ParamDataScalaireShort>( _process, dynamic_cast<ParamDataScalaireShort &>(_paramData), dynamic_cast<ParamDataScalaireShort &>(_energyTableInput));}
35de3ffa   Elena.Budnik   mexvex_els
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireFloat *)
	 */
	void visit(ParamDataScalaireFloat *){
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}
	//void visit(ParamDataScalaireFloat *) {_operation = new MexVexElsDecode::MexVexElsDecode<float>( _process, dynamic_cast<ParamDataScalaireFloat &>(_paramData));}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireDouble *)
	 */
	void visit(ParamDataScalaireDouble *){
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}
	//void visit(ParamDataScalaireDouble *) {_operation = new MexVexElsDecode::MexVexElsDecode<double>(  _process,dynamic_cast<ParamDataScalaireDouble &>(_paramData));}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireLongDouble *)
	 */
	void visit(ParamDataScalaireLongDouble *){
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}
	//void visit(ParamDataScalaireLongDouble *) {_operation = new MexVexElsDecode::MexVexElsDecode<ParamDataScalaireLongDouble>( _process, dynamic_cast<ParamDataScalaireLongDouble &>(_paramData));}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireInt *)
	 */
	void visit(ParamDataScalaireInt *){
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}
	//void visit(ParamDataScalaireInt *) {_operation = new MexVexElsDecode::MexVexElsDecode<int>( _process, dynamic_cast<ParamDataScalaireInt &>(_paramData));}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataLogicalData *)
	 */
	void visit(ParamDataLogicalData *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DShort *)
	 */
404c4140   Benjamin Renard   Fix mexvex_els_de...
86
	 void visit(ParamDataTab1DShort *){_operation = new MexVexElsDecode::MexVexElsDecode<ParamDataTab1DShort, ParamDataTab1DShort>( _process, dynamic_cast<ParamDataTab1DShort &>(_paramData), dynamic_cast<ParamDataScalaireShort &>(_energyTableInput));}
35de3ffa   Elena.Budnik   mexvex_els
87
88
89
90

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DFloat *)
	 */
404c4140   Benjamin Renard   Fix mexvex_els_de...
91
	void visit(ParamDataTab1DFloat *) {_operation = new MexVexElsDecode::MexVexElsDecode<ParamDataTab1DFloat, ParamDataTab1DShort>( _process, dynamic_cast<ParamDataTab1DFloat &>(_paramData), dynamic_cast<ParamDataScalaireShort &>(_energyTableInput));}
35de3ffa   Elena.Budnik   mexvex_els
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DDouble *)
	 */
	void visit(ParamDataTab1DDouble *){
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}
//	void visit(ParamDataTab1DDouble *) {_operation = new MexVexElsDecode::MexVexElsDecode<double>( _process, dynamic_cast<ParamDataTab1DDouble &>(_paramData));}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DLongDouble *)
	 */
	void visit(ParamDataTab1DLongDouble *){
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}
//	void visit(ParamDataTab1DLongDouble *) {_operation = new MexVexElsDecode::MexVexElsDecode<ParamDataTab1DLongDouble>( _process, dynamic_cast<ParamDataTab1DLongDouble &>(_paramData));}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DInt *)
	 */
	void visit(ParamDataTab1DInt *){
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}
	// void visit(ParamDataTab1DInt *) {_operation = new MexVexElsDecode::MexVexElsDecode<ParamDataTab1DInt>( _process, dynamic_cast<ParamDataTab1DInt &>(_paramData));}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DLogicalData *)
	 */
	void visit(ParamDataTab1DLogicalData *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DShort *)
	 */
404c4140   Benjamin Renard   Fix mexvex_els_de...
127
	void visit(ParamDataTab2DShort *){_operation = new MexVexElsDecode::MexVexElsDecode<ParamDataTab2DShort, ParamDataTab2DShort>( _process, dynamic_cast<ParamDataTab2DShort &>(_paramData), dynamic_cast<ParamDataScalaireShort &>(_energyTableInput));}
35de3ffa   Elena.Budnik   mexvex_els
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DFloat *)
	 */
	void visit(ParamDataTab2DFloat *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DFloat data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DDouble *)
	 */
	void visit(ParamDataTab2DDouble *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DDouble data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DLongDouble *)
	 */
	void visit(ParamDataTab2DLongDouble *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DLongDouble data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DInt *)
	 */
	void visit(ParamDataTab2DInt *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DInt data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DLogicalData *)
	 */
	void visit(ParamDataTab2DLogicalData *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DLogicalData data not supported"));
	}

	/**
	 * @brief get the MexVexElsDecode parameterized operation.
	 */
	Operation * getOperation() const {	return _operation;	}

private:
	Process   &_process;
	ParamData &_paramData;
6a28e3ab   Benjamin Renard   Fix Mex/Vex ELS p...
172
	ParamData &_energyTableInput;
35de3ffa   Elena.Budnik   mexvex_els
173
	Operation *_operation;
35de3ffa   Elena.Budnik   mexvex_els
174
175
176
177
178
179
	 
};

} /* namespace Parameters */
} /* namespace AMDA */
#endif /* MexVexElsDecodeCREATOR_HH_ */