Skip to content
This repository has been archived by the owner on May 29, 2022. It is now read-only.

Commit

Permalink
Silencing OSX Warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Parsons committed May 20, 2016
1 parent f854bf1 commit 6f0d72a
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions ext/apps/geomatics/cycleslips/DiscFix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1075,10 +1075,22 @@ try {
LOG(INFO) << " End time is "
<< printTime(cfg.endTime,"%04Y/%02m/%02d %02H:%02M:%.3f")
<< " = " << printTime(cfg.endTime,"%04F/%10.3g");
if(cfg.useCA1) LOG(INFO) << " Use the L1 C/A pseudorange if P-code is not found";
else LOG(INFO) << " Do not use L1 C/A code range (C1)";
if(cfg.useCA2) LOG(INFO) << " Use the L2 C/A pseudorange if P-code is not found";
else LOG(INFO) << " Do not use L2 C/A code range (C2)";
if(cfg.useCA1)
{
LOG(INFO) << " Use the L1 C/A pseudorange if P-code is not found";
}
else
{
LOG(INFO) << " Do not use L1 C/A code range (C1)";
}
if(cfg.useCA2)
{
LOG(INFO) << " Use the L2 C/A pseudorange if P-code is not found";
}
else
{
LOG(INFO) << " Do not use L2 C/A code range (C2)";
}
if(cfg.forceCA1) LOG(INFO) <<" Use the L1 C/A pseudorange even if P-code is found";
if(cfg.forceCA2) LOG(INFO) <<" Use the L2 C/A pseudorange even if P-code is found";
if(cfg.dt0 > 0) LOG(INFO) << " dt is input as " << cfg.dt0 << " seconds.";
Expand Down

0 comments on commit 6f0d72a

Please sign in to comment.