]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGGA/GammaConv/AliAnaConvCorrPion.h
Squashed commit of the following:
[u/mrichter/AliRoot.git] / PWGGA / GammaConv / AliAnaConvCorrPion.h
1 /* This file is property of and copyright                                 *\r
2  * ALICE Experiment at CERN, All rights reserved.                         *\r
3  * See cxx source for full Copyright notice                               */\r
4 \r
5 /// @file   AliAnaConvCorrPion.h\r
6 /// @author Svein Lindal\r
7 /// @brief  Class used to find correlations between pions and charged tracks\r
8 \r
9 \r
10 #ifndef ALIANACONVCORRPION_H\r
11 #define ALIANACONVCORRPION_H\r
12 \r
13 #include "AliAnaConvCorrBase.h"\r
14 class TH2D;\r
15 //#include "THnSparse.h"\r
16 \r
17 //class AliAODConversionPhoton;\r
18 class TClonesArray;\r
19 \r
20 class AliAnaConvCorrPion : public AliAnaConvCorrBase {\r
21 \r
22 public:\r
23 \r
24   AliAnaConvCorrPion(); \r
25   AliAnaConvCorrPion(TString name, TString title);\r
26   virtual ~AliAnaConvCorrPion();\r
27 \r
28   TAxis& GetAxisM() { return fAxisM; }\r
29 \r
30 void CreateHistograms();\r
31 \r
32   void FillTriggerCounters(const AliAODConversionParticle * particle, Int_t leading);\r
33   \r
34  private:\r
35 \r
36   void InitMassAxis();\r
37 \r
38   TAxis fAxisM;  //Mass axis\r
39 \r
40   AliAnaConvCorrPion(const AliAnaConvCorrPion&); // not implemented\r
41   AliAnaConvCorrPion& operator=(const AliAnaConvCorrPion&); // not implemented\r
42   ClassDef(AliAnaConvCorrPion, 3); //\r
43 \r
44 };\r
45 \r
46 #endif\r