Changeset 1397 in Sophya
- Timestamp:
- Feb 12, 2001, 6:11:37 PM (25 years ago)
- Location:
- trunk/SophyaLib/SkyMap
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyMap/fiolocalmap.h
r842 r1397 42 42 }; 43 43 44 /*! \ingroup SkyMap \fn operator<<(POutPersist&,LocalMap<T>&) 45 \brief Write LocalMap \b obj into POutPersist stream \b os */ 46 template <class T> 47 inline POutPersist& operator << (POutPersist& os, LocalMap<T> & obj) 48 { FIO_LocalMap<T> fio(&obj); fio.Write(os); return(os); } 49 50 /*! \ingroup SkyMap \fn operator>>(PInPersist&,LocalMap<T>&) 51 \brief Read LocalMap \b obj from PInPersist stream \b os */ 52 template <class T> 53 inline PInPersist& operator >> (PInPersist& is, LocalMap<T> & obj) 54 { FIO_LocalMap<T> fio(&obj); fio.Read(is); return(is); } 55 56 44 57 } // Fin du namespace 45 58 -
trunk/SophyaLib/SkyMap/fiospherehealpix.h
r853 r1397 41 41 }; 42 42 43 /*! \ingroup SkyMap \fn operator<<(POutPersist&,SphereHEALPix<T>&) 44 \brief Write SphereHEALPix \b obj into POutPersist stream \b os */ 45 template <class T> 46 inline POutPersist& operator << (POutPersist& os, SphereHEALPix<T> & obj) 47 { FIO_SphereHEALPix<T> fio(&obj); fio.Write(os); return(os); } 48 49 /*! \ingroup SkyMap \fn operator>>(PInPersist&,SphereHEALPix<T>&) 50 \brief Read SphereHEALPix \b obj from PInPersist stream \b os */ 51 template <class T> 52 inline PInPersist& operator >> (PInPersist& is, SphereHEALPix<T> & obj) 53 { FIO_SphereHEALPix<T> fio(&obj); fio.Read(is); return(is); } 54 43 55 } // Fin du namespace 44 56 -
trunk/SophyaLib/SkyMap/fiospherethetaphi.h
r842 r1397 42 42 }; 43 43 44 /*! \ingroup SkyMap \fn operator<<(POutPersist&,SphereThetaPhi<T>&) 45 \brief Write SphereThetaPhi \b obj into POutPersist stream \b os */ 46 template <class T> 47 inline POutPersist& operator << (POutPersist& os, SphereThetaPhi<T> & obj) 48 { FIO_SphereThetaPhi<T> fio(&obj); fio.Write(os); return(os); } 49 50 /*! \ingroup SkyMap \fn operator>>(PInPersist&,SphereThetaPhi<T>&) 51 \brief Read SphereThetaPhi \b obj from PInPersist stream \b os */ 52 template <class T> 53 inline PInPersist& operator >> (PInPersist& is, SphereThetaPhi<T> & obj) 54 { FIO_SphereThetaPhi<T> fio(&obj); fio.Read(is); return(is); } 55 56 44 57 } // Fin du namespace 45 58
Note:
See TracChangeset
for help on using the changeset viewer.