Changeset 1405 in Sophya for trunk/SophyaLib/HiStats/ntuple.h


Ignore:
Timestamp:
Feb 15, 2001, 6:58:16 PM (25 years ago)
Author:
ansari
Message:

Ajout documentation - Reza 15/2/2001

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/HiStats/ntuple.h

    r1046 r1405  
    9797};
    9898
     99/*! Prints table information on stream \b s (nt.Show(os)) */
    99100inline ostream& operator << (ostream& s, NTuple const & nt)
    100101  {  nt.Show(s);  return(s);  }
    101102
     103/*! Writes the object in the POutPersist stream \b os */
    102104inline POutPersist& operator << (POutPersist& os, NTuple & obj)
    103105{ ObjFileIO<NTuple> fio(&obj);  fio.Write(os);  return(os); }
     106/*! Reads the object from the PInPersist stream \b is */
    104107inline PInPersist& operator >> (PInPersist& is, NTuple & obj)
    105108{ ObjFileIO<NTuple> fio(&obj);  fio.Read(is);  return(is); }
Note: See TracChangeset for help on using the changeset viewer.