Changeset 276 in Sophya


Ignore:
Timestamp:
Apr 28, 1999, 3:34:42 PM (26 years ago)
Author:
ansari
Message:

Adaptation nouveau schema PPersist pour DVList Reza 28/04/99

Location:
trunk/SophyaLib/Samba
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/Samba/localmap.cc

    r228 r276  
    9191  }         
    9292  s.PutLine(strg);
    93   if (mInfo_)  mInfo_->Write(s);
     93  if (mInfo_)  s << (*mInfo_);
    9494  s.PutI4(mSzX_);
    9595  s.PutI4(mSzY_);
     
    117117  if (hadinfo) {    // Lecture eventuelle du DVList Info
    118118    if (mInfo_ == NULL)  mInfo_ = new DVList;
    119     mInfo_->Read(s);
     119    s >> (*mInfo_);
    120120  }
    121121  s.GetI4(mSzX_);
  • trunk/SophyaLib/Samba/scan.cc

    r254 r276  
    142142  }
    143143  s.PutLine(strg);
    144   if (mInfo_)  mInfo_->Write(s);
     144  if (mInfo_)  s << (*mInfo_);
    145145   s.PutI4( NmaxPts_);
    146146  s.PutI4(NmaxTrs_);
     
    175175  if (hadinfo) {    // Lecture eventuelle du DVList Info
    176176    if (mInfo_ == NULL)  mInfo_ = new DVList;
    177   mInfo_->Read(s);
     177    s >> (*mInfo_);
    178178  }
    179179  s.GetI4( NmaxPts_);
  • trunk/SophyaLib/Samba/spheregorski.cc

    r228 r276  
    232232          (int_4)nSide_, (int_4)nPix_);
    233233  s.PutLine(strg);
    234   if (mInfo_)  mInfo_->Write(s);
     234  if (mInfo_)  s << (*mInfo_);
    235235  s.PutI4(nlmax_);
    236236  s.PutI4(nmmax_);
     
    262262  if (hadinfo) {    // Lecture eventuelle du DVList Info
    263263    if (mInfo_ == NULL)  mInfo_ = new DVList;
    264     mInfo_->Read(s);
     264    s >> (*mInfo_);
    265265  }
    266266  s.GetI4(nlmax_);
  • trunk/SophyaLib/Samba/spherethetaphi.cc

    r228 r276  
    134134  }
    135135  s.PutLine(strg);
    136   if (mInfo_)  mInfo_->Write(s);
    137    s.PutI4(mNTheta);
     136  if (mInfo_)  s << (*mInfo_);
     137  s.PutI4(mNTheta);
    138138  s.PutI4(mNPet);
    139139  s.PutI4(mNPix);
     
    162162  if (hadinfo) {    // Lecture eventuelle du DVList Info
    163163    if (mInfo_ == NULL)  mInfo_ = new DVList;
    164     mInfo_->Read(s);
     164    s >> (*mInfo_);
    165165  }
    166166  s.GetI4(mNTheta);
Note: See TracChangeset for help on using the changeset viewer.