Changeset 1841 in Sophya for trunk/SophyaProg/PrgMap
- Timestamp:
- Dec 22, 2001, 12:11:40 AM (24 years ago)
- Location:
- trunk/SophyaProg/PrgMap
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PrgMap/cl2map.cc
r1626 r1841 119 119 cout << "--- Writing map to Output FITS file " << outfile << endl; 120 120 string dum = "rm -f "; dum += outfile; system(dum.c_str()); 121 FitsOutFile fio(outfile );121 FitsOutFile fio(outfile, FitsFile::clear); 122 122 fio << sph; 123 123 } -
trunk/SophyaProg/PrgMap/extrap2sph.cc
r1626 r1841 187 187 { 188 188 dum = "rm -f "; dum += fsphout; system(dum.c_str()); 189 FitsOutFile sfits(fsphout );189 FitsOutFile sfits(fsphout, FitsFile::clear); 190 190 cout<<"Writing Output Sphere Fits file"<<endl; 191 191 sfits<<sphin; -
trunk/SophyaProg/PrgMap/extrapsph.cc
r1626 r1841 152 152 { 153 153 dum = "rm -f "; dum += fsphout; system(dum.c_str()); 154 FitsOutFile sfits(fsphout );154 FitsOutFile sfits(fsphout, FitsFile::clear); 155 155 cout<<"Writing Output Sphere Fits file"<<endl; 156 156 sfits<<sphin; … … 158 158 if(fsphoutw) { 159 159 dum = "rm -f "; dum += fsphoutw; system(dum.c_str()); 160 FitsOutFile sfits(fsphoutw );160 FitsOutFile sfits(fsphoutw, FitsFile::clear); 161 161 cout<<"Writing Output Sphere Weight Fits file"<<endl; 162 162 sfits<<sphinw; … … 164 164 if(fsphred) { 165 165 dum = "rm -f "; dum += fsphred; system(dum.c_str()); 166 FitsOutFile sfits(fsphred );166 FitsOutFile sfits(fsphred, FitsFile::clear); 167 167 cout<<"Writing Reducted Sphere Fits file"<<endl; 168 168 sfits<<sphred; … … 170 170 if(fsphredw) { 171 171 dum = "rm -f "; dum += fsphredw; system(dum.c_str()); 172 FitsOutFile sfits(fsphredw );172 FitsOutFile sfits(fsphredw, FitsFile::clear); 173 173 cout<<"Writing Reducted Sphere Weight Fits file"<<endl; 174 174 sfits<<sphredw; -
trunk/SophyaProg/PrgMap/map2cl.cc
r1713 r1841 110 110 if (fgfitsout) { 111 111 cout << "--- Writing C_l vector to Output FITS file " << outfile << endl; 112 FitsOutFile fio(outfile );112 FitsOutFile fio(outfile, FitsFile::clear); 113 113 fio << clvec; 114 114 } -
trunk/SophyaProg/PrgMap/msksphere.cc
r1626 r1841 132 132 { 133 133 dum = "rm -f "; dum += sphout; system(dum.c_str()); 134 FitsOutFile sfits(sphout );134 FitsOutFile sfits(sphout, FitsFile::clear); 135 135 cout<<"Writing Output Masked Sphere Fits file"<<endl; 136 136 sfits<<sph; -
trunk/SophyaProg/PrgMap/prjsmap.cc
r1840 r1841 231 231 if (fgfitsout) { 232 232 cout << "--- Writing projection to Output FITS file " << outfile << endl; 233 FitsOutFile fio(outfile );233 FitsOutFile fio(outfile, FitsFile::clear); 234 234 fio << prj; 235 235 }
Note:
See TracChangeset
for help on using the changeset viewer.