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