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 TUNPACKPROCESSOR_H 00017 #define TUNPACKPROCESSOR_H 00018 00019 #include "TGo4EventProcessor.h" 00020 00021 class TXXXParam; 00022 00023 class TXXXProc : public TGo4EventProcessor { 00024 public: 00025 TXXXProc() ; 00026 TXXXProc(const char* name); 00027 virtual ~TXXXProc() ; 00028 00029 Bool_t BuildEvent(TGo4EventElement* target); // event processing function 00030 00031 private: 00032 TH1I *fCr1Ch[8]; 00033 TH1I *fCr2Ch[8]; 00034 TH2I *fCr1Ch1x2; 00035 TH1I *fHis1; 00036 TH1I *fHis1gate; 00037 TH1I *fHis2; 00038 TH1I *fHis2gate; 00039 TGo4WinCond *fconHis1; 00040 TGo4WinCond *fconHis2; 00041 TGo4PolyCond *fPolyCon; 00042 TGo4CondArray *fConArr; 00043 TGo4MbsEvent *fInput; 00044 TXXXParam *fParam; 00045 TGo4Picture *fPicture; 00046 TGo4Picture *fcondSet; 00047 Float_t fCrate1[8]; 00048 Float_t fCrate2[8]; 00049 00050 ClassDef(TXXXProc,1) 00051 }; 00052 #endif //TUNPACKPROCESSOR_H 00053 00054 00055 //----------------------------END OF GO4 SOURCE FILE ---------------------