Changeset 855 in Sophya for trunk/SophyaPI
- Timestamp:
- Apr 10, 2000, 3:03:01 PM (25 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomskymapadapter.cc
r815 r855 8 8 9 9 #include "nomskymapadapter.h" 10 #include "spherethetaphi.h" 11 #include "spheregorski.h" 12 #include "localmap.h" 10 #include "skymap.h" 13 11 #include "pitvmaad.h" 14 12 #include "complexios.h" … … 83 81 SphereThetaPhi<T>* st = dynamic_cast< SphereThetaPhi<T> * >(mMap); 84 82 if (st != NULL) return( new SphereThetaPhi<T>(*st) ); 85 Sphere Gorski<T>* sg = dynamic_cast< SphereGorski<T> * >(mMap);86 if (sg != NULL) return( new Sphere Gorski<T>(*sg) );83 SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap); 84 if (sg != NULL) return( new SphereHEALPix<T>(*sg) ); 87 85 return(NULL); 88 86 } … … 104 102 return; 105 103 } 106 Sphere Gorski<T>* sg = dynamic_cast< SphereGorski<T> * >(mMap);104 SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap); 107 105 if (sg != NULL) { 108 FIO_Sphere Gorski<T> fio(sg);106 FIO_SphereHEALPix<T> fio(sg); 109 107 fio.Write(pos, nom); 110 108 return; -
trunk/SophyaPI/PIext/piinit.cc
r779 r855 16 16 #include "nomskymapadapter.h" 17 17 #include "spherethetaphi.h" 18 #include "sphere gorski.h"18 #include "spherehealpix.h" 19 19 #include "localmap.h" 20 20 … … 82 82 serv->RegisterClass(new LocalMap<r_4>, new NOMAdapter_PixelMap<r_4> ); 83 83 serv->RegisterClass(new SphereThetaPhi<r_4>, new NOMAdapter_PixelMap<r_4> ); 84 serv->RegisterClass(new Sphere Gorski<r_4>, new NOMAdapter_PixelMap<r_4> );84 serv->RegisterClass(new SphereHEALPix<r_4>, new NOMAdapter_PixelMap<r_4> ); 85 85 serv->RegisterClass(new LocalMap<r_8>, new NOMAdapter_PixelMap<r_8> ); 86 86 serv->RegisterClass(new SphereThetaPhi<r_8>, new NOMAdapter_PixelMap<r_8> ); 87 serv->RegisterClass(new Sphere Gorski<r_8>, new NOMAdapter_PixelMap<r_8> );87 serv->RegisterClass(new SphereHEALPix<r_8>, new NOMAdapter_PixelMap<r_8> ); 88 88 serv->RegisterClass(new LocalMap<complex<float> >, new NOMAdapter_PixelMap<complex<float> > ); 89 89 serv->RegisterClass(new SphereThetaPhi<complex<float> >, new NOMAdapter_PixelMap<complex<float> > ); 90 serv->RegisterClass(new Sphere Gorski<complex<float> >, new NOMAdapter_PixelMap<complex<float> > );90 serv->RegisterClass(new SphereHEALPix<complex<float> >, new NOMAdapter_PixelMap<complex<float> > ); 91 91 serv->RegisterClass(new LocalMap<complex<double> >, new NOMAdapter_PixelMap<complex<double> > ); 92 92 serv->RegisterClass(new SphereThetaPhi<complex<double> >, new NOMAdapter_PixelMap<complex<double> > ); 93 serv->RegisterClass(new Sphere Gorski<complex<double> >, new NOMAdapter_PixelMap<complex<double> > );93 serv->RegisterClass(new SphereHEALPix<complex<double> >, new NOMAdapter_PixelMap<complex<double> > ); 94 94 95 95 serv->RegisterClass(new GaussianFilter, new NOMAdapter_SpectralResponse );
Note:
See TracChangeset
for help on using the changeset viewer.