Changeset 2974 in Sophya for trunk/SophyaExt
- Timestamp:
- Jun 20, 2006, 6:02:42 PM (19 years ago)
- Location:
- trunk/SophyaExt/FitsIOServer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsinoutfile.h
r2937 r2974 70 70 }; 71 71 72 /*! 73 \ingroup FitsIOServer 74 \brief Wrapper class for cfitsio library functions 75 */ 72 //------ Wrapper class for cfitsio library functions 76 73 class FitsInOutFile { 77 74 public : -
trunk/SophyaExt/FitsIOServer/fitsspherehealpix.cc
r2963 r2974 196 196 } 197 197 // Let's Read the SphereCoordSys object 198 int id= SphereCoordSys _NEUTRAL;198 int id= SphereCoordSys::NEUTRAL; 199 199 string description= "NEUTRAL SphereCoordSystem"; 200 200 string coordsys= dvl.GetS("COORDSYS"); … … 203 203 if(coordsys.substr(0,8) == "ROTATION") 204 204 { 205 id= SphereCoordSys _ROTATION;205 id= SphereCoordSys::ROTATION; 206 206 description= "ROTATION SphereCoordSystem"; 207 207 } … … 209 209 else if(coordsys.substr(0,5) == "OTHER" ) 210 210 { 211 id= SphereCoordSys _OTHER;211 id= SphereCoordSys::OTHER; 212 212 description= "OTHER SphereCoordSystem"; 213 213 } -
trunk/SophyaExt/FitsIOServer/fitsspherethetaphi.cc
r2898 r2974 209 209 210 210 // Let's Read the SphereCoordSys object 211 int id= SphereCoordSys _NEUTRAL;211 int id= SphereCoordSys::NEUTRAL; 212 212 string description= "NEUTRAL SphereCoordSystem"; 213 213 string coordsys= dvl.GetS("COORDSYS"); 214 214 if(coordsys.substr(0,8) == "ROTATION") 215 215 { 216 id= SphereCoordSys _ROTATION;216 id= SphereCoordSys::ROTATION; 217 217 description= "ROTATION SphereCoordSystem"; 218 218 } 219 219 else if(coordsys.substr(0,5) == "OTHER" ) 220 220 { 221 id= SphereCoordSys _OTHER;221 id= SphereCoordSys::OTHER; 222 222 description= "OTHER SphereCoordSystem"; 223 223 }
Note:
See TracChangeset
for help on using the changeset viewer.