Changeset 1405 in Sophya for trunk/SophyaLib/HiStats/xntuple.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/xntuple.h

    r1046 r1405  
    159159};
    160160
    161 
     161/*! Prints table information on stream \b s (nt.Show(os)) */
    162162inline ostream& operator << (ostream& s, XNTuple const & nt)
    163163  {  nt.Show(s);  return(s);  }
    164164
     165/*! Writes the object in the POutPersist stream \b os */
    165166inline POutPersist& operator << (POutPersist& os, XNTuple & obj)
    166167{ ObjFileIO<XNTuple> fio(&obj);  fio.Write(os);  return(os); }
     168/*! Reads the object from the PInPersist stream \b is */
    167169inline PInPersist& operator >> (PInPersist& is, XNTuple & obj)
    168170{ ObjFileIO<XNTuple> fio(&obj);  fio.Read(is);  return(is); }
Note: See TracChangeset for help on using the changeset viewer.