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 TXXXANLPROCESSOR_H 00017 #define TXXXANLPROCESSOR_H 00018 00019 #include "TRandom.h" 00020 #include "TMath.h" 00021 #include "TH1.h" 00022 #include "TH2.h" 00023 #include "TObjArray.h" 00024 #include "TCutG.h" 00025 #include "TMultiGraph.h" 00026 00027 #include "Go4Event/TGo4EventElement.h" 00028 #include "Go4Event/TGo4EventProcessor.h" 00029 00030 #include "TXXXUnpackEvent.h" 00031 #include "TXXXParameter.h" 00032 #include "TXXXCalibPar.h" 00033 00034 #include "Go4ConditionsBase/TGo4WinCond.h" 00035 #include "Go4ConditionsBase/TGo4PolyCond.h" 00036 #include "Go4ConditionsBase/TGo4CounterCond.h" 00037 #include "Go4ConditionsBase/TGo4CondArray.h" 00038 00039 class TXXXAnlEvent; 00040 00041 class TXXXAnlProc : public TGo4EventProcessor { 00042 00043 public: 00044 TXXXAnlProc() ; 00045 TXXXAnlProc(Text_t * name); 00046 void XXXEventAnalysis(TXXXAnlEvent* target); 00047 virtual ~TXXXAnlProc() ; 00048 00049 TH1I *fSum1; 00050 TH1I *fSum2; 00051 TH1I *fSum3; 00052 TH1I *fCaliSum1; 00053 TGraph *fCaligraph; 00055 TGraph *fxGraph1; 00056 TGraph *fxGraph2; 00057 TMultiGraph* fxMultiGraph; 00059 TXXXUnpackEvent *fInput; 00060 TXXXParameter *fParam1; 00061 TXXXParameter *fParam2; 00062 TXXXCalibPar *fCalipar; 00063 TGo4WinCond *fWinCon; 00064 00065 ClassDef(TXXXAnlProc,1) 00066 }; 00067 #endif //TXXXANLPROCESSOR_H 00068 00069 00070 00071 00072 //----------------------------END OF GO4 SOURCE FILE ---------------------