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/toiprocessor.cc

    r1773 r1787  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: toiprocessor.cc,v 1.20 2001-11-16 14:10:42 aubourg Exp $
     5// $Id: toiprocessor.cc,v 1.21 2001-11-26 15:13:48 aubourg Exp $
    66
    77#include "toiprocessor.h"
     
    3939  minOut = -1;
    4040  maxOut = -1;
     41  forcedMinIn = -1;
     42  forcedMaxIn = -1;
    4143  neededHistory = 1000;
    4244  lastAWN = 0;
     
    7274int TOIProcessor::getMinOut() {
    7375  //cout << name << "minout" << endl;
    74   if (minOut < 0) minOut = calcMinOut();
     76  if (minOut < 0)  minOut = calcMinOut();
    7577  //cout << name << "minout=" << minOut << endl;
    7678  return minOut;
     
    101103    if (x > minIn) minIn = x;
    102104  }
     105  if (forcedMinIn > 0 && forcedMinIn > minIn) minIn = forcedMinIn;
    103106  return minIn;
    104107}
     
    113116    if (x < maxIn) maxIn = x;
    114117  }
     118  if (forcedMaxIn > 0 && forcedMaxIn < maxIn) maxIn = forcedMaxIn;
    115119  return maxIn;
    116120}
Note: See TracChangeset for help on using the changeset viewer.