diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-08-10 20:00:48 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-08-10 20:00:48 (GMT) |
commit | 1db6ae8ab85c91fd5648143619ebc8f2857e6143 (patch) | |
tree | 280c6222389540b8da92960831e34408ec9b44cb /tksao/frame/cpanda.C | |
parent | e8469b276324164a772f18d26337bedb5cb6937f (diff) | |
download | blt-1db6ae8ab85c91fd5648143619ebc8f2857e6143.zip blt-1db6ae8ab85c91fd5648143619ebc8f2857e6143.tar.gz blt-1db6ae8ab85c91fd5648143619ebc8f2857e6143.tar.bz2 |
simplify marker code
Diffstat (limited to 'tksao/frame/cpanda.C')
-rw-r--r-- | tksao/frame/cpanda.C | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tksao/frame/cpanda.C b/tksao/frame/cpanda.C index 20d3160..e1524e3 100644 --- a/tksao/frame/cpanda.C +++ b/tksao/frame/cpanda.C @@ -519,8 +519,10 @@ void Cpanda::listA(ostream& str, Coord::CoordSystem sys, Coord::SkyFrame sky, if (ptr->hasWCSCel(sys)) { str << setprecision(parent->precArcsec_) << fixed - << r1 << '"' << ',' << r2 << '"' << ',' << numAnnuli_-1 << ')'; + << r1 << '"' << ',' << r2 << '"' << ','; str.unsetf(ios_base::floatfield); + str << setprecision(parent->precLinear_) << numAnnuli_-1 << ')'; + } else str << setprecision(parent->precLinear_) |