Changeset 1454 in Sophya for trunk/ArchTOIPipe/Kernel
- Timestamp:
- Apr 9, 2001, 2:14:21 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/Kernel/fitstoirdr.cc
r1437 r1454 27 27 void FITSTOIReader::init() { 28 28 fits_lock(); 29 cout << "FITSTOIReader::init "<< endl;29 cout << "FITSTOIReader::init FileName=" << fname << endl; 30 30 fstatus = 0; 31 31 // Open file … … 52 52 fits_get_num_rows(fptr,&nrows,&fstatus); 53 53 54 cout << "FITSTOIReader cols = " << ncols << endl;54 cout << "FITSTOIReader cols = " << ncols << " rows=" << nrows << endl; 55 55 56 56 // Dans cette version, on s'attend a ce que la premiere colonne soit le samplenum … … 90 90 // On pourrait aussi lire plusieurs elements d'un coup. 91 91 int ncols = outIx.size(); 92 cout << "reader reading..." << endl; 92 cout << "reader reading... NRows=" << nrows << " firstSn= " 93 << firstSn << endl; 93 94 for (int i=0; i<nrows; i++) { 94 95 int anyNul; … … 101 102 if (sn > mgr->getRequestedEnd()) break; 102 103 if (sn < mgr->getRequestedBegin()) continue; 103 // 104 // if (sn < mgr->getRequestedBegin()+10) cout << "rdr out " << sn << endl; 104 105 for (int j=1; j<=ncols; j++) { 105 106 if ( !checkOutputTOIIndex(j-1) ) continue; // Reza - Si TOI non connecte
Note:
See TracChangeset
for help on using the changeset viewer.