GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TXXXAnalysis.h
Go to the documentation of this file.
1// $Id: TXXXAnalysis.h 478 2009-10-29 12:26:09Z linev $
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 TXXXAnalysis_H
15#define TXXXAnalysis_H
16
17#include "TGo4Analysis.h"
18
19class TH1D;
20class TGo4MbsEvent;
21class TXXXUnpackEvent;
22class TXXXAnlEvent;
23class TXXXParameter;
25
26class TXXXAnalysis : public TGo4Analysis {
27 public:
29 TXXXAnalysis(int argc, char **argv);
30 virtual ~TXXXAnalysis();
31 Int_t UserPreLoop() override;
32 Int_t UserEventFunc() override;
33 Int_t UserPostLoop() override;
34 private:
35 TGo4MbsEvent *fMbsEvent{nullptr};
36 TXXXUnpackEvent *fRawEvent{nullptr};
37 TXXXAnlEvent *fCalEvent{nullptr};
41 TH1D *fSize{nullptr};
42 Int_t fEvents{0};
43 Int_t fLastEvent{0};
44
45 ClassDefOverride(TXXXAnalysis,1)
46};
47
48#endif
The mother of all go4 analysis.
This class is a container for one fitter to be send between gui and analysis and back.
Wrapper for the standard gsi event structure as delivered from mbs.
TXXXAnalysis(int argc, char **argv)
TGo4FitterEnvelope * fFitEnvSize
TXXXAnlEvent * fCalEvent
TGo4MbsEvent * fMbsEvent
Int_t UserPostLoop() override
User defined function called once after processing the main event loop.
TGo4FitterEnvelope * fFitEnvSpectrum
TXXXParameter * fPar
TXXXUnpackEvent * fRawEvent
Int_t UserPreLoop() override
User defined function called once before processing the main event loop.
virtual ~TXXXAnalysis()
Int_t UserEventFunc() override
User defined function which processes the actual analysis.