diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-08-12 19:45:17 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-08-12 19:45:17 (GMT) |
commit | 39c2c6a9b4f156271ee72313e77eef2d2825bac9 (patch) | |
tree | da892841a2c5722b77aa864f21f953e9c2132a66 /tksao/frame/point.C | |
parent | c893a55afe291e8faf832f17be85f5433e772ebb (diff) | |
download | blt-39c2c6a9b4f156271ee72313e77eef2d2825bac9.zip blt-39c2c6a9b4f156271ee72313e77eef2d2825bac9.tar.gz blt-39c2c6a9b4f156271ee72313e77eef2d2825bac9.tar.bz2 |
update marker precision
Diffstat (limited to 'tksao/frame/point.C')
-rw-r--r-- | tksao/frame/point.C | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tksao/frame/point.C b/tksao/frame/point.C index f5e88f9..430acfd 100644 --- a/tksao/frame/point.C +++ b/tksao/frame/point.C @@ -903,10 +903,9 @@ void Point::listSAOimage(ostream& str, int strip) FitsImage* ptr = parent->findFits(); listSAOimagePre(str); - // all coords are in image coords - - Vector vv = ptr->mapFromRef(center,Coord::IMAGE); - str << type_ << '(' << setprecision(parent->precLinear_) << vv << ')'; + str << type_ << '(' + << setprecision(parent->precLinear_) + << ptr->mapFromRef(center,Coord::IMAGE) << ')'; listSAOimagePost(str, strip); } |