Changeset 405 in Sophya for trunk/Poubelle
- Timestamp:
- Sep 14, 1999, 12:24:15 PM (26 years ago)
- Location:
- trunk/Poubelle/archTOI.old
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Poubelle/archTOI.old/Makefile
r400 r405 1 1 CXX=cxx 2 2 CFITSIODIR=../cfitsio 3 CPPFLAGS=-O - I$(CFITSIODIR)3 CPPFLAGS=-O -g -I$(CFITSIODIR) 4 4 #CPPFLAGS=-g -I$(CFITSIODIR) 5 5 LDLIBS=-L$(CFITSIODIR) -lcfitsio -
trunk/Poubelle/archTOI.old/archeopsfile.cc
r398 r405 526 526 break; 527 527 } 528 case block_sst_comprime: { // $CHECK$ TBD528 case block_sst_comprime: { 529 529 blockSet->setRawBloc(blockSet->curBlock); 530 if (!blockSet->sstHandler.NeedBlocks()) break; // inutile de decompresser 530 531 block_type_sst blk2; 531 532 block_type_sst_comprime* blk = (block_type_sst_comprime*) &blockSet->curBlock; … … 900 901 if (!blk) return 0; 901 902 #if version_num<=25 902 return blk->gyros[igyro][imesure] ;903 return blk->gyros[igyro][imesure]-32768.; 903 904 #else 904 return blk->gyro[igyro][imesure] ;905 return blk->gyro[igyro][imesure]-32768.; 905 906 #endif 906 907 } -
trunk/Poubelle/archTOI.old/ssthandler.cc
r401 r405 373 373 { 374 374 lastBlkNum = numero_block(blk); 375 for (int i = 0; i<nb_per_block*2; i++) { 376 DecodeTMBlock(blk, i, diodeRaw[i]); 375 if (prcTodo != 0) { 376 for (int i = 0; i<nb_per_block*2; i++) { 377 DecodeTMBlock(blk, i, diodeRaw[i]); 378 } 377 379 } 378 380 if (prcTodo & permDiode) { -
trunk/Poubelle/archTOI.old/ssthandler.h
r401 r405 45 45 void NeedProcess(int prcMask); 46 46 void ProcessBlock(block_type_sst*); 47 bool NeedBlocks() {return prcTodo != 0;} 47 48 48 49 static void Has2Bars(bool, int elecOffset=0); // elecOffset : which wired together
Note:
See TracChangeset
for help on using the changeset viewer.