Changeset 2974 in Sophya for trunk


Ignore:
Timestamp:
Jun 20, 2006, 6:02:42 PM (19 years ago)
Author:
ansari
Message:

correction commentaires et petites adaptation suite modif classe SphereCoordSys , Reza 20/6/2006

Location:
trunk/SophyaExt/FitsIOServer
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fitsinoutfile.h

    r2937 r2974  
    7070};
    7171
    72 /*!
    73   \ingroup FitsIOServer
    74   \brief  Wrapper class for cfitsio library functions
    75 */
     72//------ Wrapper class for cfitsio library functions
    7673class FitsInOutFile {
    7774public :
  • trunk/SophyaExt/FitsIOServer/fitsspherehealpix.cc

    r2963 r2974  
    196196    }
    197197  // Let's Read the SphereCoordSys object
    198   int id= SphereCoordSys_NEUTRAL;
     198  int id= SphereCoordSys::NEUTRAL;
    199199  string description= "NEUTRAL SphereCoordSystem";
    200200  string coordsys= dvl.GetS("COORDSYS");
     
    203203  if(coordsys.substr(0,8) == "ROTATION")
    204204    {
    205       id= SphereCoordSys_ROTATION;
     205      id= SphereCoordSys::ROTATION;
    206206      description= "ROTATION SphereCoordSystem";
    207207    }
     
    209209  else if(coordsys.substr(0,5)  == "OTHER" )
    210210    {
    211       id= SphereCoordSys_OTHER;
     211      id= SphereCoordSys::OTHER;
    212212      description= "OTHER SphereCoordSystem";
    213213    }
  • trunk/SophyaExt/FitsIOServer/fitsspherethetaphi.cc

    r2898 r2974  
    209209 
    210210  // Let's Read the SphereCoordSys object
    211   int id= SphereCoordSys_NEUTRAL;
     211  int id= SphereCoordSys::NEUTRAL;
    212212  string description= "NEUTRAL SphereCoordSystem";
    213213  string coordsys= dvl.GetS("COORDSYS");
    214214  if(coordsys.substr(0,8) == "ROTATION")
    215215    {
    216       id= SphereCoordSys_ROTATION;
     216      id= SphereCoordSys::ROTATION;
    217217      description= "ROTATION SphereCoordSystem";
    218218    }
    219219  else if(coordsys.substr(0,5)  == "OTHER" )
    220220    {
    221       id= SphereCoordSys_OTHER;
     221      id= SphereCoordSys::OTHER;
    222222      description= "OTHER SphereCoordSystem";
    223223    }
Note: See TracChangeset for help on using the changeset viewer.