1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-04 17:23:20 +00:00

Minor documentation fixes, changes of #defines by const

git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@106 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
Carles Fernandez
2012-01-03 07:31:32 +00:00
parent ca5463e2d8
commit 3ceef64d27
10 changed files with 188 additions and 76 deletions

View File

@@ -55,6 +55,8 @@ rinex_printer::rinex_printer()
}
rinex_printer::~rinex_printer()
{
// close RINEX files
@@ -614,9 +616,6 @@ int rinex_printer::signalStrength(double snr)
/*
enum RINEX_enumObservationType
{
RINEX_OBS_TYPE_PSEUDORANGE = 'C', //!< 'C' Pseudorange observation

View File

@@ -45,8 +45,7 @@ private:
std::ofstream navFile ;
std::ofstream obsFile ;
/*!
* \brief Creates RINEX file names according to the naming convention
/* Creates RINEX file names according to the naming convention
*
* See http://igscb.jpl.nasa.gov/igscb/data/format/rinex301.pdf
* Section 4, page 6
@@ -64,18 +63,18 @@ private:
*/
std::string createFilename(std::string type);
/*!
* \brief Generates the data for the PGM / RUN BY / DATE line
/*
* Generates the data for the PGM / RUN BY / DATE line
*/
std::string getLocalTime();
/*!
* \brief Checks that the line is 80 characters length
/*
* Checks that the line is 80 characters length
*/
void lengthCheck(std::string line);
/*!
* \brief If the string is bigger than length, truncate it from the right.
/*
* If the string is bigger than length, truncate it from the right.
* otherwise, add pad characters to its right.
*
* Left-justifies the input in a string of the specified
@@ -91,8 +90,8 @@ private:
const std::string::size_type length,
const char pad = ' ');
/*!
* \brief If the string is bigger than length, truncate it from the right.
/*
* If the string is bigger than length, truncate it from the right.
* otherwise, add pad characters to its right.
*
* Left-justifies the receiver in a string of the specified
@@ -111,18 +110,18 @@ private:
/*!
* \brief Generates the Navigation Data header
/*
* Generates the Navigation Data header
*/
void Rinex2NavHeader(std::ofstream& out);
/*!
* \brief Generates the Observation data header
/*
* Generates the Observation data header
*/
void Rinex2ObsHeader(std::ofstream& out);
/*!
* \brief Generation of RINEX signal strength indicators
/*
* Generation of RINEX signal strength indicators
*/
int signalStrength(double snr);