13#ifndef RADARLOOKUPTABLEFUNCTION_HPP
14#define RADARLOOKUPTABLEFUNCTION_HPP
32 void WriteFile(
const std::string& aFileName,
33 const std::vector<double>& aRowValues,
34 const std::vector<double>& aColValues,
35 const std::vector<double>& aDataValues);
40 std::vector<double> mAltitudes;
41 std::vector<double> mRanges;
42 std::string mAltUnitsStr;
43 double mAltUnitsScale;
44 std::string mRangeUnitsStr;
45 double mRangeUnitsScale;
47 std::string mOutputName;
48 std::string mHeaderLine1;
49 std::string mHeaderLine2;
50 std::string mHeaderLine3;
51 size_t mOutputColumnLimit;
Function(const Function &)=default
bool Execute(WsfSimulation &aSimulation) override
Definition RadarLookupTableFunction.cpp:48
RadarLookupTableFunction(const WsfScenario &aScenario)
Definition RadarLookupTableFunction.cpp:29
bool ProcessInput(UtInput &aInput) override
Definition RadarLookupTableFunction.cpp:164
Contains the data required to create a simulation, and acts as the entry point for input file process...
Definition WsfScenario.hpp:111
The main controller for a simulation.
Definition WsfSimulation.hpp:109