Changeset 1405 in Sophya for trunk/SophyaLib/HiStats/xntuple.h
- Timestamp:
- Feb 15, 2001, 6:58:16 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/xntuple.h
r1046 r1405 159 159 }; 160 160 161 161 /*! Prints table information on stream \b s (nt.Show(os)) */ 162 162 inline ostream& operator << (ostream& s, XNTuple const & nt) 163 163 { nt.Show(s); return(s); } 164 164 165 /*! Writes the object in the POutPersist stream \b os */ 165 166 inline POutPersist& operator << (POutPersist& os, XNTuple & obj) 166 167 { ObjFileIO<XNTuple> fio(&obj); fio.Write(os); return(os); } 168 /*! Reads the object from the PInPersist stream \b is */ 167 169 inline PInPersist& operator >> (PInPersist& is, XNTuple & obj) 168 170 { ObjFileIO<XNTuple> fio(&obj); fio.Read(is); return(is); }
Note:
See TracChangeset
for help on using the changeset viewer.