Changeset 2973 in Sophya for trunk/SophyaLib/SkyMap/spherepos.cc
- Timestamp:
- Jun 20, 2006, 6:01:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyMap/spherepos.cc
r2615 r2973 1 // Classes SphereCoordSys , SpherePosition 2 // G. Le Meur 2000 3 // R. Ansari 2006 (documentation/commentaire) 4 // LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA 5 1 6 // 04/01/00 : implantation de la persistance par classe deleguee - Guy Le Meur 2 7 … … 6 11 #include <typeinfo> 7 12 8 static char *head_spherepos_cc_ = "$Header: /Users/garnier/temp/CVSSophya/SophyaLib/SkyMap/spherepos.cc,v 1. 3 2004-09-10 09:54:31 cmvExp $";13 static char *head_spherepos_cc_ = "$Header: /Users/garnier/temp/CVSSophya/SophyaLib/SkyMap/spherepos.cc,v 1.4 2006-06-20 16:01:48 ansari Exp $"; 9 14 10 15 11 16 //................. SphereCoordSys class ................. 12 17 18 /*! 19 \class SOPHYA::SphereCoordSys 20 \ingroup SkyMap 21 \brief Class which describes the coordinate system used in spherical maps 22 Current implementation (~ 2006 ) does NOT perform any coordinate transformation 23 \sa SOPHYA::PixelMap 24 */ 25 13 26 SphereCoordSys::SphereCoordSys(){ 14 id_ = SphereCoordSys _NEUTRAL;27 id_ = SphereCoordSys::NEUTRAL; 15 28 description_ = "NEUTRAL SphereCoordSystem"; 16 29 } … … 21 34 } 22 35 23 SphereCoordSys::SphereCoordSys(int id, const string& description){ 36 SphereCoordSys::SphereCoordSys(int id, 37 const string& description){ 24 38 id_ = id; 25 39 description_ = description; … … 112 126 113 127 //................. SpherePosition class ................. 128 /*! 129 \class SOPHYA::SpherePosition 130 \ingroup SkyMap 131 \brief Class to define a (angular) position on a sphere, combined a coordinate system 132 Current implementation (~ 2006 ) does NOT perform any coordinate transformation 133 \sa SOPHYA::PixelMap 134 */ 114 135 115 136 SpherePosition::SpherePosition()
Note:
See TracChangeset
for help on using the changeset viewer.