Changeset 2987 in Sophya for trunk/SophyaLib


Ignore:
Timestamp:
Jun 22, 2006, 3:01:11 PM (19 years ago)
Author:
ansari
Message:

remplacement Show() par this->Show() suite compila avec gcc-4 , Reza , 22/6/2006

Location:
trunk/SophyaLib/SkyMap
Files:
3 edited

Legend:

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

    r2973 r2987  
    375375void  SphereECP<T>::Show(ostream& os) const
    376376{
    377   PixelMap<T>::Show(os);
     377  this->Show(os);
    378378  if (_partial)
    379379    os << "SphereECP<T>::Print() - Partial ECP Map NPhi=" << _pixels.SizeX()
  • trunk/SophyaLib/SkyMap/spherehealpix.cc

    r2985 r2987  
    638638void SphereHEALPix<T>::print(ostream& os) const
    639639{
    640   Show(os);
     640  this->Show(os);
    641641  os << "SphereHEALPix<T>(" << TypeOfMap() << ") NSide= "
    642642     << nSide_ << " nPix_   = " << nPix_  << " omeg_ = " << omeg_   << endl;
  • trunk/SophyaLib/SkyMap/spherethetaphi.cc

    r2985 r2987  
    688688void SphereThetaPhi<T>::print(ostream& os) const
    689689{
    690   Show(os);
     690  this->Show(os);
    691691  os << "SphereThetaPhi<T> NTheta_= " << NTheta_ << " NPix_    = " << NPix_
    692692     << " Omega_  =  " << Omega_   << endl;
Note: See TracChangeset for help on using the changeset viewer.