// $Id: hrichsenderraw.h,v 1.3 2002-09-25 16:19:58 eberl Exp $ // Last update by Thomas Eberl: 02/09/25 18:15:53 // #ifndef HRICHSENDERRAW_H #define HRICHSENDERRAW_H #include "hreconstructor.h" #include "hlocation.h" #include #include class HCategory; class HIterator; class HRichSenderRaw : public HReconstructor { public: HRichSenderRaw(); HRichSenderRaw(Text_t *name,Text_t *title,Text_t *host,Int_t port); ~HRichSenderRaw(); Bool_t init(); Bool_t finalize(); Int_t execute(); HCategory* getRawCat(){return fRawCat;} void setRawCat(HCategory* pRawCat){fRawCat = pRawCat;} ClassDef(HRichSenderRaw,1) //ROOT extension private: Int_t nPort; Text_t *hostname;//! TSocket *sock;//! TMessage *mess;//! void initNetwork(); HCategory *fRawCat; //! }; #endif // HRICHSENDERRAW_H