Changeset 1535 in Sophya
- Timestamp:
- Jun 15, 2001, 7:04:34 PM (24 years ago)
- Location:
- trunk/SophyaProg
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PrgMap/cl2map.cc
r1441 r1535 111 111 112 112 if (fgfitsout) { 113 cout << "--- Writing map to Output FITS file " << outfile << endl; 113 cout << "--- Writing map to Output FITS file " << outfile << endl; 114 string dum = "rm -f "; dum += outfile; system(dum.c_str()); 114 115 FitsOutFile fio(outfile); 115 116 fio << sph; -
trunk/SophyaProg/PrgMap/cremskfrsph.cc
r1528 r1535 61 61 cout<<"Sphere values : "<<sphval<<endl 62 62 <<"Sphere mask : "<<sphmsk<<endl 63 <<" ...min "<<vmin<<" max"<<vmax<<endl63 <<" ...min("<<tstmin<<") "<<vmin<<" max("<<tstmax<<") "<<vmax<<endl 64 64 <<" ...negate "<<negate<<endl 65 65 <<" ...mask set value "<<vmask<<endl -
trunk/SophyaProg/PrgUtil/Makefile
r1528 r1535 15 15 LIBSORA := $(LIBS) 16 16 LDLIBS := $(LIBS) $(LDLIBS) 17 PROGS = $(EXE)runcxx $(EXE)scanppf $(EXE)scanfits $(EXE)cl2map $(EXE)map2cl $(EXE)prjsmap \ 18 $(EXE)cremskfrsph $(EXE)extrapsph $(EXE)extrap2sph 19 20 PROBJS = $(OBJ)runcxx.o $(OBJ)scanppf.o $(OBJ)scanfits.o $(OBJ)cl2map.o $(OBJ)map2cl.o \ 21 $(OBJ)prjsmap.o $(OBJ)cremskfrsph.o $(OBJ)extrapsph.o $(OBJ)extrap2sph.o 17 PROGS = $(EXE)runcxx $(EXE)scanppf $(EXE)scanfits $(EXE)cl2map $(EXE)map2cl \ 18 $(EXE)prjsmap $(EXE)cremskfrsph $(EXE)msksphere $(EXE)extrapsph \ 19 $(EXE)extrap2sph 20 21 PROBJS = $(OBJ)runcxx.o $(OBJ)scanppf.o $(OBJ)scanfits.o $(OBJ)cl2map.o \ 22 $(OBJ)map2cl.o $(OBJ)prjsmap.o $(OBJ)cremskfrsph.o $(OBJ)msksphere.o \ 23 $(OBJ)extrapsph.o $(OBJ)extrap2sph.o 22 24 23 25 all: $(PROGS) … … 61 63 @ echo cremskfrsph done 62 64 $(EXE)cremskfrsph: $(OBJ)cremskfrsph.o 65 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 66 67 msksphere: $(EXE)msksphere 68 @ echo msksphere done 69 $(EXE)msksphere: $(OBJ)msksphere.o 63 70 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 64 71 … … 406 413 $(INC)fitsspherehealpix.h \ 407 414 $(INC)fitsfile.h 415 $(OBJ)msksphere.o: msksphere.cc \ 416 $(INC)machdefs.h \ 417 $(INC)skymapinit.h \ 418 $(INC)sophyainit.h \ 419 $(INC)skymap.h \ 420 $(INC)spherethetaphi.h \ 421 $(INC)sphericalmap.h \ 422 $(INC)smathconst.h \ 423 $(INC)pixelmap.h \ 424 $(INC)ppersist.h \ 425 $(INC)pexceptions.h \ 426 $(INC)gnumd5.h \ 427 $(INC)dvlist.h \ 428 $(INC)objfio.h \ 429 $(INC)anydataobj.h \ 430 $(INC)mutyv.h \ 431 $(INC)spherepos.h \ 432 $(INC)unitvector.h \ 433 $(INC)vector3d.h \ 434 $(INC)longlat.h \ 435 $(INC)utilgeom.h \ 436 $(INC)tvector.h \ 437 $(INC)tmatrix.h \ 438 $(INC)tarray.h \ 439 $(INC)basarr.h \ 440 $(INC)ndatablock.h \ 441 $(INC)utilarr.h \ 442 $(INC)spherehealpix.h \ 443 $(INC)HEALPixUtils.h \ 444 $(INC)localmap.h \ 445 $(INC)fiospherethetaphi.h \ 446 $(INC)fiospherehealpix.h \ 447 $(INC)fiolocalmap.h \ 448 $(INC)fitsspherehealpix.h \ 449 $(INC)fitsfile.h
Note:
See TracChangeset
for help on using the changeset viewer.