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 TXXXANALYSIS_H 00017 #define TXXXANALYSIS_H 00018 00019 #include "TGo4Analysis.h" 00020 00021 class TFile; 00022 class TH1D; 00023 class TGo4MbsEvent; 00024 class TXXXUnpackEvent; 00025 class TXXXAnlEvent; 00026 class TXXXParameter; 00027 class TGo4FitterEnvelope; 00028 00029 class TXXXAnalysis : public TGo4Analysis { 00030 public: 00031 TXXXAnalysis(); 00032 TXXXAnalysis(Text_t * input, Int_t type, Int_t port 00033 , Text_t * out1, Text_t * out2, Bool_t en1, Bool_t en2); 00034 virtual ~TXXXAnalysis() ; 00035 virtual Int_t UserPreLoop(); 00036 virtual Int_t UserEventFunc(); 00037 virtual Int_t UserPostLoop(); 00038 private: 00039 TFile *fUserFile; 00040 TGo4MbsEvent *fMbsEvent; 00041 TXXXUnpackEvent *fRawEvent; 00042 TXXXAnlEvent *fCalEvent; 00043 TXXXParameter *fPar; 00044 TGo4FitterEnvelope *fFitEnvSize; 00045 TGo4FitterEnvelope *fFitEnvSpectrum; 00046 TH1D *fSize; 00047 Int_t fEvents; 00048 Int_t fLastEvent; 00049 00050 ClassDef(TXXXAnalysis,1) 00051 }; 00052 00053 #endif //TXXXANALYSIS_H 00054 00055 00056 00057 00058 //----------------------------END OF GO4 SOURCE FILE ---------------------