Changeset 1624 in Sophya for trunk/SophyaLib/SkyMap/spherehealpix.cc
- Timestamp:
- Aug 7, 2001, 12:52:19 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyMap/spherehealpix.cc
r1551 r1624 95 95 } 96 96 InitNul(); 97 // SetTemp(false);98 97 Pixelize(m); 99 98 SetThetaSlices(); … … 585 584 /*! Substract a constant value \b a to a SphereHEALPix */ 586 585 template <class T> 587 SphereHEALPix<T>& SphereHEALPix<T>::Sub(T a )586 SphereHEALPix<T>& SphereHEALPix<T>::Sub(T a,bool fginv) 588 587 { 589 588 if (NbPixels() < 1) 590 589 throw RangeCheckError("SphereHEALPix<T>::Sub(T ) - SphereHEALPix not dimensionned ! "); 591 pixels_ -= a;590 pixels_.Sub(a,fginv); 592 591 return (*this); 593 592 }
Note:
See TracChangeset
for help on using the changeset viewer.