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 TMESHFINALEVENT_H 00017 #define TMESHFINALEVENT_H 00018 #include "Go4Event/TGo4EventElement.h" 00019 #include "Go4EventServer/TGo4FileSource.h" 00020 #include "TMeshFinalProc.h" 00021 #include "TMeshB1OutputEvent.h" 00022 #include "TMeshB2OutputEvent.h" 00023 #include "TMeshB3OutputEvent.h" 00024 #include "TMeshB12OutputEvent.h" 00025 00026 00027 class TMeshFinalEvent : public TGo4EventElement 00028 { 00029 public: 00030 TMeshFinalEvent() ; 00031 TMeshFinalEvent(Text_t * name) ; 00032 ~TMeshFinalEvent() ; 00033 virtual Int_t Init(); 00034 virtual Int_t Fill(); 00035 virtual void Clear(Option_t *t=""); 00036 00038 TMeshB1OutputEvent fxB1; 00039 TMeshB2OutputEvent fxB2; 00040 TMeshB3OutputEvent fxB3; 00041 TMeshB12OutputEvent fxB12; 00042 00043 // additional data members optional 00044 private: 00045 // this object is streamed. Therefore pointers must be excluded! 00046 // Otherwise these objects are streamed as well 00047 TMeshFinalProc * fxFinalProc; 00048 TGo4FileSource * fxFile; 00049 00050 ClassDef(TMeshFinalEvent,1) 00051 }; 00052 #endif //TXXXANLEVENT_H 00053 00054 00055 00056 00057 //----------------------------END OF GO4 SOURCE FILE ---------------------