00001 //------------------------------------------------------------- 00002 // Go4 Release Package v3.04-01 (build 30401) 00003 // 28-November-2008 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at EE 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 00019 #include "TGo4EventElement.h" 00020 00021 #include "TMeshB1InputEvent.h" 00022 #include "TMeshB2InputEvent.h" 00023 #include "TMeshB3InputEvent.h" 00024 00025 class TMeshUnpackProc; 00026 class TGo4FileSource; 00027 00028 class TMeshRawEvent : public TGo4EventElement { 00029 public: 00030 TMeshRawEvent() ; 00031 TMeshRawEvent(const char* name); 00032 virtual ~TMeshRawEvent() ; 00039 Int_t Fill(); 00040 00045 void Clear(Option_t *t=""); 00046 Int_t Init(); 00047 00049 TMeshB1InputEvent fxSub1; 00050 TMeshB2InputEvent fxSub2; 00051 TMeshB3InputEvent fxSub3; 00052 00053 private: 00054 TMeshUnpackProc * fxUnpacker; 00055 TGo4FileSource * fxFile; 00056 00057 ClassDef(TMeshRawEvent,1) 00058 }; 00059 #endif //TMESHRAWEVENT_H 00060 00061 00062 00063 00064 //----------------------------END OF GO4 SOURCE FILE ---------------------