Changeset 2206 in Sophya for trunk/ArchTOIPipe
- Timestamp:
- Oct 7, 2002, 4:23:02 PM (23 years ago)
- Location:
- trunk/ArchTOIPipe/Kernel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/Kernel/Makefile.in
r2010 r2206 37 37 endif 38 38 ifeq ($(CXX), CC) 39 CXXFLAGS = -O -prelink -ptused 40 CFLAGS = -O 39 CXXFLAGS = -O -prelink -ptused -64 40 CFLAGS = -O -64 41 41 # CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 42 42 # CFLAGS = -O -OPT:Olimit=0 -
trunk/ArchTOIPipe/Kernel/cgt.cc
r2187 r2206 154 154 cout << " CGT::Start() starting TOIProcessors ... NProc=" 155 155 << 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) 158 158 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(); 161 163 } 162 164 -
trunk/ArchTOIPipe/Kernel/fitstoirdr.h
r2187 r2206 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: fitstoirdr.h,v 1.1 3 2002-09-09 15:33:14aubourg Exp $7 // $Id: fitstoirdr.h,v 1.14 2002-10-07 14:23:02 aubourg Exp $ 8 8 9 9 … … 51 51 virtual bool checkSampleLimits(long& min, long& max, int pass); 52 52 virtual void calcSampleLimits(long& min, long& max); 53 virtual bool checkSampleLimits(int pass) {return TOIProcessor::checkSampleLimits(pass);} 53 54 54 55 virtual void run1(); -
trunk/ArchTOIPipe/Kernel/fitstoiwtr.h
r2187 r2206 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: fitstoiwtr.h,v 1.1 3 2002-09-09 15:33:14aubourg Exp $7 // $Id: fitstoiwtr.h,v 1.14 2002-10-07 14:23:02 aubourg Exp $ 8 8 9 9 … … 37 37 protected: 38 38 virtual bool checkSampleLimits(long &min, long &max, int pass); 39 39 virtual bool checkSampleLimits(int pass) {return TOIProcessor::checkSampleLimits(pass);} 40 40 41 41 private:
Note:
See TracChangeset
for help on using the changeset viewer.