GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TMeshUnpackProc.h
Go to the documentation of this file.
1 // $Id$
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #ifndef TMESHUNPACKPROCESSOR_H
15 #define TMESHUNPACKPROCESSOR_H
16 
17 #include "TGo4EventProcessor.h"
18 
19 class TMeshRawEvent;
20 class TMeshB1InputEvent;
21 class TMeshB2InputEvent;
22 class TMeshB3InputEvent;
23 class TGo4MbsEvent;
24 
26  public:
28  TMeshUnpackProc(const char *name);
29  virtual ~TMeshUnpackProc();
30 
31  void Unpack(TMeshRawEvent *target);
32  void UnpackBranch1(TMeshB1InputEvent *target);
33  void UnpackBranch2(TMeshB2InputEvent *target);
34  void UnpackBranch3(TMeshB3InputEvent *target);
35 
36  private:
37  TGo4MbsEvent *fInput{nullptr};
38 
39  ClassDefOverride(TMeshUnpackProc,1)
40 };
41 
42 #endif
void UnpackBranch1(TMeshB1InputEvent *target)
TGo4MbsEvent * fInput
void UnpackBranch3(TMeshB3InputEvent *target)
void Unpack(TMeshRawEvent *target)
void UnpackBranch2(TMeshB2InputEvent *target)
virtual ~TMeshUnpackProc()