Changeset 2885 in Sophya for trunk/SophyaLib/SkyMap/sphericalmap.h
- Timestamp:
- Jan 4, 2006, 2:36:47 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyMap/sphericalmap.h
r1375 r2885 38 38 39 39 // Overloading of () to access pixel number k. 40 inline T& operator()(int k) {return( PixVal(k));}41 inline T const& operator()(int k) const {return( PixVal(k));}42 inline T& operator()(double theta,double phi) {return( PixValSph(theta,phi));};43 inline T const& operator()(double theta,double phi) const {return( PixValSph(theta,phi));};40 inline T& operator()(int k) {return(this->PixVal(k));} 41 inline T const& operator()(int k) const {return(this->PixVal(k));} 42 inline T& operator()(double theta,double phi) {return(this->PixValSph(theta,phi));}; 43 inline T const& operator()(double theta,double phi) const {return(this->PixValSph(theta,phi));}; 44 44 45 45 // index characterizing the size pixelization : m for SphereThetaPhi
Note:
See TracChangeset
for help on using the changeset viewer.