Changeset 1405 in Sophya for trunk/SophyaLib/HiStats/ntuple.h
- Timestamp:
- Feb 15, 2001, 6:58:16 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/ntuple.h
r1046 r1405 97 97 }; 98 98 99 /*! Prints table information on stream \b s (nt.Show(os)) */ 99 100 inline ostream& operator << (ostream& s, NTuple const & nt) 100 101 { nt.Show(s); return(s); } 101 102 103 /*! Writes the object in the POutPersist stream \b os */ 102 104 inline POutPersist& operator << (POutPersist& os, NTuple & obj) 103 105 { ObjFileIO<NTuple> fio(&obj); fio.Write(os); return(os); } 106 /*! Reads the object from the PInPersist stream \b is */ 104 107 inline PInPersist& operator >> (PInPersist& is, NTuple & obj) 105 108 { ObjFileIO<NTuple> fio(&obj); fio.Read(is); return(is); }
Note:
See TracChangeset
for help on using the changeset viewer.