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 TYYYRAWEVENT_H 00017 #define TYYYRAWEVENT_H 00018 00019 #include "TGo4EventElement.h" 00020 00021 class TObjArray; 00022 class TGo4FileSource; 00023 class TGo4FileStore; 00024 class TGo4TreeSource; 00025 class TYYYEventSource; 00026 00031 class TYYYRawEvent : public TGo4EventElement { 00032 00033 friend class TYYYEventSource; 00034 friend class TYYYUnpackProc; 00035 00036 public: 00037 00038 TYYYRawEvent(); 00039 00040 TYYYRawEvent(const char* name); 00041 00042 virtual ~TYYYRawEvent(); 00043 00053 virtual Int_t Fill(); 00054 00055 virtual Int_t Init(); 00056 00061 virtual void Clear(Option_t *t=""); 00062 00064 void ReAllocate(Int_t newsize); 00065 00066 void PrintEvent(); 00067 00068 Int_t GetColumns() const { return fiColumns; } 00069 00070 private: 00071 00072 /* Number of columns read from the file (used values for this event) */ 00073 Int_t fiColumns; 00074 00075 Double_t * fdData; //[fiColumns] 00076 00078 TYYYEventSource* fxUserSource; 00079 00081 TGo4TreeSource* fxTreeSource; 00082 00084 TGo4FileSource* fxFileSource; 00085 00086 ClassDef(TYYYRawEvent,1) 00087 }; 00088 00089 #endif //TYYYRAWEVENT_H 00090 00091 //----------------------------END OF GO4 SOURCE FILE ---------------------