Ignore:
Timestamp:
Aug 7, 2001, 12:52:19 AM (24 years ago)
Author:
cmv
Message:

On enleve les SetTemp() inutiles cmv 6/8/01

File:
1 edited

Legend:

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

    r1551 r1624  
    9595    }
    9696  InitNul();
    97   //  SetTemp(false);
    9897  Pixelize(m);
    9998  SetThetaSlices();
     
    585584/*! Substract a constant value \b a to a SphereHEALPix */
    586585template <class T>
    587 SphereHEALPix<T>& SphereHEALPix<T>::Sub(T a)
     586SphereHEALPix<T>& SphereHEALPix<T>::Sub(T a,bool fginv)
    588587{
    589588  if (NbPixels() < 1)
    590589    throw RangeCheckError("SphereHEALPix<T>::Sub(T )  - SphereHEALPix not dimensionned ! ");
    591   pixels_ -= a;
     590  pixels_.Sub(a,fginv);
    592591  return (*this);
    593592}
Note: See TracChangeset for help on using the changeset viewer.