00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #ifndef TMESHRAWEVENT_H 00017 #define TMESHRAWEVENT_H 00018 #include "Go4Event/TGo4EventElement.h" 00019 #include "TMeshUnpackProc.h" 00020 #include "TMeshB1InputEvent.h" 00021 #include "TMeshB2InputEvent.h" 00022 #include "TMeshB3InputEvent.h" 00023 #include "Go4EventServer/TGo4FileSource.h" 00024 00025 class TMeshRawEvent : public TGo4EventElement 00026 { 00027 public: 00028 TMeshRawEvent() ; 00029 TMeshRawEvent(Text_t * name) ; 00030 virtual ~TMeshRawEvent() ; 00037 Int_t Fill(); 00038 00043 void Clear(Option_t *t=""); 00044 Int_t Init(); 00045 00047 TMeshB1InputEvent fxSub1; 00048 TMeshB2InputEvent fxSub2; 00049 TMeshB3InputEvent fxSub3; 00050 00051 private: 00052 TMeshUnpackProc * fxUnpacker; 00053 TGo4FileSource * fxFile; 00054 00055 public: 00056 ClassDef(TMeshRawEvent,1) 00057 }; 00058 #endif //TMESHRAWEVENT_H 00059 00060 00061 00062 00063 //----------------------------END OF GO4 SOURCE FILE ---------------------