Changeset 1165 in Sophya for trunk/SophyaPI/PIext/nomskymapadapter.cc
- Timestamp:
- Aug 30, 2000, 4:33:03 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomskymapadapter.cc
r1164 r1165 75 75 /* --Methode-- */ 76 76 template <class T> 77 AnyDataObj* NOMAdapter_PixelMap<T>::GetCopyObj() 77 string NOMAdapter_PixelMap<T>::GetDataObjType() 78 { 79 string type = "PixelMap< "; 80 LocalMap<T>* lm = dynamic_cast< LocalMap<T> * >(mMap); 81 if (lm != NULL) type = "LocalMap< "; 82 SphereThetaPhi<T>* st = dynamic_cast< SphereThetaPhi<T> * >(mMap); 83 if (st != NULL) type = "SphereThetaPhi< "; 84 SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap); 85 if (sg != NULL) type = "SphereHEALPix< "; 86 87 type += typeid(T).name(); 88 type += " > "; 89 return(type); 90 } 91 92 /* --Methode-- */ 93 template <class T> 94 AnyDataObj* NOMAdapter_PixelMap<T>::CloneDataObj() 78 95 { 79 96 LocalMap<T>* lm = dynamic_cast< LocalMap<T> * >(mMap);
Note:
See TracChangeset
for help on using the changeset viewer.