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 TMESHANALYSIS_H 00017 #define TMESHANALYSIS_H 00018 00019 #include "TGo4Analysis.h" 00020 00021 class TGo4MbsEvent; 00022 class TMeshParameter; 00023 class TH1D; 00024 00025 class TMeshAnalysis : public TGo4Analysis { 00026 public: 00027 TMeshAnalysis(); 00028 TMeshAnalysis(const char* input, Int_t type, Int_t port, 00029 const char* out1, const char* out2, Bool_t en1, Bool_t en2); 00030 virtual ~TMeshAnalysis() ; 00031 virtual Int_t UserPreLoop(); 00032 virtual Int_t UserEventFunc(); 00033 virtual Int_t UserPostLoop(); 00034 private: 00035 00036 00037 TMeshParameter *fPar; 00038 TGo4MbsEvent* fMbsEvent; 00039 TH1D *fSize; 00040 Int_t fEvents; 00041 Int_t fLastEvent; 00042 00043 ClassDef(TMeshAnalysis,1) 00044 }; 00045 #endif //TMESHANALYSIS_H 00046 00047 00048 00049 00050 //----------------------------END OF GO4 SOURCE FILE ---------------------