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 TMESHUNPACKPROCESSOR_H 00017 #define TMESHUNPACKPROCESSOR_H 00018 #include "Go4EventServer/TGo4MbsEvent.h" 00019 #include "Go4Analysis/TGo4Analysis.h" 00020 #include "Go4Event/TGo4EventElement.h" 00021 #include "Go4Event/TGo4EventProcessor.h" 00022 00023 class TMeshRawEvent; 00024 class TMeshB1InputEvent; 00025 class TMeshB2InputEvent; 00026 class TMeshB3InputEvent; 00027 00028 class TMeshUnpackProc : public TGo4EventProcessor { 00029 public: 00030 TMeshUnpackProc() ; 00031 TMeshUnpackProc(Text_t * name); 00032 void Unpack(TMeshRawEvent* target); 00033 void UnpackBranch1(TMeshB1InputEvent* target); 00034 void UnpackBranch2(TMeshB2InputEvent* target); 00035 void UnpackBranch3(TMeshB3InputEvent* target); 00036 00037 virtual ~TMeshUnpackProc() ; 00038 private: 00039 TGo4MbsEvent *fInput; 00040 ClassDef(TMeshUnpackProc,1) 00041 }; 00042 #endif //TXXXUNPACKPROCESSOR_H 00043 00044 00045 00046 00047 //----------------------------END OF GO4 SOURCE FILE ---------------------