FOUND
Loading...
Searching...
No Matches
parser.hpp
Go to the documentation of this file.
1#ifndef PARSER_H
2#define PARSER_H
3
5
6namespace found {
7
9#define HELP_MSG "Use ./found --help or ./found -h for help"
10
21CalibrationOptions ParseCalibrationOptions(int argc, char **argv);
22
33DistanceOptions ParseDistanceOptions(int argc, char **argv);
34
45OrbitOptions ParseOrbitOptions(int argc, char **argv);
46
47} // namespace found
48
49
50#endif // PARSER_H
Definition options.hpp:81
Definition options.hpp:89
Definition options.hpp:97
Definition calibrate.cpp:7
OrbitOptions ParseOrbitOptions(int argc, char **argv)
Parses the orbit options from the command line to run the orbit determination algorithm.
Definition parser.cpp:165
CalibrationOptions ParseCalibrationOptions(int argc, char **argv)
Parses the calibration options from the command line to run the calibration algorithm.
Definition parser.cpp:65
DistanceOptions ParseDistanceOptions(int argc, char **argv)
Parses the distance options from the command line to run the distance determination algorithm.
Definition parser.cpp:115