Changeset 2206 in Sophya


Ignore:
Timestamp:
Oct 7, 2002, 4:23:02 PM (23 years ago)
Author:
aubourg
Message:

cgr/manager

Location:
trunk/ArchTOIPipe/Kernel
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/Kernel/Makefile.in

    r2010 r2206  
    3737 endif
    3838 ifeq ($(CXX), CC)
    39     CXXFLAGS = -O -prelink -ptused
    40     CFLAGS   = -O
     39    CXXFLAGS = -O -prelink -ptused -64
     40    CFLAGS   = -O -64
    4141#   CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0
    4242#   CFLAGS  =  -O -OPT:Olimit=0
  • trunk/ArchTOIPipe/Kernel/cgt.cc

    r2187 r2206  
    154154  cout << " CGT::Start() starting TOIProcessors ... NProc="
    155155       << lesProcs.size() << endl;
    156   for(int i=0; i< lesProcs.size(); i++) {
    157     if (dbgLevel > 1)
     156  /*  for(int i=0; i< lesProcs.size(); i++) {
     157      if (dbgLevel > 1)
    158158      cout << " Staring Proc Id= " << i << " @ " << hex << lesProcs[i] << dec << endl;
    159     lesProcs[i]->start();
    160   }
     159      lesProcs[i]->start();
     160      }
     161  */
     162  TOIManager::getInstance()->startAll();
    161163}
    162164
  • trunk/ArchTOIPipe/Kernel/fitstoirdr.h

    r2187 r2206  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: fitstoirdr.h,v 1.13 2002-09-09 15:33:14 aubourg Exp $
     7// $Id: fitstoirdr.h,v 1.14 2002-10-07 14:23:02 aubourg Exp $
    88
    99
     
    5151  virtual bool checkSampleLimits(long& min, long& max, int pass);
    5252  virtual void calcSampleLimits(long& min, long& max);
     53  virtual bool checkSampleLimits(int pass) {return TOIProcessor::checkSampleLimits(pass);}
    5354
    5455  virtual void run1();
  • trunk/ArchTOIPipe/Kernel/fitstoiwtr.h

    r2187 r2206  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: fitstoiwtr.h,v 1.13 2002-09-09 15:33:14 aubourg Exp $
     7// $Id: fitstoiwtr.h,v 1.14 2002-10-07 14:23:02 aubourg Exp $
    88
    99
     
    3737protected:
    3838  virtual bool checkSampleLimits(long &min, long &max, int pass);
    39 
     39  virtual bool checkSampleLimits(int pass) {return TOIProcessor::checkSampleLimits(pass);}
    4040 
    4141private:
Note: See TracChangeset for help on using the changeset viewer.