Ignore:
Timestamp:
Nov 26, 2001, 4:13:48 PM (24 years ago)
Author:
aubourg
Message:

parallel mapmaking

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/Kernel/fitstoirdr.cc

    r1772 r1787  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: fitstoirdr.cc,v 1.21 2001-11-16 11:28:45 aubourg Exp $
     5// $Id: fitstoirdr.cc,v 1.22 2001-11-26 15:13:48 aubourg Exp $
    66
    77#include "fitstoirdr.h"
     
    112112
    113113  snBegin = firstSn;
    114 
     114  /*  if (forceMinIn > 0 && forceMinIn > snBegin) {
     115    snBegin = forceMinIn;
     116  }
     117  */
    115118  openFile(allfn.back());
    116119  snEnd = firstSn+nrows-1;
     120  /*  if (forceMaxIn > 0 && forceMaxIn < snEnd) {
     121    snEnd = forceMaxIn;
     122    }*/
    117123  cout << "FITSTOIReader range " << snBegin << " -> " << snEnd << endl;
    118124}
     
    252258   long sn = (long) (samplenum[ip]+.1);
    253259   TOIManager* mgr = TOIManager::getManager();
    254 #if 0
    255    if(sn > mgr->getRequestedEnd()) break;
    256    if(sn < mgr->getRequestedBegin()) continue;
    257    for(int k=0; k<getNOut(); k++) {
    258      if(colval[k]==NULL)  continue;
    259      uint_8 flg = (colflg[k]==NULL)? 0: colflg[k][ip];
    260      putData(k,sn,colval[k][ip],flg);
    261    }
    262 #else
    263260   if(samplenum[0] > mgr->getRequestedEnd()) break;
    264261   if(samplenum[ifin-ideb] < mgr->getRequestedBegin()) continue;
     
    276273     }
    277274   }
    278 #endif
    279275   totnscount++;
    280276 }
Note: See TracChangeset for help on using the changeset viewer.