Changeset 937 in Sophya for trunk/SophyaProg/PMixer
- Timestamp:
- Apr 14, 2000, 6:11:47 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PMixer/skymixer.cc
r931 r937 125 125 cout << " Reading output HealPix map from FITS file " << (string)ifnm << endl; 126 126 { 127 FITS_SphereHEALPix<float> fios( ifnm);128 outgs = (SphereHEALPix<float>)fios;127 FITS_SphereHEALPix<float> fios(&outgs); 128 fios.ReadF(ifnm,2); 129 129 } 130 130 if(printlev>0) … … 188 188 SphereHEALPix<float> ings(hp_nside); 189 189 { 190 FITS_SphereHEALPix<float> fiosIn( flnm);191 ings = (SphereHEALPix<float>)fiosIn;190 FITS_SphereHEALPix<float> fiosIn(&ings); 191 fiosIn.ReadF(flnm,2); 192 192 } 193 193 if (debuglev > 4) { // Writing the input map to the outppf … … 225 225 SphereHEALPix<float> betaMap(hp_nside); 226 226 { 227 FITS_SphereHEALPix<float> fiosBM(flnm); 228 betaMap = (SphereHEALPix<float>)fiosBM; 227 FITS_SphereHEALPix<float> fiosBM(&betaMap); 228 fiosBM.ReadF(flnm,2); 229 } 230 if (printlev > 2) { 231 MeanSig(betaMap.DataBlock(), moy, sig ); 232 cout << " MeanSig for Beta map - Mean= " << moy << " Sigma= " << sig << endl; 229 233 } 230 234 if (debuglev > 4) { // Writing the input map to the outppf … … 248 252 249 253 betaMap.Resize(8); 250 MeanSig(intBetaMap.DataBlock(), moy, sig ); 251 if (printlev > 4) 252 cout << "....BetaFits... MeanSig for intBetaMap - Mean= " 253 << moy << " Sigma= " << sig << endl; 254 if (printlev > 4) 255 { 256 MeanSig(intBetaMap.DataBlock(), moy, sig ); 257 cout << "....BetaFits... MeanSig for intBetaMap - Mean= " 258 << moy << " Sigma= " << sig << endl; 259 } 254 260 // add the integrated beta map 255 261 addComponentBeta(outgs,ings,intBetaMap, K);
Note:
See TracChangeset
for help on using the changeset viewer.