Changeset 2973 in Sophya for trunk/SophyaLib/SkyMap/sphereecp.cc
- Timestamp:
- Jun 20, 2006, 6:01:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyMap/sphereecp.cc
r2968 r2973 373 373 374 374 template <class T> 375 void SphereECP<T>::Print(ostream& os) const 376 { 375 void SphereECP<T>::Show(ostream& os) const 376 { 377 PixelMap<T>::Show(os); 377 378 if (_partial) 378 379 os << "SphereECP<T>::Print() - Partial ECP Map NPhi=" << _pixels.SizeX() … … 383 384 os << "SphereECP<T>::Print() - Full ECP Map NPhi=" << _pixels.SizeX() 384 385 << " x NTheta= " << _pixels.SizeY() << " SolidAngle=" << PixSolAngle() << endl; 386 } 387 388 template <class T> 389 void SphereECP<T>::Print(ostream& os) const 390 { 391 Show(os); 385 392 os << _pixels; 386 393 }
Note:
See TracChangeset
for help on using the changeset viewer.