Changeset 2743 in Sophya for trunk/SophyaProg/PMixer
- Timestamp:
- May 20, 2005, 9:57:11 AM (20 years ago)
- Location:
- trunk/SophyaProg/PMixer
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PMixer/Makefile
r1417 r2743 1 MODULECXXREPNAME := PMixer 2 include ../Mgr/Makefile.h 3 4 ifdef NOSHLIB 5 LIBF = $(LIB)libFitsIOServer.a $(LIB)libSamba.a $(LIB)libSkyMap.a $(LIB)libSkyT.a $(LIB)libNTools.a $(LIB)libHiStats.a $(LIB)libTArray.a $(LIB)libSysTools.a 6 LIBS = -L$(LIB) -lFitsIOServer -lSamba -lSkyMap -lSkyT -lNTools -lHiStats -lTArray -lSysTools -lm 7 ifeq ($(CXX),cxx) 8 # librairie des instances de templates cxx 9 LIBS := $(LIBS) -lertcxx 10 endif 11 else 12 LIBF = $(SLB)libsophya.so $(SLB)libextsophya.so 13 LIBS = -L$(SLB) -lsophya -lextsophya -lm 14 endif 15 LIBSORA := $(LIBS) 16 ifdef ORACLE_HOME 17 LIBSORA := -L$(LIB) -lDb++ $(LIBS) -lErosDb -L$(ORACLE_HOME)/lib -lclntsh 18 endif 19 LDLIBS := $(LIBS) $(LDLIBS) 20 PROGS = $(EXE)skymixer $(EXE)extractRS $(EXE)tgrsr $(EXE)tgsky $(EXE)easyTest $(EXE)Sph2Sph 1 include ../BuildMgr/sophyamake.inc 2 3 PROGS = $(SOPHYAEXEP)skymixer $(SOPHYAEXEP)extractRS $(SOPHYAEXEP)tgrsr $(SOPHYAEXEP)tgsky $(SOPHYAEXEP)easyTest $(SOPHYAEXEP)Sph2Sph 21 4 22 5 all: $(PROGS) 23 6 24 7 clean: 25 8 rm -f $(PROGS) 26 if [ -d $(OBJ)cxxrep_PMixer ] ; then cd $(OBJ)cxxrep_PMixer ; rm -f *.o ; fi 27 28 skymixer: $(EXE)skymixer 29 30 $(EXE)skymixer: $(OBJ)skymixer.o 31 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 32 33 extractRS: $(EXE)extractRS 34 35 $(EXE)extractRS: $(OBJ)extractRS.o 36 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 37 38 tgrsr: $(EXE)tgrsr 39 40 $(EXE)tgrsr: $(OBJ)tgrsr.o 41 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 42 43 tgsky: $(EXE)tgsky 44 45 $(EXE)tgsky: $(OBJ)tgsky.o 46 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 47 48 easyTest: $(EXE)easyTest 49 50 $(EXE)easyTest: $(OBJ)easyTest.o 51 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 52 53 Sph2Sph: $(EXE)Sph2Sph 54 55 $(EXE)Sph2Sph: $(OBJ)Sph2Sph.o 56 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 57 58 $(OBJ)Sph2Sph.o: Sph2Sph.cc pmixer.h \ 59 $(INC)machdefs.h \ 60 $(INC)tmatrix.h \ 61 $(INC)tarray.h \ 62 $(INC)basarr.h \ 63 $(INC)anydataobj.h \ 64 $(INC)mutyv.h \ 65 $(INC)dvlist.h \ 66 $(INC)objfio.h \ 67 $(INC)ppersist.h \ 68 $(INC)pexceptions.h \ 69 $(INC)gnumd5.h \ 70 $(INC)ndatablock.h \ 71 $(INC)utilarr.h \ 72 $(INC)tvector.h \ 73 $(INC)fioarr.h \ 74 $(INC)vector3d.h \ 75 $(INC)longlat.h \ 76 $(INC)utilgeom.h \ 77 $(INC)srandgen.h \ 78 $(INC)timing.h \ 79 $(INC)sambainit.h \ 80 $(INC)skymapinit.h \ 81 $(INC)sophyainit.h \ 82 $(INC)ntoolsinit.h \ 83 $(INC)tarrinit.h \ 84 $(INC)datacards.h \ 85 $(INC)ntuple.h \ 86 $(INC)ntupintf.h \ 87 $(INC)fiospherehealpix.h \ 88 $(INC)sphericalmap.h \ 89 $(INC)smathconst.h \ 90 $(INC)pixelmap.h \ 91 $(INC)spherepos.h \ 92 $(INC)unitvector.h \ 93 $(INC)spherehealpix.h \ 94 $(INC)HEALPixUtils.h \ 95 $(INC)fitsspherehealpix.h \ 96 $(INC)fitsfile.h \ 97 $(INC)fitstarray.h \ 98 $(INC)cimage.h \ 99 $(INC)radspecvector.h \ 100 $(INC)radspec.h \ 101 $(INC)specresp.h \ 102 $(INC)blackbody.h \ 103 $(INC)convtools.h \ 104 $(INC)derivblackbody.h \ 105 $(INC)nupower.h \ 106 $(INC)squarefilt.h \ 107 $(INC)trianglefilt.h \ 108 $(INC)specrespvector.h \ 109 $(INC)gaussfilt.h \ 110 $(INC)bruit.h \ 111 $(INC)mapoperation.h 112 $(OBJ)easyTest.o: easyTest.cc $(INC)blackbody.h \ 113 $(INC)radspec.h \ 114 $(INC)machdefs.h \ 115 $(INC)specresp.h \ 116 $(INC)anydataobj.h \ 117 $(INC)objfio.h \ 118 $(INC)ppersist.h \ 119 $(INC)pexceptions.h \ 120 $(INC)gnumd5.h \ 121 $(INC)convtools.h \ 122 $(INC)radspecvector.h \ 123 $(INC)tvector.h \ 124 $(INC)tmatrix.h \ 125 $(INC)tarray.h \ 126 $(INC)basarr.h \ 127 $(INC)mutyv.h \ 128 $(INC)dvlist.h \ 129 $(INC)ndatablock.h \ 130 $(INC)utilarr.h \ 131 $(INC)specrespvector.h \ 132 $(INC)squarefilt.h \ 133 $(INC)gaussfilt.h \ 134 $(INC)trianglefilt.h 135 $(OBJ)extractRS.o: extractRS.cc pmixer.h \ 136 $(INC)machdefs.h \ 137 $(INC)tmatrix.h \ 138 $(INC)tarray.h \ 139 $(INC)basarr.h \ 140 $(INC)anydataobj.h \ 141 $(INC)mutyv.h \ 142 $(INC)dvlist.h \ 143 $(INC)objfio.h \ 144 $(INC)ppersist.h \ 145 $(INC)pexceptions.h \ 146 $(INC)gnumd5.h \ 147 $(INC)ndatablock.h \ 148 $(INC)utilarr.h \ 149 $(INC)tvector.h \ 150 $(INC)fioarr.h \ 151 $(INC)vector3d.h \ 152 $(INC)longlat.h \ 153 $(INC)utilgeom.h \ 154 $(INC)srandgen.h \ 155 $(INC)timing.h \ 156 $(INC)sambainit.h \ 157 $(INC)skymapinit.h \ 158 $(INC)sophyainit.h \ 159 $(INC)ntoolsinit.h \ 160 $(INC)tarrinit.h \ 161 $(INC)datacards.h \ 162 $(INC)ntuple.h \ 163 $(INC)ntupintf.h \ 164 $(INC)fiospherehealpix.h \ 165 $(INC)sphericalmap.h \ 166 $(INC)smathconst.h \ 167 $(INC)pixelmap.h \ 168 $(INC)spherepos.h \ 169 $(INC)unitvector.h \ 170 $(INC)spherehealpix.h \ 171 $(INC)HEALPixUtils.h \ 172 $(INC)fitsspherehealpix.h \ 173 $(INC)fitsfile.h \ 174 $(INC)fitstarray.h \ 175 $(INC)cimage.h \ 176 $(INC)radspecvector.h \ 177 $(INC)radspec.h \ 178 $(INC)specresp.h \ 179 $(INC)blackbody.h \ 180 $(INC)convtools.h \ 181 $(INC)derivblackbody.h \ 182 $(INC)nupower.h \ 183 $(INC)squarefilt.h \ 184 $(INC)trianglefilt.h \ 185 $(INC)specrespvector.h \ 186 $(INC)gaussfilt.h \ 187 $(INC)bruit.h \ 188 $(INC)mapoperation.h 189 $(OBJ)skymixer.o: skymixer.cc pmixer.h \ 190 $(INC)machdefs.h \ 191 $(INC)tmatrix.h \ 192 $(INC)tarray.h \ 193 $(INC)basarr.h \ 194 $(INC)anydataobj.h \ 195 $(INC)mutyv.h \ 196 $(INC)dvlist.h \ 197 $(INC)objfio.h \ 198 $(INC)ppersist.h \ 199 $(INC)pexceptions.h \ 200 $(INC)gnumd5.h \ 201 $(INC)ndatablock.h \ 202 $(INC)utilarr.h \ 203 $(INC)tvector.h \ 204 $(INC)fioarr.h \ 205 $(INC)vector3d.h \ 206 $(INC)longlat.h \ 207 $(INC)utilgeom.h \ 208 $(INC)srandgen.h \ 209 $(INC)timing.h \ 210 $(INC)sambainit.h \ 211 $(INC)skymapinit.h \ 212 $(INC)sophyainit.h \ 213 $(INC)ntoolsinit.h \ 214 $(INC)tarrinit.h \ 215 $(INC)datacards.h \ 216 $(INC)ntuple.h \ 217 $(INC)ntupintf.h \ 218 $(INC)fiospherehealpix.h \ 219 $(INC)sphericalmap.h \ 220 $(INC)smathconst.h \ 221 $(INC)pixelmap.h \ 222 $(INC)spherepos.h \ 223 $(INC)unitvector.h \ 224 $(INC)spherehealpix.h \ 225 $(INC)HEALPixUtils.h \ 226 $(INC)fitsspherehealpix.h \ 227 $(INC)fitsfile.h \ 228 $(INC)fitstarray.h \ 229 $(INC)cimage.h \ 230 $(INC)radspecvector.h \ 231 $(INC)radspec.h \ 232 $(INC)specresp.h \ 233 $(INC)blackbody.h \ 234 $(INC)convtools.h \ 235 $(INC)derivblackbody.h \ 236 $(INC)nupower.h \ 237 $(INC)squarefilt.h \ 238 $(INC)trianglefilt.h \ 239 $(INC)specrespvector.h \ 240 $(INC)gaussfilt.h \ 241 $(INC)bruit.h \ 242 $(INC)mapoperation.h 243 $(OBJ)tgrsr.o: tgrsr.cc pmixer.h $(INC)machdefs.h \ 244 $(INC)tmatrix.h \ 245 $(INC)tarray.h \ 246 $(INC)basarr.h \ 247 $(INC)anydataobj.h \ 248 $(INC)mutyv.h \ 249 $(INC)dvlist.h \ 250 $(INC)objfio.h \ 251 $(INC)ppersist.h \ 252 $(INC)pexceptions.h \ 253 $(INC)gnumd5.h \ 254 $(INC)ndatablock.h \ 255 $(INC)utilarr.h \ 256 $(INC)tvector.h \ 257 $(INC)fioarr.h \ 258 $(INC)vector3d.h \ 259 $(INC)longlat.h \ 260 $(INC)utilgeom.h \ 261 $(INC)srandgen.h \ 262 $(INC)timing.h \ 263 $(INC)sambainit.h \ 264 $(INC)skymapinit.h \ 265 $(INC)sophyainit.h \ 266 $(INC)ntoolsinit.h \ 267 $(INC)tarrinit.h \ 268 $(INC)datacards.h \ 269 $(INC)ntuple.h \ 270 $(INC)ntupintf.h \ 271 $(INC)fiospherehealpix.h \ 272 $(INC)sphericalmap.h \ 273 $(INC)smathconst.h \ 274 $(INC)pixelmap.h \ 275 $(INC)spherepos.h \ 276 $(INC)unitvector.h \ 277 $(INC)spherehealpix.h \ 278 $(INC)HEALPixUtils.h \ 279 $(INC)fitsspherehealpix.h \ 280 $(INC)fitsfile.h \ 281 $(INC)fitstarray.h \ 282 $(INC)cimage.h \ 283 $(INC)radspecvector.h \ 284 $(INC)radspec.h \ 285 $(INC)specresp.h \ 286 $(INC)blackbody.h \ 287 $(INC)convtools.h \ 288 $(INC)derivblackbody.h \ 289 $(INC)nupower.h \ 290 $(INC)squarefilt.h \ 291 $(INC)trianglefilt.h \ 292 $(INC)specrespvector.h \ 293 $(INC)gaussfilt.h \ 294 $(INC)bruit.h \ 295 $(INC)mapoperation.h 296 $(OBJ)tgsky.o: tgsky.cc pmixer.h $(INC)machdefs.h \ 297 $(INC)tmatrix.h \ 298 $(INC)tarray.h \ 299 $(INC)basarr.h \ 300 $(INC)anydataobj.h \ 301 $(INC)mutyv.h \ 302 $(INC)dvlist.h \ 303 $(INC)objfio.h \ 304 $(INC)ppersist.h \ 305 $(INC)pexceptions.h \ 306 $(INC)gnumd5.h \ 307 $(INC)ndatablock.h \ 308 $(INC)utilarr.h \ 309 $(INC)tvector.h \ 310 $(INC)fioarr.h \ 311 $(INC)vector3d.h \ 312 $(INC)longlat.h \ 313 $(INC)utilgeom.h \ 314 $(INC)srandgen.h \ 315 $(INC)timing.h \ 316 $(INC)sambainit.h \ 317 $(INC)skymapinit.h \ 318 $(INC)sophyainit.h \ 319 $(INC)ntoolsinit.h \ 320 $(INC)tarrinit.h \ 321 $(INC)datacards.h \ 322 $(INC)ntuple.h \ 323 $(INC)ntupintf.h \ 324 $(INC)fiospherehealpix.h \ 325 $(INC)sphericalmap.h \ 326 $(INC)smathconst.h \ 327 $(INC)pixelmap.h \ 328 $(INC)spherepos.h \ 329 $(INC)unitvector.h \ 330 $(INC)spherehealpix.h \ 331 $(INC)HEALPixUtils.h \ 332 $(INC)fitsspherehealpix.h \ 333 $(INC)fitsfile.h \ 334 $(INC)fitstarray.h \ 335 $(INC)cimage.h \ 336 $(INC)radspecvector.h \ 337 $(INC)radspec.h \ 338 $(INC)specresp.h \ 339 $(INC)blackbody.h \ 340 $(INC)convtools.h \ 341 $(INC)derivblackbody.h \ 342 $(INC)nupower.h \ 343 $(INC)squarefilt.h \ 344 $(INC)trianglefilt.h \ 345 $(INC)specrespvector.h \ 346 $(INC)gaussfilt.h \ 347 $(INC)bruit.h \ 348 $(INC)mapoperation.h 9 rm -f $(SOPHYAOBJP)Sph2Sph.o $(SOPHYAOBJP)easyTest.o $(SOPHYAOBJP)tgsky.o $(SOPHYAOBJP)tgrsr.o $(SOPHYAOBJP)extractRS.o $(SOPHYAOBJP)skymixer.o 10 11 skymixer: $(SOPHYAEXEP)skymixer 12 echo $@ " done" 13 $(SOPHYAEXEP)skymixer: $(SOPHYAOBJP)skymixer.o 14 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 15 16 extractRS: $(SOPHYAEXEP)extractRS 17 echo $@ " done" 18 $(SOPHYAEXEP)extractRS: $(SOPHYAOBJP)extractRS.o 19 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 20 21 tgrsr: $(SOPHYAEXEP)tgrsr 22 echo $@ " done" 23 $(SOPHYAEXEP)tgrsr: $(SOPHYAOBJP)tgrsr.o 24 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 25 26 tgsky: $(SOPHYAEXEP)tgsky 27 echo $@ " done" 28 $(SOPHYAEXEP)tgsky: $(SOPHYAOBJP)tgsky.o 29 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 30 31 easyTest: $(SOPHYAEXEP)easyTest 32 echo $@ " done" 33 $(SOPHYAEXEP)easyTest: $(SOPHYAOBJP)easyTest.o 34 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 35 36 Sph2Sph: $(SOPHYAEXEP)Sph2Sph 37 echo $@ " done" 38 $(SOPHYAEXEP)Sph2Sph: $(SOPHYAOBJP)Sph2Sph.o 39 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 40 41 $(SOPHYAOBJP)easyTest.o: easyTest.cc \ 42 $(SOPHYAINCP)sopnamsp.h \ 43 $(SOPHYAINCP)blackbody.h \ 44 $(SOPHYAINCP)radspec.h \ 45 $(SOPHYAINCP)machdefs.h \ 46 $(SOPHYAINCP)specresp.h \ 47 $(SOPHYAINCP)anydataobj.h \ 48 $(SOPHYAINCP)objfio.h \ 49 $(SOPHYAINCP)ppersist.h \ 50 $(SOPHYAINCP)pexceptions.h \ 51 $(SOPHYAINCP)gnumd5.h \ 52 $(SOPHYAINCP)ppfbinstream.h \ 53 $(SOPHYAINCP)rawstream.h \ 54 $(SOPHYAINCP)ppfnametag.h \ 55 $(SOPHYAINCP)convtools.h \ 56 $(SOPHYAINCP)radspecvector.h \ 57 $(SOPHYAINCP)tvector.h \ 58 $(SOPHYAINCP)tmatrix.h \ 59 $(SOPHYAINCP)tarray.h \ 60 $(SOPHYAINCP)basarr.h \ 61 $(SOPHYAINCP)mutyv.h \ 62 $(SOPHYAINCP)dvlist.h \ 63 $(SOPHYAINCP)ndatablock.h \ 64 $(SOPHYAINCP)utilarr.h \ 65 $(SOPHYAINCP)specrespvector.h \ 66 $(SOPHYAINCP)squarefilt.h \ 67 $(SOPHYAINCP)gaussfilt.h \ 68 $(SOPHYAINCP)trianglefilt.h 69 $(CXXCOMPILE) -o $@ $< 70 71 $(SOPHYAOBJP)extractRS.o: extractRS.cc \ 72 $(SOPHYAINCP)sopnamsp.h pmixer.h \ 73 $(SOPHYAINCP)machdefs.h \ 74 $(SOPHYAINCP)tmatrix.h \ 75 $(SOPHYAINCP)tarray.h \ 76 $(SOPHYAINCP)basarr.h \ 77 $(SOPHYAINCP)anydataobj.h \ 78 $(SOPHYAINCP)mutyv.h \ 79 $(SOPHYAINCP)dvlist.h \ 80 $(SOPHYAINCP)objfio.h \ 81 $(SOPHYAINCP)ppersist.h \ 82 $(SOPHYAINCP)pexceptions.h \ 83 $(SOPHYAINCP)gnumd5.h \ 84 $(SOPHYAINCP)ppfbinstream.h \ 85 $(SOPHYAINCP)rawstream.h \ 86 $(SOPHYAINCP)ppfnametag.h \ 87 $(SOPHYAINCP)ndatablock.h \ 88 $(SOPHYAINCP)utilarr.h \ 89 $(SOPHYAINCP)tvector.h \ 90 $(SOPHYAINCP)fioarr.h \ 91 $(SOPHYAINCP)vector3d.h \ 92 $(SOPHYAINCP)longlat.h \ 93 $(SOPHYAINCP)utilgeom.h \ 94 $(SOPHYAINCP)srandgen.h \ 95 $(SOPHYAINCP)timing.h \ 96 $(SOPHYAINCP)sambainit.h \ 97 $(SOPHYAINCP)skymapinit.h \ 98 $(SOPHYAINCP)sophyainit.h \ 99 $(SOPHYAINCP)ntoolsinit.h \ 100 $(SOPHYAINCP)tarrinit.h \ 101 $(SOPHYAINCP)datacards.h \ 102 $(SOPHYAINCP)ntuple.h \ 103 $(SOPHYAINCP)ntupintf.h \ 104 $(SOPHYAINCP)fiospherehealpix.h \ 105 $(SOPHYAINCP)sphericalmap.h \ 106 $(SOPHYAINCP)smathconst.h \ 107 $(SOPHYAINCP)pixelmap.h \ 108 $(SOPHYAINCP)spherepos.h \ 109 $(SOPHYAINCP)unitvector.h \ 110 $(SOPHYAINCP)spherehealpix.h \ 111 $(SOPHYAINCP)HEALPixUtils.h \ 112 $(SOPHYAINCP)fitsspherehealpix.h \ 113 $(SOPHYAINCP)fitsfile.h \ 114 $(SOPHYAINCP)FitsIO/fitsio.h \ 115 $(SOPHYAINCP)FitsIO/longnam.h \ 116 $(SOPHYAINCP)fitstarray.h \ 117 $(SOPHYAINCP)cimage.h \ 118 $(SOPHYAINCP)radspecvector.h \ 119 $(SOPHYAINCP)radspec.h \ 120 $(SOPHYAINCP)specresp.h \ 121 $(SOPHYAINCP)blackbody.h \ 122 $(SOPHYAINCP)convtools.h \ 123 $(SOPHYAINCP)derivblackbody.h \ 124 $(SOPHYAINCP)nupower.h \ 125 $(SOPHYAINCP)squarefilt.h \ 126 $(SOPHYAINCP)trianglefilt.h \ 127 $(SOPHYAINCP)specrespvector.h \ 128 $(SOPHYAINCP)gaussfilt.h \ 129 $(SOPHYAINCP)bruit.h \ 130 $(SOPHYAINCP)mapoperation.h 131 $(CXXCOMPILE) -o $@ $< 132 133 $(SOPHYAOBJP)skymixer.o: skymixer.cc \ 134 $(SOPHYAINCP)sopnamsp.h pmixer.h \ 135 $(SOPHYAINCP)machdefs.h \ 136 $(SOPHYAINCP)tmatrix.h \ 137 $(SOPHYAINCP)tarray.h \ 138 $(SOPHYAINCP)basarr.h \ 139 $(SOPHYAINCP)anydataobj.h \ 140 $(SOPHYAINCP)mutyv.h \ 141 $(SOPHYAINCP)dvlist.h \ 142 $(SOPHYAINCP)objfio.h \ 143 $(SOPHYAINCP)ppersist.h \ 144 $(SOPHYAINCP)pexceptions.h \ 145 $(SOPHYAINCP)gnumd5.h \ 146 $(SOPHYAINCP)ppfbinstream.h \ 147 $(SOPHYAINCP)rawstream.h \ 148 $(SOPHYAINCP)ppfnametag.h \ 149 $(SOPHYAINCP)ndatablock.h \ 150 $(SOPHYAINCP)utilarr.h \ 151 $(SOPHYAINCP)tvector.h \ 152 $(SOPHYAINCP)fioarr.h \ 153 $(SOPHYAINCP)vector3d.h \ 154 $(SOPHYAINCP)longlat.h \ 155 $(SOPHYAINCP)utilgeom.h \ 156 $(SOPHYAINCP)srandgen.h \ 157 $(SOPHYAINCP)timing.h \ 158 $(SOPHYAINCP)sambainit.h \ 159 $(SOPHYAINCP)skymapinit.h \ 160 $(SOPHYAINCP)sophyainit.h \ 161 $(SOPHYAINCP)ntoolsinit.h \ 162 $(SOPHYAINCP)tarrinit.h \ 163 $(SOPHYAINCP)datacards.h \ 164 $(SOPHYAINCP)ntuple.h \ 165 $(SOPHYAINCP)ntupintf.h \ 166 $(SOPHYAINCP)fiospherehealpix.h \ 167 $(SOPHYAINCP)sphericalmap.h \ 168 $(SOPHYAINCP)smathconst.h \ 169 $(SOPHYAINCP)pixelmap.h \ 170 $(SOPHYAINCP)spherepos.h \ 171 $(SOPHYAINCP)unitvector.h \ 172 $(SOPHYAINCP)spherehealpix.h \ 173 $(SOPHYAINCP)HEALPixUtils.h \ 174 $(SOPHYAINCP)fitsspherehealpix.h \ 175 $(SOPHYAINCP)fitsfile.h \ 176 $(SOPHYAINCP)FitsIO/fitsio.h \ 177 $(SOPHYAINCP)FitsIO/longnam.h \ 178 $(SOPHYAINCP)fitstarray.h \ 179 $(SOPHYAINCP)cimage.h \ 180 $(SOPHYAINCP)radspecvector.h \ 181 $(SOPHYAINCP)radspec.h \ 182 $(SOPHYAINCP)specresp.h \ 183 $(SOPHYAINCP)blackbody.h \ 184 $(SOPHYAINCP)convtools.h \ 185 $(SOPHYAINCP)derivblackbody.h \ 186 $(SOPHYAINCP)nupower.h \ 187 $(SOPHYAINCP)squarefilt.h \ 188 $(SOPHYAINCP)trianglefilt.h \ 189 $(SOPHYAINCP)specrespvector.h \ 190 $(SOPHYAINCP)gaussfilt.h \ 191 $(SOPHYAINCP)bruit.h \ 192 $(SOPHYAINCP)mapoperation.h 193 $(CXXCOMPILE) -o $@ $< 194 195 $(SOPHYAOBJP)Sph2Sph.o: Sph2Sph.cc \ 196 $(SOPHYAINCP)sopnamsp.h pmixer.h \ 197 $(SOPHYAINCP)machdefs.h \ 198 $(SOPHYAINCP)tmatrix.h \ 199 $(SOPHYAINCP)tarray.h \ 200 $(SOPHYAINCP)basarr.h \ 201 $(SOPHYAINCP)anydataobj.h \ 202 $(SOPHYAINCP)mutyv.h \ 203 $(SOPHYAINCP)dvlist.h \ 204 $(SOPHYAINCP)objfio.h \ 205 $(SOPHYAINCP)ppersist.h \ 206 $(SOPHYAINCP)pexceptions.h \ 207 $(SOPHYAINCP)gnumd5.h \ 208 $(SOPHYAINCP)ppfbinstream.h \ 209 $(SOPHYAINCP)rawstream.h \ 210 $(SOPHYAINCP)ppfnametag.h \ 211 $(SOPHYAINCP)ndatablock.h \ 212 $(SOPHYAINCP)utilarr.h \ 213 $(SOPHYAINCP)tvector.h \ 214 $(SOPHYAINCP)fioarr.h \ 215 $(SOPHYAINCP)vector3d.h \ 216 $(SOPHYAINCP)longlat.h \ 217 $(SOPHYAINCP)utilgeom.h \ 218 $(SOPHYAINCP)srandgen.h \ 219 $(SOPHYAINCP)timing.h \ 220 $(SOPHYAINCP)sambainit.h \ 221 $(SOPHYAINCP)skymapinit.h \ 222 $(SOPHYAINCP)sophyainit.h \ 223 $(SOPHYAINCP)ntoolsinit.h \ 224 $(SOPHYAINCP)tarrinit.h \ 225 $(SOPHYAINCP)datacards.h \ 226 $(SOPHYAINCP)ntuple.h \ 227 $(SOPHYAINCP)ntupintf.h \ 228 $(SOPHYAINCP)fiospherehealpix.h \ 229 $(SOPHYAINCP)sphericalmap.h \ 230 $(SOPHYAINCP)smathconst.h \ 231 $(SOPHYAINCP)pixelmap.h \ 232 $(SOPHYAINCP)spherepos.h \ 233 $(SOPHYAINCP)unitvector.h \ 234 $(SOPHYAINCP)spherehealpix.h \ 235 $(SOPHYAINCP)HEALPixUtils.h \ 236 $(SOPHYAINCP)fitsspherehealpix.h \ 237 $(SOPHYAINCP)fitsfile.h \ 238 $(SOPHYAINCP)FitsIO/fitsio.h \ 239 $(SOPHYAINCP)FitsIO/longnam.h \ 240 $(SOPHYAINCP)fitstarray.h \ 241 $(SOPHYAINCP)cimage.h \ 242 $(SOPHYAINCP)radspecvector.h \ 243 $(SOPHYAINCP)radspec.h \ 244 $(SOPHYAINCP)specresp.h \ 245 $(SOPHYAINCP)blackbody.h \ 246 $(SOPHYAINCP)convtools.h \ 247 $(SOPHYAINCP)derivblackbody.h \ 248 $(SOPHYAINCP)nupower.h \ 249 $(SOPHYAINCP)squarefilt.h \ 250 $(SOPHYAINCP)trianglefilt.h \ 251 $(SOPHYAINCP)specrespvector.h \ 252 $(SOPHYAINCP)gaussfilt.h \ 253 $(SOPHYAINCP)bruit.h \ 254 $(SOPHYAINCP)mapoperation.h 255 $(CXXCOMPILE) -o $@ $< 256 257 $(SOPHYAOBJP)tgrsr.o: tgrsr.cc $(SOPHYAINCP)sopnamsp.h \ 258 pmixer.h $(SOPHYAINCP)machdefs.h \ 259 $(SOPHYAINCP)tmatrix.h \ 260 $(SOPHYAINCP)tarray.h \ 261 $(SOPHYAINCP)basarr.h \ 262 $(SOPHYAINCP)anydataobj.h \ 263 $(SOPHYAINCP)mutyv.h \ 264 $(SOPHYAINCP)dvlist.h \ 265 $(SOPHYAINCP)objfio.h \ 266 $(SOPHYAINCP)ppersist.h \ 267 $(SOPHYAINCP)pexceptions.h \ 268 $(SOPHYAINCP)gnumd5.h \ 269 $(SOPHYAINCP)ppfbinstream.h \ 270 $(SOPHYAINCP)rawstream.h \ 271 $(SOPHYAINCP)ppfnametag.h \ 272 $(SOPHYAINCP)ndatablock.h \ 273 $(SOPHYAINCP)utilarr.h \ 274 $(SOPHYAINCP)tvector.h \ 275 $(SOPHYAINCP)fioarr.h \ 276 $(SOPHYAINCP)vector3d.h \ 277 $(SOPHYAINCP)longlat.h \ 278 $(SOPHYAINCP)utilgeom.h \ 279 $(SOPHYAINCP)srandgen.h \ 280 $(SOPHYAINCP)timing.h \ 281 $(SOPHYAINCP)sambainit.h \ 282 $(SOPHYAINCP)skymapinit.h \ 283 $(SOPHYAINCP)sophyainit.h \ 284 $(SOPHYAINCP)ntoolsinit.h \ 285 $(SOPHYAINCP)tarrinit.h \ 286 $(SOPHYAINCP)datacards.h \ 287 $(SOPHYAINCP)ntuple.h \ 288 $(SOPHYAINCP)ntupintf.h \ 289 $(SOPHYAINCP)fiospherehealpix.h \ 290 $(SOPHYAINCP)sphericalmap.h \ 291 $(SOPHYAINCP)smathconst.h \ 292 $(SOPHYAINCP)pixelmap.h \ 293 $(SOPHYAINCP)spherepos.h \ 294 $(SOPHYAINCP)unitvector.h \ 295 $(SOPHYAINCP)spherehealpix.h \ 296 $(SOPHYAINCP)HEALPixUtils.h \ 297 $(SOPHYAINCP)fitsspherehealpix.h \ 298 $(SOPHYAINCP)fitsfile.h \ 299 $(SOPHYAINCP)FitsIO/fitsio.h \ 300 $(SOPHYAINCP)FitsIO/longnam.h \ 301 $(SOPHYAINCP)fitstarray.h \ 302 $(SOPHYAINCP)cimage.h \ 303 $(SOPHYAINCP)radspecvector.h \ 304 $(SOPHYAINCP)radspec.h \ 305 $(SOPHYAINCP)specresp.h \ 306 $(SOPHYAINCP)blackbody.h \ 307 $(SOPHYAINCP)convtools.h \ 308 $(SOPHYAINCP)derivblackbody.h \ 309 $(SOPHYAINCP)nupower.h \ 310 $(SOPHYAINCP)squarefilt.h \ 311 $(SOPHYAINCP)trianglefilt.h \ 312 $(SOPHYAINCP)specrespvector.h \ 313 $(SOPHYAINCP)gaussfilt.h \ 314 $(SOPHYAINCP)bruit.h \ 315 $(SOPHYAINCP)mapoperation.h 316 $(CXXCOMPILE) -o $@ $< 317 318 $(SOPHYAOBJP)tgsky.o: tgsky.cc $(SOPHYAINCP)sopnamsp.h \ 319 pmixer.h $(SOPHYAINCP)machdefs.h \ 320 $(SOPHYAINCP)tmatrix.h \ 321 $(SOPHYAINCP)tarray.h \ 322 $(SOPHYAINCP)basarr.h \ 323 $(SOPHYAINCP)anydataobj.h \ 324 $(SOPHYAINCP)mutyv.h \ 325 $(SOPHYAINCP)dvlist.h \ 326 $(SOPHYAINCP)objfio.h \ 327 $(SOPHYAINCP)ppersist.h \ 328 $(SOPHYAINCP)pexceptions.h \ 329 $(SOPHYAINCP)gnumd5.h \ 330 $(SOPHYAINCP)ppfbinstream.h \ 331 $(SOPHYAINCP)rawstream.h \ 332 $(SOPHYAINCP)ppfnametag.h \ 333 $(SOPHYAINCP)ndatablock.h \ 334 $(SOPHYAINCP)utilarr.h \ 335 $(SOPHYAINCP)tvector.h \ 336 $(SOPHYAINCP)fioarr.h \ 337 $(SOPHYAINCP)vector3d.h \ 338 $(SOPHYAINCP)longlat.h \ 339 $(SOPHYAINCP)utilgeom.h \ 340 $(SOPHYAINCP)srandgen.h \ 341 $(SOPHYAINCP)timing.h \ 342 $(SOPHYAINCP)sambainit.h \ 343 $(SOPHYAINCP)skymapinit.h \ 344 $(SOPHYAINCP)sophyainit.h \ 345 $(SOPHYAINCP)ntoolsinit.h \ 346 $(SOPHYAINCP)tarrinit.h \ 347 $(SOPHYAINCP)datacards.h \ 348 $(SOPHYAINCP)ntuple.h \ 349 $(SOPHYAINCP)ntupintf.h \ 350 $(SOPHYAINCP)fiospherehealpix.h \ 351 $(SOPHYAINCP)sphericalmap.h \ 352 $(SOPHYAINCP)smathconst.h \ 353 $(SOPHYAINCP)pixelmap.h \ 354 $(SOPHYAINCP)spherepos.h \ 355 $(SOPHYAINCP)unitvector.h \ 356 $(SOPHYAINCP)spherehealpix.h \ 357 $(SOPHYAINCP)HEALPixUtils.h \ 358 $(SOPHYAINCP)fitsspherehealpix.h \ 359 $(SOPHYAINCP)fitsfile.h \ 360 $(SOPHYAINCP)FitsIO/fitsio.h \ 361 $(SOPHYAINCP)FitsIO/longnam.h \ 362 $(SOPHYAINCP)fitstarray.h \ 363 $(SOPHYAINCP)cimage.h \ 364 $(SOPHYAINCP)radspecvector.h \ 365 $(SOPHYAINCP)radspec.h \ 366 $(SOPHYAINCP)specresp.h \ 367 $(SOPHYAINCP)blackbody.h \ 368 $(SOPHYAINCP)convtools.h \ 369 $(SOPHYAINCP)derivblackbody.h \ 370 $(SOPHYAINCP)nupower.h \ 371 $(SOPHYAINCP)squarefilt.h \ 372 $(SOPHYAINCP)trianglefilt.h \ 373 $(SOPHYAINCP)specrespvector.h \ 374 $(SOPHYAINCP)gaussfilt.h \ 375 $(SOPHYAINCP)bruit.h \ 376 $(SOPHYAINCP)mapoperation.h 377 $(CXXCOMPILE) -o $@ $< 378
Note:
See TracChangeset
for help on using the changeset viewer.