Changeset 908 in Sophya for trunk/SophyaLib/SkyMap/localmap.h


Ignore:
Timestamp:
Apr 13, 2000, 3:31:18 PM (25 years ago)
Author:
ansari
Message:

divers nettoyages : const. de copie, surcharge = etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SkyMap/localmap.h

    r841 r908  
    7272LocalMap(int_4 nx, int_4 ny);
    7373LocalMap(const LocalMap<T>& lm, bool share=false);
     74LocalMap(const LocalMap<T>& lm);
    7475virtual ~LocalMap();
    7576
     77inline virtual bool IsTemp(void) const { return pixels_.IsTemp();}
    7678/*! Setting blockdata to temporary (see ndatablock documentation) */
    7779inline virtual void SetTemp(bool temp=false) const {pixels_.SetTemp(temp);};
     
    166168void print(ostream& os) const;
    167169
     170inline  LocalMap<T>& operator = (const LocalMap<T>& a) {return Set(a);}
     171
     172
     173
    168174// ---------- Méthodes internes -----------------------------
    169175         
     
    189195*/
    190196void AngleProjToPix(double theta,double phi,double& x,double& y) const;
     197
     198void recopierVariablesSimples(const LocalMap<T>& lm);
     199LocalMap<T>& Set(const LocalMap<T>& a);
     200
    191201
    192202// ---------- Variables internes ----------------------------
Note: See TracChangeset for help on using the changeset viewer.