]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/hfe/AliHFEemcalPIDqa.h
1b3df4e5a744f8dea5077696cb79ca7def7c7ef2
[u/mrichter/AliRoot.git] / PWG3 / hfe / AliHFEemcalPIDqa.h
1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 *                                                                        *
4 * Author: The ALICE Off-line Project.                                    *
5 * Contributors are mentioned in the code where appropriate.              *
6 *                                                                        *
7 * Permission to use, copy, modify and distribute this software and its   *
8 * documentation strictly for non-commercial purposes is hereby granted   *
9 * without fee, provided that the above copyright notice appears in all   *
10 * copies and that both the copyright notice and this permission notice   *
11 * appear in the supporting documentation. The authors make no claims     *
12 * about the suitability of this software for any purpose. It is          *
13 * provided "as is" without express or implied warranty.                  *
14 **************************************************************************/
15 //
16 // Class AliHFEemcalPIDqa
17 // Monitoring EMCAL PID in the HFE PID montioring framework
18 // More information can be found inside the implementation file
19 //
20 #ifndef ALIHFEEMCALPIDQA_H
21 #define ALIHFEEMCALPIDQA_H
22
23 #ifndef ALIHFEDETPIDQA_H
24 #include "AliHFEdetPIDqa.h"
25 #endif
26
27 class TH1;
28 class TH2;
29 class AliHFEcollection;
30 class AliHFEpidObject;
31 class AliESDtrack;
32 class AliAODTrack;
33
34 class AliHFEemcalPIDqa : public AliHFEdetPIDqa{
35   public:
36     AliHFEemcalPIDqa();
37     AliHFEemcalPIDqa(const char*name);
38     AliHFEemcalPIDqa(const AliHFEemcalPIDqa &o);
39     AliHFEemcalPIDqa &operator=(const AliHFEemcalPIDqa &o);
40     ~AliHFEemcalPIDqa();
41     void Copy(TObject &o) const;
42     virtual Long64_t Merge(TCollection *col);
43   
44     virtual void Initialize();
45     virtual void ProcessTrack(const AliHFEpidObject *track, AliHFEdetPIDqa::EStep_t step);
46
47     //void HistEnergyMomMatch(double pT, double eop);
48     void HistEnergyMomMatch(const AliHFEpidObject *track, double eop);
49     TH1 *GetHistogram(const char *name); 
50     AliHFEcollection *GetHistoCollection() const { return fHistos; }
51
52   protected:
53     void ProcessESDtrack(const AliESDtrack *track, AliHFEdetPIDqa::EStep_t step, Int_t species);
54     void ProcessAODtrack(const AliAODTrack *track, AliHFEdetPIDqa::EStep_t step, Int_t species);
55   private:
56     AliHFEcollection *fHistos;        // Container for Histograms
57
58     ClassDef(AliHFEemcalPIDqa, 1);
59 };
60 #endif