Changeset 2973 in Sophya for trunk/SophyaLib/SkyMap/sphereecp.cc


Ignore:
Timestamp:
Jun 20, 2006, 6:01:49 PM (19 years ago)
Author:
ansari
Message:

1/ Nettoyage+commentaires/doxygen ds Vector3d, UnitVector, LongLat,
SphereCoordSys ...
2/ Ajout de la classe angle pour faciliter les conversions rad<>deg<>arcmin
dans le fichier vector3d.h .cc
3/ nettoyage/uniformisation methodes print pour pixelmap, ajout de la
methode PixelMap<T>::Show()
4/ Ajout methodes SphericalMap<T>::HasSymThetaSlice() et
GetSymThetaSliceIndex(int_4 idx) et leurs implementations pour
SphereHEALPix et SphereThetaPhi en vue de l'optimisation du calcul
transforme Ylm
5/ Ajout methode ResolToSizeIndex ds SphereThetaPhi , SphereHEALPix et
SphereECP

Reza , 20 Juin 2006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SkyMap/sphereecp.cc

    r2968 r2973  
    373373
    374374template <class T>
    375 void  SphereECP<T>::Print(ostream& os) const
    376 {
     375void  SphereECP<T>::Show(ostream& os) const
     376{
     377  PixelMap<T>::Show(os);
    377378  if (_partial)
    378379    os << "SphereECP<T>::Print() - Partial ECP Map NPhi=" << _pixels.SizeX()
     
    383384    os << "SphereECP<T>::Print() - Full ECP Map NPhi=" << _pixels.SizeX()
    384385       << " x NTheta= " <<  _pixels.SizeY() << " SolidAngle=" << PixSolAngle() << endl;
     386}
     387
     388template <class T>
     389void  SphereECP<T>::Print(ostream& os) const
     390{
     391  Show(os);
    385392  os << _pixels;
    386393}
Note: See TracChangeset for help on using the changeset viewer.