Changeset 276 in Sophya for trunk/SophyaLib
- Timestamp:
- Apr 28, 1999, 3:34:42 PM (26 years ago)
- Location:
- trunk/SophyaLib/Samba
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/Samba/localmap.cc
r228 r276 91 91 } 92 92 s.PutLine(strg); 93 if (mInfo_) mInfo_->Write(s);93 if (mInfo_) s << (*mInfo_); 94 94 s.PutI4(mSzX_); 95 95 s.PutI4(mSzY_); … … 117 117 if (hadinfo) { // Lecture eventuelle du DVList Info 118 118 if (mInfo_ == NULL) mInfo_ = new DVList; 119 mInfo_->Read(s);119 s >> (*mInfo_); 120 120 } 121 121 s.GetI4(mSzX_); -
trunk/SophyaLib/Samba/scan.cc
r254 r276 142 142 } 143 143 s.PutLine(strg); 144 if (mInfo_) mInfo_->Write(s);144 if (mInfo_) s << (*mInfo_); 145 145 s.PutI4( NmaxPts_); 146 146 s.PutI4(NmaxTrs_); … … 175 175 if (hadinfo) { // Lecture eventuelle du DVList Info 176 176 if (mInfo_ == NULL) mInfo_ = new DVList; 177 mInfo_->Read(s);177 s >> (*mInfo_); 178 178 } 179 179 s.GetI4( NmaxPts_); -
trunk/SophyaLib/Samba/spheregorski.cc
r228 r276 232 232 (int_4)nSide_, (int_4)nPix_); 233 233 s.PutLine(strg); 234 if (mInfo_) mInfo_->Write(s);234 if (mInfo_) s << (*mInfo_); 235 235 s.PutI4(nlmax_); 236 236 s.PutI4(nmmax_); … … 262 262 if (hadinfo) { // Lecture eventuelle du DVList Info 263 263 if (mInfo_ == NULL) mInfo_ = new DVList; 264 mInfo_->Read(s);264 s >> (*mInfo_); 265 265 } 266 266 s.GetI4(nlmax_); -
trunk/SophyaLib/Samba/spherethetaphi.cc
r228 r276 134 134 } 135 135 s.PutLine(strg); 136 if (mInfo_) mInfo_->Write(s);137 136 if (mInfo_) s << (*mInfo_); 137 s.PutI4(mNTheta); 138 138 s.PutI4(mNPet); 139 139 s.PutI4(mNPix); … … 162 162 if (hadinfo) { // Lecture eventuelle du DVList Info 163 163 if (mInfo_ == NULL) mInfo_ = new DVList; 164 mInfo_->Read(s);164 s >> (*mInfo_); 165 165 } 166 166 s.GetI4(mNTheta);
Note:
See TracChangeset
for help on using the changeset viewer.