Changeset 837 in Sophya
- Timestamp:
- Apr 7, 2000, 3:19:09 PM (25 years ago)
- Location:
- trunk/SophyaProg/Tests
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/Tests/fitsServTest.cc
r768 r837 58 58 // Définition de la sphère 59 59 int m=nsmax; 60 floatteta,phi;60 double teta,phi; 61 61 SphereGorski<float> sph1(nsmax); 62 62 //SphereThetaPhi sph1(nsmax); … … 107 107 for (int j=0;j<sph1.NbPixels();j++) 108 108 { 109 floatteta,phi;109 double teta,phi; 110 110 sph1.PixThetaPhi(j,teta,phi); 111 111 //int bid= sph1.PixIndexSphNest(teta,phi); … … 118 118 for (int k=0; k< lcl.NbPixels(); k++) 119 119 { 120 floattheta, phi;120 double theta, phi; 121 121 lcl.PixThetaPhi(k, theta, phi); 122 122 lcl(k)=sph1(sph1.PixIndexSph( theta, phi)); -
trunk/SophyaProg/Tests/fitsioGorski.cc
r768 r837 2 2 #include <iostream.h> 3 3 // Utilisation de la classe LocalMap<T> 4 #include " outilsinit.h"4 #include "ntoolsinit.h" 5 5 #include "spheregorski.h" 6 6 #include "ntuple.h" -
trunk/SophyaProg/Tests/fitsioImage.cc
r768 r837 2 2 #include <iostream.h> 3 3 // Utilisation de la classe Image<T> 4 #include " outilsinit.h"4 #include "ntoolsinit.h" 5 5 #include "cimage.h" 6 6 // Utilisation des generateurs aleatoires -
trunk/SophyaProg/Tests/fitsioLocMap.cc
r768 r837 2 2 #include <iostream.h> 3 3 // Utilisation de la classe LocalMap<T> 4 #include " outilsinit.h"4 #include "ntoolsinit.h" 5 5 #include "localmap.h" 6 6 -
trunk/SophyaProg/Tests/fitsioSphere.cc
r768 r837 2 2 #include <iostream.h> 3 3 // Utilisation de la classe LocalMap<T> 4 #include " outilsinit.h"4 #include "ntoolsinit.h" 5 5 #include "spheregorski.h" 6 6 -
trunk/SophyaProg/Tests/testfitsio.cc
r768 r837 55 55 // Définition de la sphère 56 56 int m=nsmax; 57 floatteta,phi;57 double teta,phi; 58 58 SphereGorski<float> sph1(nsmax); 59 59 //SphereThetaPhi sph1(nsmax); … … 104 104 for (int j=0;j<sph1.NbPixels();j++) 105 105 { 106 floatteta,phi;106 double teta,phi; 107 107 sph1.PixThetaPhi(j,teta,phi); 108 108 //int bid= sph1.PixIndexSphNest(teta,phi); … … 115 115 for (int k=0; k< lcl.NbPixels(); k++) 116 116 { 117 floattheta, phi;117 double theta, phi; 118 118 lcl.PixThetaPhi(k, theta, phi); 119 119 lcl(k)=sph1(sph1.PixIndexSph( theta, phi)); -
trunk/SophyaProg/Tests/timg.cc
r768 r837 9 9 // Test des NDataBlock 10 10 #include "ndatablock.h" 11 #include "fiondblock.h" 11 12 #include <complex> 12 13
Note:
See TracChangeset
for help on using the changeset viewer.