GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TYYYAnalysis.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 TYYYAnalysis_H
15 #define TYYYAnalysis_H
16 
17 #include "TGo4Analysis.h"
18 
19 class TH1D;
20 class TYYYRawEvent;
21 class TYYYUnpackEvent;
22 class TYYYParameter;
23 
24 class TYYYAnalysis : public TGo4Analysis {
25  public:
26  TYYYAnalysis();
27  TYYYAnalysis(int argc, char **argv);
28  virtual ~TYYYAnalysis();
29  Int_t UserPreLoop() override;
30  Int_t UserEventFunc() override;
31  Int_t UserPostLoop() override;
32  private:
35  TH1D *fSize{nullptr};
36  TYYYParameter *fPar{nullptr};
37  Int_t fEvents{0};
38  Int_t fLastEvent{0};
39 
40  ClassDefOverride(TYYYAnalysis,1)
41 };
42 
43 #endif
Int_t UserEventFunc() override
TYYYRawEvent * fRawEvent
Definition: TYYYAnalysis.h:33
virtual ~TYYYAnalysis()
Int_t UserPreLoop() override
TH1D * fSize
Definition: TYYYAnalysis.h:35
Int_t UserPostLoop() override
TYYYUnpackEvent * fUnpackEvent
Definition: TYYYAnalysis.h:34
Int_t fLastEvent
Definition: TYYYAnalysis.h:38
TYYYParameter * fPar
Definition: TYYYAnalysis.h:36