Changeset 2187 in Sophya for trunk/ArchTOIPipe/Kernel/toimanager.h
- Timestamp:
- Sep 9, 2002, 5:33:16 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/Kernel/toimanager.h
r2133 r2187 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: toimanager.h,v 1.1 4 2002-07-26 08:52:43 vfebvreExp $7 // $Id: toimanager.h,v 1.15 2002-09-09 15:33:15 aubourg Exp $ 8 8 9 9 … … 17 17 #include "toiprocessor.h" 18 18 19 20 // -----------ajout cgt vf 19/08/2002 21 22 #include "toi.h" 23 24 #include <typeinfo> 25 #include "toiseqbuff.h" 26 #include "toisegment.h" 27 #include "fitstoiwtr.h" 28 29 #ifdef WITH_SOPHYA 30 #include "pexceptions.h" 31 #else 32 #include "apexceptions.h" 33 #endif 34 35 #include <pthread.h> 36 // ----------fin ajout cgt 37 38 39 19 40 using namespace std; 20 41 … … 26 47 int getRequestedEnd(); 27 48 49 // ajout vf 25/07/2002 28 50 void startAll(); 51 bool checkSamplesLimits(int pass); 52 29 53 void waitForAll(); 30 54 31 55 void joinAll(); // deprecated. Use waitForAll(); 32 56 57 58 // ajout cgt vf 19/08/2002 59 60 void selectTOISegmented(int bufsz=1024, int maxseg=20); 61 void selectTOISeqBuffered(int wsz=8192); 62 63 virtual TOI& connect(TOIProcessor& prout, string& out, 64 TOIProcessor& prin, string& in, string nom="", 65 int wbsz=0, bool withFlag=false); 66 virtual TOI& connect(TOIProcessor& prout, const char* out, 67 TOIProcessor& prin, const char* in, string nom="", 68 int wbsz=0, bool withFlag=false); 69 70 // fin ajout cgt 71 72 73 74 33 75 protected: 34 76 TOIManager(); … … 40 82 void addThread(pthread_t*); 41 83 84 // ajout vf 25/07/2002 85 42 86 vector<TOIProcessor*> processors; 43 87 void registerProcessor(TOIProcessor* proc); 44 88 89 friend class TOIProcessor; 45 90 46 friend class TOIProcessor; 91 // ajout cgt vf 19/08/2002 92 93 bool fgSegmented; // type de toi 94 int segBuffsz, segMaxseg; 95 96 // fin ajout cgt 97 47 98 }; 48 99 … … 79 130 }; 80 131 132 133 134 81 135 #endif 82 136
Note:
See TracChangeset
for help on using the changeset viewer.