]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/hfe/AliHFEpidBase.h
Update of PID classes (Markus); Reduction of the number of cut steps in the Correctio...
[u/mrichter/AliRoot.git] / PWG3 / hfe / AliHFEpidBase.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 #ifndef ALIHFEPIDBASE_H
16 #define ALIHFEPIDBASE_H
17  
18  #ifndef ROOT_TNamed
19  #include <TNamed.h>
20  #endif
21
22 class TList;
23 class AliVParticle;
24 class AliMCParticle;
25
26 struct AliHFEpidObject{
27     typedef enum{ 
28       kESDanalysis,
29       kAODanalysis
30     }AnalysisType_t;
31     AliVParticle *fRecTrack;
32     AliVParticle *fMCtrack;
33     UChar_t fAnalysisType;
34     AliHFEpidObject():fRecTrack(NULL), fMCtrack(NULL), fAnalysisType(kESDanalysis){}
35 };
36
37 class AliHFEpidBase : public TNamed{
38   enum{
39     kQAon = BIT(14),
40     kHasMCData = BIT(15)
41   };
42   public:
43     AliHFEpidBase(const Char_t *name);
44     AliHFEpidBase(const AliHFEpidBase &c);
45     AliHFEpidBase &operator=(const AliHFEpidBase &c);
46     virtual ~AliHFEpidBase() {};
47     // Framework functions that have to be implemented by the detector PID classes
48     virtual Bool_t InitializePID() = 0;
49     virtual Int_t IsSelected(AliHFEpidObject *track) = 0;
50     virtual Bool_t HasQAhistos() const = 0;
51
52     Int_t GetDebugLevel() const { return fDebugLevel; };
53     Bool_t IsQAon() const { return TestBit(kQAon);};
54     Bool_t HasMCData() const { return TestBit(kHasMCData); };
55
56     void SetDebugLevel(Int_t debugLevel) { fDebugLevel = debugLevel; }; 
57     inline void SetQAOn(TList *fQAlist);
58     void SetHasMCData(Bool_t hasMCdata = kTRUE) { SetBit(kHasMCData,hasMCdata); };
59
60   protected:
61     void Copy(TObject &ref) const;
62     virtual void AddQAhistograms(TList *){};
63   private:
64     Int_t fDebugLevel;              // Debug Level
65
66     ClassDef(AliHFEpidBase, 1)      // Base class for detector Electron ID
67 };
68
69 //___________________________________________________________________
70 void AliHFEpidBase::SetQAOn(TList *qaList){
71   //
72   // Initialize QA for Detector PID class
73   //
74   if(HasQAhistos()){
75     SetBit(kQAon, kTRUE);
76     AddQAhistograms(qaList);
77   }
78 }
79 #endif