Changeset 3913 in Sophya for trunk/AddOn/TAcq/racqueth.h


Ignore:
Timestamp:
Nov 26, 2010, 2:45:39 PM (15 years ago)
Author:
ansari
Message:

1/ Correction de gestion de changement de timeout DMA ( racqueth.cc , racqurw.cc)
2/ Amelioration de la gestion des arguments de ligne de commande et

datacard - introduction de variables d'environnement
BRACQ_TMPDIR TMPDIR BRACQ_BASEDIR BRACQ_FIBERIDS

3/ possibilite de specifier des cibles ethernet pour chaque fibre

Reza 26/11/2010

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AddOn/TAcq/racqueth.h

    r3911 r3913  
    5151class PCIEToEthernet : public ZThread {
    5252public:
    53   PCIEToEthernet(vector<PCIEWrapperInterface*> vec_pciw , vector<string>& destname, BRParList const& par, int portid=BRSPORTID);
     53  // Specification de destinations : nom_de_machine ou numero IP (192.168.55.2 ...)
     54  //  Meme series de destination pour toutes les fibres (DMA)
     55  PCIEToEthernet(vector<PCIEWrapperInterface*> vec_pciw, vector<string>& destname, BRParList const& par, int portid=BRSPORTID);
     56  //  Une serie  de destinations pour chaque fibres
     57  PCIEToEthernet(vector<PCIEWrapperInterface*> vec_pciw, vector< vector<string> >& destname, BRParList const& par, int portid=BRSPORTID);
    5458  virtual ~PCIEToEthernet();
    5559  virtual void run();
     
    6165
    6266protected:
     67  virtual void InitConnections();
    6368  virtual size_t SendToTargets(int fib, Byte* data, size_t len, bool fgfin=false);
    6469  virtual void CleanUpEndSendAllLinks();
     
    7176  unsigned int sizeFr_ ;
    7277  vector<PCIEWrapperInterface *> vec_pciw_;
    73   vector<string> destname_;
     78  vector< vector<string> > destname_;
    7479  int tcpportid_;
    7580  vector< vector<ClientSocket> > vvec_skt_;
Note: See TracChangeset for help on using the changeset viewer.