PandaRoot
PndTutAnaTaskD0.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 #ifndef PndTutAnaTaskD0_H
14 #define PndTutAnaTaskD0_H 1
15 
16 #include "FairTask.h"
17 #include <map>
18 #include <string>
19 #include "TLorentzVector.h"
20 
21 class TClonesArray;
22 class TH1F;
23 class TH2F;
24 
26 class PndAnalysis;
27 class RhoCandList;
28 class RhoCandidate;
29 class RhoTuple;
30 class RhoVtxPoca;
31 
32 class PndTutAnaTaskD0 : public FairTask {
33 
34  public:
35  // ** Default constructor
36  PndTutAnaTaskD0(double pbarmom);
37 
38  // ** Destructor
40 
41  // ** Virtual method Init
42  virtual InitStatus Init();
43 
44  // ** Virtual method Exec
45  virtual void Exec(Option_t *opt);
46 
47  virtual void Finish();
48 
49  protected:
50  private:
51  // *** event counter
52  int fEvtCount;
53 
54  // *** the initial 4-vector
55  TLorentzVector fIni;
56 
57  // *** the PndAnalysis object
58  PndAnalysis *fAnalysis;
59 
60  // *******
61  // ******* DECLARE THE STUFF YOU NEED
62  // *******
63  RhoTuple *nd0;
65  RhoVtxPoca *fVtxPoca;
66 
67  // *** Get parameter containers
68  virtual void SetParContainers();
69 
70  ClassDef(PndTutAnaTaskD0, 1);
71 };
72 
73 #endif
PndTutAnaTaskD0(double pbarmom)
virtual void Exec(Option_t *opt)
virtual InitStatus Init()
virtual void Finish()