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 TYYYUNPACKPROCESSOR_H 00017 #define TYYYUNPACKPROCESSOR_H 00018 00019 #include "TGo4EventProcessor.h" 00020 00021 class TYYYUnpackEvent; 00022 class TYYYRawEvent; 00023 class TYYYParameter; 00024 00025 class TYYYUnpackProc : public TGo4EventProcessor { 00026 public: 00027 TYYYUnpackProc() ; 00028 TYYYUnpackProc(const char* name); 00029 void YYYUnpack(TYYYUnpackEvent* target); 00030 virtual ~TYYYUnpackProc() ; 00031 private: 00032 TH1D *fX; 00033 TH1D *fY; 00034 TH1D *fZ; 00035 TH1D *fVX; 00036 TH1D *fVY; 00037 TH1D *fVZ; 00038 TH1D *fNumScatt; 00039 TH2D *fXY; 00040 TH2D *fVXVY; 00041 TH2D *fXYCond; 00042 TH2D *fVXVYCond; 00043 TH2D *fEmitX; 00044 TH2D *fEmitY; 00045 TH1D *fEmitDist; 00046 TGo4WinCond *fWinConR; 00047 TGo4WinCond *fWinConV; 00048 TGo4PolyCond *fPolyConEmit; 00049 TYYYRawEvent *fInput; 00050 TYYYParameter *fParam1; 00051 TYYYParameter *fParam2; 00052 00053 ClassDef(TYYYUnpackProc,1) 00054 }; 00055 00056 #endif //TYYYUNPACKPROCESSOR_H 00057 00058 //----------------------------END OF GO4 SOURCE FILE ---------------------