Changeset 1120 in Sophya for trunk/SophyaProg/PMixer/tgrsr.cc
- Timestamp:
- Jul 31, 2000, 3:47:02 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PMixer/tgrsr.cc
r949 r1120 128 128 PrtTim("End of filling "); 129 129 130 FitsIoServer fios;130 { 131 131 cout << "\n Writing Matrix NRows= " << mtx.NRows() << " NCols= " 132 132 << mtx.NCols() << " to FITS file: " << (string)(arg[4]) << endl; 133 fios.save(mtx, arg[4]); 133 FITS_TArray<r_8> fios(&mtx); 134 fios.Write(arg[4]); // $CHECK$ A passer em HDU=2 , Reza 31/7/2000 134 135 PrtTim("End of Matrix->FITS "); 136 } 135 137 136 138 if (narg > 5) { // Writing ImageR4 fo FITS file 137 139 cout << "wrting ImageR4(" << npt << ", 2) to FITS file: " 138 140 << (string)(arg[5]) << endl; 139 fios.save(img, arg[5]); 141 FITS_TArray<r_4> fios(&img); 142 fios.Write(arg[5]); 140 143 PrtTim("End of ImageR4->FITS "); 141 144 }
Note:
See TracChangeset
for help on using the changeset viewer.