diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-03-21 18:25:27 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-03-21 18:25:27 (GMT) |
commit | 64b6dc62d5a67547ead9103d5c86837290147539 (patch) | |
tree | 8a250644ea332d1be713553e3f4fb703cb362864 /tksao/frame/boxannulus.C | |
parent | 078329136ce02fc6578728f08906ed88738a92f1 (diff) | |
download | blt-64b6dc62d5a67547ead9103d5c86837290147539.zip blt-64b6dc62d5a67547ead9103d5c86837290147539.tar.gz blt-64b6dc62d5a67547ead9103d5c86837290147539.tar.bz2 |
clean up region list code
Diffstat (limited to 'tksao/frame/boxannulus.C')
-rw-r--r-- | tksao/frame/boxannulus.C | 39 |
1 files changed, 13 insertions, 26 deletions
diff --git a/tksao/frame/boxannulus.C b/tksao/frame/boxannulus.C index f99e190..0b6d35f 100644 --- a/tksao/frame/boxannulus.C +++ b/tksao/frame/boxannulus.C @@ -291,7 +291,7 @@ void BoxAnnulus::list(ostream& str, Coord::CoordSystem sys, Coord::SkyFrame sky, case Coord::DEGREES: { Vector vv = ptr->mapFromRef(center,sys,sky); - str << "box(" << setprecision(8) << vv + str << "box(" << setprecision(10) << vv << setprecision(3) << fixed; for (int ii=0; ii<numAnnuli_; ii++) { Vector rr = ptr->mapLenFromRef(annuli_[ii],sys,Coord::ARCSEC); @@ -369,13 +369,11 @@ void BoxAnnulus::listPros(ostream& str, Coord::CoordSystem sys, str << "; "; Vector rr = ptr->mapLenFromRef(annuli_[ii],Coord::IMAGE); - str << "box " << setprecision(8) << vv << ' ' << rr << ' ' - << radToDeg(angle); + str << "box " << vv << ' ' << rr << ' ' << radToDeg(angle); if (ii!=0) { Vector r1 = ptr->mapLenFromRef(annuli_[ii-1],Coord::IMAGE); - str << " & !box " << setprecision(8) << vv << ' ' << r1 << ' ' - << radToDeg(angle); + str << " & !box " << vv << ' ' << r1 << ' ' << radToDeg(angle); } listProsPost(str, strip); @@ -393,19 +391,13 @@ void BoxAnnulus::listPros(ostream& str, Coord::CoordSystem sys, str << "; "; Vector rr = ptr->mapLenFromRef(annuli_[ii],sys,Coord::ARCSEC); - str << "box " - << setprecision(10) << setunit('d') << vv << ' ' - << setprecision(3) << setunit('"') << fixed << rr << ' '; - str.unsetf(ios_base::floatfield); - str << setprecision(8) << radToDeg(angle); + str << "box " << setunit('d') << vv << ' ' + << setunit('"') << rr << ' ' << radToDeg(angle); if (ii!=0) { Vector r1 = ptr->mapLenFromRef(annuli_[ii-1],sys,Coord::ARCSEC); - str << " & !box " - << setprecision(8) << setunit('d') << vv << ' ' - << setprecision(3) << setunit('"') << fixed << r1 << ' '; - str.unsetf(ios_base::floatfield); - str << setprecision(8) << radToDeg(angle); + str << " & !box " << setunit('d') << vv << ' ' + << setunit('"') << r1 << ' ' << radToDeg(angle); } listProsPost(str, strip); @@ -419,17 +411,13 @@ void BoxAnnulus::listPros(ostream& str, Coord::CoordSystem sys, str << "; "; Vector rr = ptr->mapLenFromRef(annuli_[ii],sys,Coord::ARCSEC); - str << "box " << ra << ' ' << dec << ' ' - << setprecision(3) << setunit('"') << fixed << rr << ' '; - str.unsetf(ios_base::floatfield); - str << setprecision(8) << radToDeg(angle); + str << "box " << ra << ' ' << dec << ' ' << setunit('"') << rr << ' ' + << radToDeg(angle); if (ii!=0) { Vector r1 = ptr->mapLenFromRef(annuli_[ii-1],sys,Coord::ARCSEC); str << " & !box " << ra << ' ' << dec << ' ' - << setprecision(3) << setunit('"') << fixed << r1 << ' '; - str.unsetf(ios_base::floatfield); - str << setprecision(8) << radToDeg(angle); + << setunit('"') << r1 << ' ' << radToDeg(angle); } listProsPost(str, strip); @@ -447,12 +435,11 @@ void BoxAnnulus::listSAOimage(ostream& str, int strip) for (int ii=0; ii<numAnnuli_; ii++) { Vector vv = ptr->mapFromRef(center,Coord::IMAGE); - str << "box(" << setprecision(8) << vv << ',' - << annuli_[ii] << ',' << radToDeg(angle) << ')'; + str << "box(" << vv << ',' << annuli_[ii] << ',' << radToDeg(angle) << ')'; if (ii!=0) - str << " & !box(" << setprecision(8) << vv << ',' - << annuli_[ii-1] << ',' << radToDeg(angle) << ')'; + str << " & !box(" << vv << ',' << annuli_[ii-1] << ',' + << radToDeg(angle) << ')'; listSAOimagePost(str, strip); } |