00001 // $Id: TYYYUnpackProc.h 1256 2014-10-15 08:16:07Z adamczew $ 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 TYYYUNPACKPROCESSOR_H 00015 #define TYYYUNPACKPROCESSOR_H 00016 00017 #include "TGo4EventProcessor.h" 00018 00019 class TYYYUnpackEvent; 00020 class TYYYParameter; 00021 00022 class TYYYUnpackProc : public TGo4EventProcessor { 00023 public: 00024 TYYYUnpackProc() ; 00025 TYYYUnpackProc(const char* name); 00026 virtual ~TYYYUnpackProc() ; 00027 00029 virtual Bool_t CheckEventClass(TClass* cl); 00030 00031 virtual Bool_t BuildEvent(TGo4EventElement* dest); 00032 private: 00033 TH1 *fX; 00034 TH1 *fY; 00035 TH1 *fZ; 00036 TH1 *fVX; 00037 TH1 *fVY; 00038 TH1 *fVZ; 00039 TH1 *fThetaX; 00040 TH1 *fThetaY; 00041 TH1 *fThetaR; 00042 TH1 *fNumScatt; 00043 TH2 *fXY; 00044 TH2 *fVXVY; 00045 TH2 *fXYCond; 00046 TH2 *fVXVYCond; 00047 TH2 *fEmitX; 00048 TH2 *fEmitY; 00049 TH1 *fEmitDist; 00050 TGo4WinCond *fWinConR; 00051 TGo4WinCond *fWinConV; 00052 TGo4PolyCond *fPolyConEmit; 00053 TYYYParameter *fParam1; 00054 00055 ClassDef(TYYYUnpackProc,1) 00056 }; 00057 00058 #endif //TYYYUNPACKPROCESSOR_H