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 TYYYEVENT_H 00017 #define TYYYEVENT_H 00018 00019 #include "TGo4EventElement.h" 00020 00021 class TYYYUnpackProc; 00022 class TGo4FileSource; 00023 00024 class TYYYUnpackEvent : public TGo4EventElement { 00025 public: 00026 TYYYUnpackEvent() ; 00027 TYYYUnpackEvent(const char* name) ; 00028 virtual ~TYYYUnpackEvent() ; 00035 Int_t Fill(); 00036 00041 void Clear(Option_t *t=""); 00042 Int_t Init(); 00043 00044 Double_t fdR[3]; // final particle radius vector 00045 Double_t fdV[3]; // final velocity vector 00046 Double_t fdGam[2]; // projected divergence angle 00047 Int_t fiNumScatt; // number of scatterings 00048 Double_t fdEmittX; // pi*x*x' 00049 Double_t fdEmittY; // pi*y*y' 00050 Double_t fdEmitt4d; //EmittX*Y 00051 00052 private: 00053 TYYYUnpackProc * fxYYYEP; 00054 TGo4FileSource * fxYYYFS; 00055 00056 ClassDef(TYYYUnpackEvent,1) 00057 }; 00058 #endif //TYYYEVENT_H 00059 00060 00061 00062 00063 //----------------------------END OF GO4 SOURCE FILE ---------------------