Ignore:
Timestamp:
Mar 12, 2001, 7:00:28 PM (25 years ago)
Author:
ansari
Message:

Protections diverses dans TOIProcessor et FITSTOIReader/Writer
Ajout d'un TOI (TOISeqBuffered) avec gestion d'un buffer entre put/get
Ajout de processeurs de test (RZTOIProc...) , programme test associe
et SMakefile (pour compil avec SOPHYA)

Reza 12/3/2001

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/Kernel/toiprocessor.h

    r1410 r1437  
    8383  int           getInputTOIIndex(string toi);
    8484  int           getOutputTOIIndex(string toi);
     85
     86  //  Methodes rajoutees par Reza 11/3/2001
     87  TOI*          getInputTOI(int toiIndex);
     88  TOI*          getOutputTOI(int toiIndex);
     89  bool          checkInputTOIIndex(int toiIndex);
     90  bool          checkOutputTOIIndex(int toiIndex);
     91
     92  //  Fin rajout Reza 11/3/2001
     93
    8594  void          autoWontNeed(int iCur);
    8695  int           lastAWN;
     
    96105  string getOutName(int i);
    97106  string getInName(int i);
     107
     108  //  Methodes rajoutees par Reza 11/3/2001
     109  void          PrintStatus(ostream & os) ; // const plus tard
     110  //  Fin rajout Reza 11/3/2001
    98111
    99112  virtual void  start();
     
    136149};
    137150
     151inline ostream & operator << (ostream & os, TOIProcessor /*const*/ & toip)
     152{ toip.PrintStatus(os); return os; }
     153
     154
    138155#endif
     156
Note: See TracChangeset for help on using the changeset viewer.