Changeset 1311 in Sophya


Ignore:
Timestamp:
Nov 9, 2000, 4:39:42 PM (25 years ago)
Author:
ansari
Message:

MAJ Makefile , Reza 9/11/2000

Location:
trunk/SophyaExt/FitsIOServer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/Makefile

    r1223 r1311  
    33all: $(LIB)libFitsIOServer.a
    44clean:
    5         rm -f $(OBJ)fitsbntbllineRW.o $(OBJ)fitsfile.o $(OBJ)fitslocalmap.o $(OBJ)fitsntuple.o $(OBJ)fitsspherehealpix.o $(OBJ)fitstarray.o $(OBJ)fitsxntuple.o
     5        rm -f $(OBJ)fitsautoreader.o $(OBJ)fitsbntbllineRW.o $(OBJ)fitsfile.o $(OBJ)fitslocalmap.o $(OBJ)fitsntuple.o $(OBJ)fitsspherehealpix.o $(OBJ)fitstarray.o $(OBJ)fitsxntuple.o
    66        rm -f $(LIB)libFitsIOServer.a
    7 $(LIB)libFitsIOServer.a : $(OBJ)fitsbntbllineRW.o $(OBJ)fitsfile.o $(OBJ)fitslocalmap.o $(OBJ)fitsntuple.o $(OBJ)fitsspherehealpix.o $(OBJ)fitstarray.o $(OBJ)fitsxntuple.o
     7$(LIB)libFitsIOServer.a : $(OBJ)fitsautoreader.o $(OBJ)fitsbntbllineRW.o $(OBJ)fitsfile.o $(OBJ)fitslocalmap.o $(OBJ)fitsntuple.o $(OBJ)fitsspherehealpix.o $(OBJ)fitstarray.o $(OBJ)fitsxntuple.o
    88        $(ARCXX) $(ARCXXFLAGS) $@ $?
    99ifeq ($(CXX),cxx)
     
    1111endif
    1212 
     13$(OBJ)fitsautoreader.o: fitsautoreader.cc \
     14 $(INC)pexceptions.h \
     15 $(INC)machdefs.h fitsautoreader.h \
     16 $(INC)anydataobj.h fitsfile.h \
     17 $(INC)ndatablock.h \
     18 $(INC)dvlist.h \
     19 $(INC)objfio.h \
     20 $(INC)ppersist.h \
     21 $(INC)gnumd5.h \
     22 $(INC)mutyv.h \
     23 $(EXTINCPATH)FitsIO/fitsio.h \
     24 $(EXTINCPATH)FitsIO/longnam.h fitstarray.h \
     25 $(INC)tarray.h \
     26 $(INC)basarr.h \
     27 $(INC)utilarr.h fitsspherehealpix.h \
     28 $(INC)spherehealpix.h \
     29 $(INC)sphericalmap.h \
     30 $(INC)smathconst.h \
     31 $(INC)pixelmap.h \
     32 $(INC)spherepos.h \
     33 $(INC)unitvector.h \
     34 $(INC)vector3d.h \
     35 $(INC)longlat.h \
     36 $(INC)utilgeom.h \
     37 $(INC)tvector.h \
     38 $(INC)tmatrix.h \
     39 $(INC)HEALPixUtils.h fitsntuple.h \
     40 $(INC)ntuple.h \
     41 $(INC)ntupintf.h fitsxntuple.h \
     42 $(INC)xntuple.h fitslocalmap.h \
     43 $(INC)localmap.h
    1344$(OBJ)fitsbntbllineRW.o: fitsbntbllineRW.cc \
    1445 $(INC)pexceptions.h \
  • trunk/SophyaExt/FitsIOServer/fitsfile.cc

    r1300 r1311  
    16441644  for(it = dvl.Begin(); it != dvl.End(); it++)
    16451645    {
    1646       char keytype= (*it).second.elval.typ;
     1646      MuTyV::MTVType keytype= (*it).second.elval.Type();
    16471647      char keyname[10];
    16481648      strncpy(keyname,(*it).first.substr(0,64).c_str(),10);
     
    16611661          switch (keytype)
    16621662            {
    1663             case 'I' :
     1663            case MuTyV::MTVInteger :
    16641664              {
    16651665                int ival = (int)dvl.GetI(key);
     
    16671667                break;
    16681668              }
    1669             case 'D' :
     1669            case MuTyV::MTVFloat :
    16701670              {
    16711671                double dval= (double)dvl.GetD(key);
     
    16731673                break;
    16741674              }
    1675             case 'S' :
     1675            case MuTyV::MTVString :
    16761676              {
    16771677                char strvaleur[FLEN_VALUE]= "";
Note: See TracChangeset for help on using the changeset viewer.