Changeset 401 in Sophya for trunk/Poubelle
- Timestamp:
- Sep 2, 1999, 4:19:55 PM (26 years ago)
- Location:
- trunk/Poubelle/archTOI.old
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Poubelle/archTOI.old/ssthandler.cc
r400 r401 14 14 #include "ssthandler.h" 15 15 #include "pisteetoile.h" 16 17 ofstream SSTHandler::sstchass("SSTChassLogFile"); 18 bool SSTHandler::sstchassinit=false; 16 19 17 20 // diodpermut[i] = channel de la diode i … … 25 28 26 29 SSTHandler::SSTHandler() 27 :sstchass("SSTChassLogFile")28 30 { 29 31 diodeHistLength = nb_per_block*2+10; … … 45 47 46 48 SSTHandler::SSTHandler(SSTHandler const& x) 47 :sstchass("SSTChassLogFile")48 49 { 49 50 diodeHistLength = x.diodeHistLength; … … 273 274 for(int i=0; i<NbPhotDiodBarette; i++) PisteBar[i]=new PisteEtoile(i); 274 275 StarHistoryMap.clear(); 275 sstchass<<LastStar.printHeader()<<endl; 276 if (!sstchassinit) { 277 sstchass<<LastStar.printHeader()<<endl; 278 sstchassinit = true; 279 } 276 280 277 281 #ifdef SST_DEBUG -
trunk/Poubelle/archTOI.old/ssthandler.h
r394 r401 107 107 int noStarDet; 108 108 int FirstSplNb(block_type_sst* blk); // Calcule l'index du premier echantillon du block analysé 109 ofstream sstchass; 109 static ofstream sstchass; 110 static bool sstchassinit; 110 111 111 112 void findStarConstruct(); -
trunk/Poubelle/archTOI.old/toiiter.cc
r400 r401 48 48 directory = x.directory; 49 49 files = x.files; 50 // curFile = x.curFile; // $CHECK$ DANGER !! 51 curFile = files.find(*(x.curFile)); 50 if (x.initDone && x.curFile != x.files.end()) curFile = files.find(*(x.curFile)); 52 51 isOnBoardRecorder = x.isOnBoardRecorder; 53 52 imes = x.imes; 54 53 tStart = x.tStart; 55 54 tEnd = x.tEnd; 56 //tBlock0 = x.tBlock0;57 //perEch = x.perEch;58 55 trigMask = x.trigMask; 59 56 infos = x.infos; -
trunk/Poubelle/archTOI.old/toiiter.h
r400 r401 23 23 sstDiode, // signal brut SST, indice = diode, 0-45 24 24 sstChannel, // signal brut SST, indice = canal, 0-47 25 sstStarCnt, // nombre d' etoiles detectees durant ce sample25 sstStarCnt, // nombre d''etoiles detectees durant ce sample 26 26 sstStarZ, // numero de diode d''une eventuelle etoile, i=etoile 0..n 27 27 sstStarF, // flux d''une eventuelle etoile, <0 si moins de i+1 etoiles … … 123 123 // Gestion de l''interpolation, par delegation a un autre iterateur 124 124 TOIIter* rawIter; // iterateur sans interpolation, qui avance avec retard 125 // en bufferisant les valeurs. S' il existe, on lui delegue125 // en bufferisant les valeurs. S''il existe, on lui delegue 126 126 // toutes les operations agissant sur le fichier. 127 127 TOIInterpolator* interp; // interpolateurs pour stocker les valeurs
Note:
See TracChangeset
for help on using the changeset viewer.