/* * TimeShiftedCreator.hh * * Created on: Dec 12, 2012 * Author: f.casimir */ #ifndef TIMESHIFTEDCREATOR_HH_ #define TIMESHIFTEDCREATOR_HH_ #include "ParamData.hh" #include "VisitorOfParamData.hh" #include "TimeShifted.hh" namespace AMDA { namespace Parameters { /** * @class TimeShiftedCreator * @brief Creator of the Operation TimeShifted parameterized with ParamData input type. * @details Implement the interface VisitorOfParamData. */ class TimeShiftedCreator : public VisitorOfParamData { public: /** * @brief Constructor. */ TimeShiftedCreator(Process& pProcess, ParamData& paramInput, double second) : _process(pProcess), _paramData(paramInput), _operation(NULL), _second(second) { _paramData.accept(*this); } /** * @overload VisitorOfParamData::visit(ParamDataScalaireShort *) */ void visit(ParamDataScalaireShort *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataScalaireFloat *) */ void visit(ParamDataScalaireFloat *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataScalaireDouble *) */ void visit(ParamDataScalaireDouble *) {_operation = new TimeShifted( _process,dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataScalaireLongDouble *) */ void visit(ParamDataScalaireLongDouble *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataScalaireInt *) */ void visit(ParamDataScalaireInt *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataLogicalData *) */ void visit(ParamDataLogicalData *) { _operation = new TimeShifted( _process, dynamic_cast(_paramData), _second); } /** * @overload VisitorOfParamData::visit(ParamDataTab1DShort *) */ void visit(ParamDataTab1DShort *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab1DFloat *) */ void visit(ParamDataTab1DFloat *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab1DDouble *) */ void visit(ParamDataTab1DDouble *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab1DLongDouble *) */ void visit(ParamDataTab1DLongDouble *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab1DInt *) */ void visit(ParamDataTab1DInt *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab1DLogicalData *) */ void visit(ParamDataTab1DLogicalData *) { _operation = new TimeShifted( _process, dynamic_cast(_paramData), _second); } /** * @overload VisitorOfParamData::visit(ParamDataTab2DShort *) */ void visit(ParamDataTab2DShort *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab2DFloat *) */ void visit(ParamDataTab2DFloat *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab2DDouble *) */ void visit(ParamDataTab2DDouble *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab2DLongDouble *) */ void visit(ParamDataTab2DLongDouble *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab2DInt *) */ void visit(ParamDataTab2DInt *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @overload VisitorOfParamData::visit(ParamDataTab2DLogicalData *) */ void visit(ParamDataTab2DLogicalData *) {_operation = new TimeShifted( _process, dynamic_cast(_paramData), _second);} /** * @brief get the TimeShifted parameterized operation. */ Operation * getOperation() const { return _operation; } private: Process &_process; ParamData &_paramData; Operation *_operation; /** * @brief laps time to shift data. */ double _second; }; } /* namespace Parameters */ } /* namespace AMDA */ #endif /* TIMESHIFTEDCREATOR_HH_ */