00001 // $Id: TXXXProc.h 478 2009-10-29 12:26:09Z linev $ 00002 //----------------------------------------------------------------------- 00003 // The GSI Online Offline Object Oriented (Go4) Project 00004 // Experiment Data Processing at EE department, GSI 00005 //----------------------------------------------------------------------- 00006 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH 00007 // Planckstr. 1, 64291 Darmstadt, Germany 00008 // Contact: http://go4.gsi.de 00009 //----------------------------------------------------------------------- 00010 // This software can be used under the license agreements as stated 00011 // in Go4License.txt file which is part of the distribution. 00012 //----------------------------------------------------------------------- 00013 00014 #ifndef TUNPACKPROCESSOR_H 00015 #define TUNPACKPROCESSOR_H 00016 00017 #include "TGo4EventProcessor.h" 00018 00019 class TXXXControl; 00020 00021 class TXXXProc : public TGo4EventProcessor { 00022 public: 00023 TXXXProc() ; 00024 TXXXProc(const char* name); 00025 virtual ~TXXXProc() ; 00026 00027 Bool_t BuildEvent(TGo4EventElement* target); // event processing function 00028 00029 private: 00030 TH1 *fCr1Ch[8]; 00031 TH1 *fCr2Ch[8]; 00032 TH2 *fCr1Ch1x2; 00033 TH1 *fHis1; 00034 TH1 *fHis1gate; 00035 TH1 *fHis2; 00036 TH1 *fHis2gate; 00037 TGo4WinCond *fconHis1; 00038 TGo4WinCond *fconHis2; 00039 TGo4PolyCond *fPolyCon; 00040 TGo4CondArray *fConArr; 00041 TXXXControl *fControl; 00042 TGo4Picture *fPicture; 00043 TGo4Picture *fcondSet; 00044 00045 ClassDef(TXXXProc,1) 00046 }; 00047 00048 #endif //TUNPACKPROCESSOR_H 00049