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 TGO4EVENTHEADER10_H 00017 #define TGO4EVENTHEADER10_H 00018 00019 #include "TObject.h" 00020 00021 #include "TGo4GSIEventHeader.h" 00022 00030 class TGo4EventHeader10 : public TObject { 00031 public: 00032 00033 TGo4EventHeader10() : 00034 TObject(), 00035 fxGSIHeader(), 00036 fsDummy(0), 00037 fsTrigger(0), 00038 fiCount(0) 00039 {} 00040 00041 virtual ~TGo4EventHeader10() {} 00042 00044 virtual void Clear(Option_t* ="") 00045 { 00046 fxGSIHeader.Clear(); 00047 fsDummy=0; 00048 fsTrigger=0; 00049 fiCount=0; 00050 } 00051 00053 TGo4GSIEventHeader fxGSIHeader; 00054 00056 Short_t fsDummy; 00057 00059 Short_t fsTrigger; 00060 00061 Int_t fiCount; 00062 00063 ClassDef(TGo4EventHeader10,1) 00064 }; 00065 00066 #endif // TGO4EVENTHEADER10_H 00067 00068 //----------------------------END OF GO4 SOURCE FILE ---------------------