Ignore:
Timestamp:
Apr 12, 2001, 3:14:22 PM (24 years ago)
Author:
ansari
Message:

Debug de SimpleDeglitcher, ajout de SimpleFanOut , Reza 12/4/2001

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/ProcWSophya/simtoipr.h

    r1454 r1467  
    115115
    116116
     117//  Classe SimpleFanOut
     118//  Transforme recopie chaque entree sur M lignes de sortie
     119
     120class SimpleFanOut : public TOIProcessor {
     121public:
     122                SimpleFanOut(int nbinput, int mfanout);
     123                ~SimpleFanOut();
     124
     125  inline int    NbInput() const { return nb_input; }
     126  inline int    MFanOut() const { return m_fanout; }
     127  inline int_8  ProcessedSampleCount() const { return totnscount; }
     128
     129  virtual void  PrintStatus(ostream & os) ; // const plus tard
     130
     131  virtual void  init(); 
     132  virtual void  run();
     133
     134protected:
     135  int nb_input;
     136  int m_fanout;
     137  int_8 totnscount;   // Nombre total d'echantillon processe
     138};
     139
    117140#endif
Note: See TracChangeset for help on using the changeset viewer.