00001 // $Id: TMeshFinalEvent.h 478 2009-10-29 12:26:09Z linev $ 00002 //----------------------------------------------------------------------- 00003 // The GSI Online Offline Object Oriented (Go4) Project 00004 // Experiment Data Processing at EE department, GSI 00005 //----------------------------------------------------------------------- 00006 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH 00007 // Planckstr. 1, 64291 Darmstadt, Germany 00008 // Contact: http://go4.gsi.de 00009 //----------------------------------------------------------------------- 00010 // This software can be used under the license agreements as stated 00011 // in Go4License.txt file which is part of the distribution. 00012 //----------------------------------------------------------------------- 00013 00014 #ifndef TMESHFINALEVENT_H 00015 #define TMESHFINALEVENT_H 00016 00017 #include "TGo4EventElement.h" 00018 00019 #include "TMeshB1OutputEvent.h" 00020 #include "TMeshB2OutputEvent.h" 00021 #include "TMeshB3OutputEvent.h" 00022 #include "TMeshB12OutputEvent.h" 00023 00024 class TGo4FileSource; 00025 class TMeshFinalProc; 00026 00027 class TMeshFinalEvent : public TGo4EventElement { 00028 public: 00029 TMeshFinalEvent() ; 00030 TMeshFinalEvent(const char* name) ; 00031 ~TMeshFinalEvent() ; 00032 virtual Int_t Init(); 00033 virtual Int_t Fill(); 00034 virtual void Clear(Option_t *t=""); 00035 00037 TMeshB1OutputEvent fxB1; 00038 TMeshB2OutputEvent fxB2; 00039 TMeshB3OutputEvent fxB3; 00040 TMeshB12OutputEvent fxB12; 00041 00042 private: 00043 // this object is streamed. Therefore pointers must be excluded! 00044 // Otherwise these objects are streamed as well 00045 TMeshFinalProc * fxFinalProc; 00046 TGo4FileSource * fxFile; 00047 00048 ClassDef(TMeshFinalEvent,1) 00049 }; 00050 00051 #endif //TXXXANLEVENT_H