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 TMESHFINALPROCESSOR_H 00017 #define TMESHFINALPROCESSOR_H 00018 00019 00020 #include "Go4Event/TGo4EventElement.h" 00021 #include "Go4Event/TGo4EventProcessor.h" 00022 00023 00024 00025 class TMeshB12OutputEvent; 00026 class TMeshB1OutputEvent; 00027 class TMeshB2OutputEvent; 00028 class TMeshB3OutputEvent; 00029 class TMeshFinalEvent; 00030 00031 class TMeshFinalProc : public TGo4EventProcessor { 00032 00033 public: 00034 TMeshFinalProc() ; 00035 TMeshFinalProc(Text_t * name); 00036 void Analysis(TMeshFinalEvent* target); 00037 virtual ~TMeshFinalProc() ; 00038 00039 TMeshB1OutputEvent* fxInput1; 00040 TMeshB2OutputEvent* fxInput2; 00041 TMeshB3OutputEvent* fxInput3; 00042 TMeshB12OutputEvent* fxInput12; 00043 00044 ClassDef(TMeshFinalProc,1) 00045 }; 00046 #endif //TMeshFinalProcESSOR_H 00047 00048 00049 00050 00051 //----------------------------END OF GO4 SOURCE FILE ---------------------