Changeset 908 in Sophya for trunk/SophyaLib/SkyMap/localmap.h
- Timestamp:
- Apr 13, 2000, 3:31:18 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyMap/localmap.h
r841 r908 72 72 LocalMap(int_4 nx, int_4 ny); 73 73 LocalMap(const LocalMap<T>& lm, bool share=false); 74 LocalMap(const LocalMap<T>& lm); 74 75 virtual ~LocalMap(); 75 76 77 inline virtual bool IsTemp(void) const { return pixels_.IsTemp();} 76 78 /*! Setting blockdata to temporary (see ndatablock documentation) */ 77 79 inline virtual void SetTemp(bool temp=false) const {pixels_.SetTemp(temp);}; … … 166 168 void print(ostream& os) const; 167 169 170 inline LocalMap<T>& operator = (const LocalMap<T>& a) {return Set(a);} 171 172 173 168 174 // ---------- Méthodes internes ----------------------------- 169 175 … … 189 195 */ 190 196 void AngleProjToPix(double theta,double phi,double& x,double& y) const; 197 198 void recopierVariablesSimples(const LocalMap<T>& lm); 199 LocalMap<T>& Set(const LocalMap<T>& a); 200 191 201 192 202 // ---------- Variables internes ----------------------------
Note:
See TracChangeset
for help on using the changeset viewer.