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 TGO4SUBEVENTHEADER10_H 00017 #define TGO4SUBEVENTHEADER10_H 00018 00019 #include <iostream.h> 00020 00021 #include "TObject.h" 00022 00023 #include "TGo4GSIEventHeader.h" 00024 00031 class TGo4SubEventHeader10 : public TObject { 00032 public: 00033 00035 virtual void Clear(Option_t* opt="") 00036 { 00037 fxGSIHeader.Clear(); 00038 fxGSIHeader.fsType=10; 00039 //fsProcid=0; // these three values are all unique identifiers 00040 //fcSubcrate=0; 00041 //fcControl=0; 00042 } 00043 00045 TGo4GSIEventHeader fxGSIHeader; 00046 00048 Short_t fsProcid; 00049 00051 Char_t fcSubcrate; 00052 00054 Char_t fcControl; 00055 00056 TGo4SubEventHeader10() : fsProcid(0), fcSubcrate(0), fcControl(0) { } 00057 virtual ~TGo4SubEventHeader10() { } 00058 00059 ClassDef(TGo4SubEventHeader10,1) 00060 }; 00061 00062 #endif // TGO4SUBEVENTHEADER10_H 00063 00064 //----------------------------END OF GO4 SOURCE FILE ---------------------