]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoEventReaderAOD.h
memory leak fixes in AliFemto code
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoEventReaderAOD.h
1 ////////////////////////////////////////////////////////////////////////////////
2 //                                                                            //
3 // AliFemtoEventReaderAOD - the reader class for the Alice AOD                //
4 // Reads in AOD information and converts it into internal AliFemtoEvent       //
5 // Authors: Adam Kisiel kisiel@mps.ohio-state.edu                             //
6 //                                                                            //
7 ////////////////////////////////////////////////////////////////////////////////
8
9 #ifndef ALIFEMTOEVENTREADERAOD_H
10 #define ALIFEMTOEVENTREADERAOD_H
11 #include "AliFemtoEventReader.h"
12 #include "AliFemtoEnumeration.h"
13
14 #include <string>
15 #include <vector>
16 #include "TTree.h"
17 #include "TChain.h"
18 #include "TBits.h"
19 #include "AliAODEvent.h"
20 #include <list>
21 //#include "AliPWG2AODTrack.h"
22 #include "AliAODMCParticle.h"
23 #include "AliFemtoV0.h"
24 #include "AliAODpidUtil.h"
25 #include "AliAODHeader.h"
26 #include "AliAnalysisUtils.h"
27
28 class AliFemtoEvent;
29 class AliFemtoTrack;
30
31 class AliFemtoEventReaderAOD : public AliFemtoEventReader 
32 {
33  public:
34   enum EventMult {kCentrality=0, kGlobalCount=1, kReference=2, kTPCOnlyRef=3, kVZERO=4, kCentralityTRK=5, kCentralityZNA=6, kCentralityCL1=7, kCentralityCND=9,  kCentralityV0A=10, kCentralityV0C=11, kCentralityZNC=12, kCentralityCL0=13, kCentralityFMD=14, kCentralityTKL=15, kCentralityNPA=16};
35   typedef enum EventMult EstEventMult;
36
37   AliFemtoEventReaderAOD();
38   AliFemtoEventReaderAOD(const AliFemtoEventReaderAOD &aReader);
39   virtual ~AliFemtoEventReaderAOD();
40
41   AliFemtoEventReaderAOD& operator=(const AliFemtoEventReaderAOD& aReader);
42
43   virtual AliFemtoEvent* ReturnHbtEvent();
44   AliFemtoString Report();
45   void SetInputFile(const char* inputfile);
46   void SetFilterBit(UInt_t ibit);
47   void SetFilterMask(int ibit);
48   void SetReadMC(unsigned char a);
49   void SetReadV0(unsigned char a);
50   void SetCentralityPreSelection(double min, double max);
51   void SetNoCentrality(bool anocent);
52   void SetAODpidUtil(AliAODpidUtil *aAODpidUtil);
53   void SetAODheader(AliAODHeader *aAODheader);
54   void SetMagneticFieldSign(int s);
55   void SetEPVZERO(Bool_t);
56   void GetGlobalPositionAtGlobalRadiiThroughTPC(AliAODTrack *track, Float_t bfield, Float_t globalPositionsAtRadii[9][3]);
57   void SetUseMultiplicity(EstEventMult aType);
58   void SetpA2013(Bool_t pa2013);
59
60  protected:
61   virtual void CopyAODtoFemtoEvent(AliFemtoEvent *tEvent);
62   virtual void CopyAODtoFemtoTrack( AliAODTrack *tAodTrack,  
63                                     AliFemtoTrack *tFemtoTrack
64                                     //                              AliPWG2AODTrack *tPWG2AODTrack
65                                     ); 
66   virtual void CopyAODtoFemtoV0(AliAODv0 *tAODv0, AliFemtoV0 *tFemtoV0);                            
67   virtual void CopyPIDtoFemtoTrack( AliAODTrack *tAodTrack, 
68                                    AliFemtoTrack *tFemtoTrack);
69
70   int            fNumberofEvent;    // number of Events in AOD file
71   int            fCurEvent;         // number of current event
72   AliAODEvent*   fEvent;            // AOD event
73   TBits          fAllTrue;          // Bit set with all true bits
74   TBits          fAllFalse;         // Bit set with all false bits
75   UInt_t         fFilterBit;        // Bitmap bit for AOD filters
76   UInt_t         fFilterMask;       
77   //  TClonesArray*  fPWG2AODTracks;    // Link to PWG2 specific AOD information (if it exists)
78   
79   unsigned char  fReadMC;           // Attempt to read the MC information from the AOD
80   unsigned char  fReadV0;           // Read V0 information from the AOD and put it into V0Collection
81   unsigned char  fUsePreCent;       // Use centrality pre-selection to speed up analysis
82   EstEventMult   fEstEventMult;  // Type of the event multiplicity estimator
83   double         fCentRange[2];     // Centrality pre-selection range
84   AliAODpidUtil* fAODpidUtil;
85   AliAODHeader* fAODheader; 
86  
87
88  private:
89
90   AliAODMCParticle* GetParticleWithLabel(TClonesArray *mcP, Int_t aLabel); 
91
92   string         fInputFile;        // name of input file with AOD filenames
93   TChain*        fTree;             // AOD tree
94   TFile*         fAodFile;          // AOD file 
95   int            fMagFieldSign;     // Magnetic field sign
96   Bool_t fisEPVZ; // to get event plane angle from VZERO
97   Bool_t fpA2013; // analysis on pA 2013 data
98
99
100 #ifdef __ROOT__
101   ClassDef(AliFemtoEventReaderAOD, 11)
102 #endif
103
104 };
105   
106 #endif
107
108