Ignore:
Timestamp:
Aug 30, 2000, 4:33:03 PM (25 years ago)
Author:
ercodmgr
Message:

Extension de l'interface NObjMgrAdapter et ajout de DVList pour les variables globales ds NamedObjMgr - Reza 30/8/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/nomskymapadapter.cc

    r1164 r1165  
    7575/* --Methode-- */
    7676template <class T>
    77 AnyDataObj* NOMAdapter_PixelMap<T>::GetCopyObj()
     77string NOMAdapter_PixelMap<T>::GetDataObjType()
     78{
     79string type = "PixelMap< ";
     80LocalMap<T>* lm = dynamic_cast< LocalMap<T> * >(mMap);
     81if (lm != NULL) type = "LocalMap< ";
     82SphereThetaPhi<T>* st = dynamic_cast< SphereThetaPhi<T> * >(mMap);
     83if (st != NULL) type = "SphereThetaPhi< ";
     84SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap);
     85if (sg != NULL) type = "SphereHEALPix< ";
     86
     87type +=  typeid(T).name();
     88type +=  " > ";
     89return(type);
     90}
     91
     92/* --Methode-- */
     93template <class T>
     94AnyDataObj* NOMAdapter_PixelMap<T>::CloneDataObj()
    7895{
    7996LocalMap<T>* lm = dynamic_cast< LocalMap<T> * >(mMap);
Note: See TracChangeset for help on using the changeset viewer.