Changeset 855 in Sophya


Ignore:
Timestamp:
Apr 10, 2000, 3:03:01 PM (25 years ago)
Author:
ercodmgr
Message:

Adapatation a SphereHEALPix - Reza 10/4/2000

Location:
trunk/SophyaPI/PIext
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/nomskymapadapter.cc

    r815 r855  
    88
    99#include "nomskymapadapter.h"
    10 #include "spherethetaphi.h"
    11 #include "spheregorski.h"
    12 #include "localmap.h"
     10#include "skymap.h"
    1311#include "pitvmaad.h"
    1412#include "complexios.h"
     
    8381SphereThetaPhi<T>* st = dynamic_cast< SphereThetaPhi<T> * >(mMap);
    8482if (st != NULL) return( new SphereThetaPhi<T>(*st) );
    85 SphereGorski<T>* sg = dynamic_cast< SphereGorski<T> * >(mMap);
    86 if (sg != NULL) return( new SphereGorski<T>(*sg) );
     83SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap);
     84if (sg != NULL) return( new SphereHEALPix<T>(*sg) );
    8785return(NULL);
    8886}
     
    104102  return;
    105103  }
    106 SphereGorski<T>* sg = dynamic_cast< SphereGorski<T> * >(mMap);
     104SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap);
    107105if (sg != NULL) {
    108   FIO_SphereGorski<T> fio(sg);
     106  FIO_SphereHEALPix<T> fio(sg);
    109107  fio.Write(pos, nom);
    110108  return;
  • trunk/SophyaPI/PIext/piinit.cc

    r779 r855  
    1616#include "nomskymapadapter.h"
    1717#include "spherethetaphi.h"
    18 #include "spheregorski.h"
     18#include "spherehealpix.h"
    1919#include "localmap.h"
    2020
     
    8282  serv->RegisterClass(new LocalMap<r_4>, new NOMAdapter_PixelMap<r_4> );
    8383  serv->RegisterClass(new SphereThetaPhi<r_4>, new NOMAdapter_PixelMap<r_4> );
    84   serv->RegisterClass(new SphereGorski<r_4>, new NOMAdapter_PixelMap<r_4> );
     84  serv->RegisterClass(new SphereHEALPix<r_4>, new NOMAdapter_PixelMap<r_4> );
    8585  serv->RegisterClass(new LocalMap<r_8>, new NOMAdapter_PixelMap<r_8> );
    8686  serv->RegisterClass(new SphereThetaPhi<r_8>, new NOMAdapter_PixelMap<r_8> );
    87   serv->RegisterClass(new SphereGorski<r_8>, new NOMAdapter_PixelMap<r_8> );
     87  serv->RegisterClass(new SphereHEALPix<r_8>, new NOMAdapter_PixelMap<r_8> );
    8888  serv->RegisterClass(new LocalMap<complex<float> >, new NOMAdapter_PixelMap<complex<float> > );
    8989  serv->RegisterClass(new SphereThetaPhi<complex<float> >, new NOMAdapter_PixelMap<complex<float> > );
    90   serv->RegisterClass(new SphereGorski<complex<float> >, new NOMAdapter_PixelMap<complex<float> > );
     90  serv->RegisterClass(new SphereHEALPix<complex<float> >, new NOMAdapter_PixelMap<complex<float> > );
    9191  serv->RegisterClass(new LocalMap<complex<double> >, new NOMAdapter_PixelMap<complex<double> > );
    9292  serv->RegisterClass(new SphereThetaPhi<complex<double> >, new NOMAdapter_PixelMap<complex<double> > );
    93   serv->RegisterClass(new SphereGorski<complex<double> >, new NOMAdapter_PixelMap<complex<double> > );
     93  serv->RegisterClass(new SphereHEALPix<complex<double> >, new NOMAdapter_PixelMap<complex<double> > );
    9494
    9595  serv->RegisterClass(new GaussianFilter, new NOMAdapter_SpectralResponse );
Note: See TracChangeset for help on using the changeset viewer.