00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE 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 <iostream.h> 00020 00021 #include "TObject.h" 00022 00023 #include "TGo4GSIEventHeader.h" 00024 00031 class TGo4EventHeader10 : public TObject { 00032 public: 00033 00037 virtual void Clear(Option_t* ="") 00038 { 00039 fxGSIHeader.Clear(); 00040 fsDummy=0; 00041 fsTrigger=0; 00042 fiCount=0; 00043 } 00044 00048 TGo4GSIEventHeader fxGSIHeader; 00052 Short_t fsDummy; 00056 Short_t fsTrigger; 00057 00058 Int_t fiCount; 00059 00060 00061 TGo4EventHeader10() 00062 : fsDummy(0), fsTrigger(0), fiCount(0) { } 00063 00064 virtual ~TGo4EventHeader10() { } 00065 00066 00067 ClassDef(TGo4EventHeader10,1) 00068 }; 00069 00070 00071 00072 #endif // TGO4EVENTHEADER10_H 00073 00074 00075 00076 00077 //----------------------------END OF GO4 SOURCE FILE ---------------------