]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ANALYSIS/AliTriggerAnalysis.h
Fixing CONSTANT_EXPRESSION_RESULT Coverity defect
[u/mrichter/AliRoot.git] / ANALYSIS / AliTriggerAnalysis.h
1 /* $Id: AliTriggerAnalysis.h 35782 2009-10-22 11:54:31Z jgrosseo $ */
2
3 #ifndef ALITRIGGERANALYSIS_H
4 #define ALITRIGGERANALYSIS_H
5
6 #include <TObject.h>
7
8 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
9  * See cxx source for full Copyright notice                               */
10
11 //-------------------------------------------------------------------------
12 //                      Implementation of   Class AliTriggerAnalysis
13 //   This class provides function to check if events have been triggered based on the data in the ESD
14 //   The trigger bits, trigger class inputs and only the data (offline trigger) can be used
15 //   Origin: Jan Fiete Grosse-Oetringhaus, CERN
16 //-------------------------------------------------------------------------
17
18 class AliESDEvent;
19 class AliESDtrackCuts;
20 class TH1F;
21 class TH2F;
22 class TCollection;
23 class TMap;
24
25 class AliTriggerAnalysis : public TObject
26 {
27   public:
28     enum Trigger { kAcceptAll = 1, kMB1 = 2, kMB2, kMB3, kSPDGFO, kSPDGFOBits, kV0A, kV0C, kV0OR, kV0AND, kV0ABG, kV0CBG, kZDC, kZDCA, kZDCC, kFMDA, kFMDC, kFPANY, kNSD1, kMB1Prime, kStartOfFlags = 0x0100, kOfflineFlag = 0x8000, kOneParticle = 0x16000, kOneTrack = 0x20000}; // MB1, MB2, MB3 definition from ALICE-INT-2005-025
29     enum AliceSide { kASide = 1, kCSide, kCentralBarrel };
30     enum V0Decision { kV0Invalid = -1, kV0Empty = 0, kV0BB, kV0BG, kV0Fake };
31     
32     AliTriggerAnalysis();
33     virtual ~AliTriggerAnalysis();
34     
35     void EnableHistograms();
36     void SetAnalyzeMC(Bool_t flag = kTRUE) { fMC = flag; }
37     
38     Bool_t IsTriggerFired(const AliESDEvent* aEsd, Trigger trigger);
39     
40     // using trigger bits in ESD
41     Bool_t IsTriggerBitFired(const AliESDEvent* aEsd, Trigger trigger) const;
42     Bool_t IsTriggerBitFired(ULong64_t triggerMask, Trigger trigger) const;
43     Bool_t IsTriggerBitFired(const AliESDEvent* aEsd, ULong64_t tclass) const;
44     
45     // using ESD data from detectors
46     Bool_t IsOfflineTriggerFired(const AliESDEvent* aEsd, Trigger trigger);
47
48     // using trigger classes in ESD
49     Bool_t IsTriggerClassFired(const AliESDEvent* aEsd, const Char_t* tclass) const;
50     
51     // some "raw" trigger functions
52   Int_t SPDFiredChips(const AliESDEvent* aEsd, Int_t origin, Bool_t fillHists = kFALSE, Int_t layer = 0);
53     Bool_t SPDGFOTrigger(const AliESDEvent* aEsd, Int_t origin);
54     V0Decision V0Trigger(const AliESDEvent* aEsd, AliceSide side, Bool_t online, Bool_t fillHists = kFALSE);
55     Bool_t ZDCTrigger(const AliESDEvent* aEsd, AliceSide side) const;
56     Bool_t FMDTrigger(const AliESDEvent* aEsd, AliceSide side);
57     Int_t SSDClusters(const AliESDEvent* aEsd);
58     static const char* GetTriggerName(Trigger trigger);
59     
60     void FillHistograms(const AliESDEvent* aEsd);
61     void FillTriggerClasses(const AliESDEvent* aEsd);
62     
63     void SetSPDGFOThreshhold(Int_t t) { fSPDGFOThreshold = t; }
64     void SetSPDGFOEfficiency(TH1F* hist) { fSPDGFOEfficiency = hist; }
65     void SetV0TimeOffset(Float_t offset) { fV0TimeOffset = offset; }
66     void SetV0AdcThr(Float_t thr) { fV0AdcThr = thr; }
67     void SetV0HwPars(Float_t thr, Float_t winLow, Float_t winHigh) { fV0HwAdcThr = thr; fV0HwWinLow = winLow; fV0HwWinHigh = winHigh; }
68     void SetFMDThreshold(Float_t low, Float_t hit) { fFMDLowCut = low; fFMDHitCut = hit; }
69     void SetDoFMD(Bool_t flag = kTRUE) {fDoFMD = flag;}
70
71     Int_t GetSPDGFOThreshhold() const { return fSPDGFOThreshold; }
72     Float_t GetV0TimeOffset() const { return fV0TimeOffset; }
73     Float_t GetV0AdcThr()     const { return fV0AdcThr; }
74     Float_t GetFMDLowThreshold() const { return fFMDLowCut; }
75     Float_t GetFMDHitThreshold() const { return fFMDHitCut; }
76     
77     virtual Long64_t Merge(TCollection* list);
78     void SaveHistograms() const;
79     
80     void PrintTriggerClasses() const;
81     void SetESDTrackCuts(AliESDtrackCuts* cuts) { fEsdTrackCuts = cuts;}
82     AliESDtrackCuts* GetESDTrackCuts() const  {return fEsdTrackCuts;}
83
84   protected:
85     Bool_t IsL0InputFired(const AliESDEvent* aEsd, UInt_t input) const;
86     Bool_t IsL1InputFired(const AliESDEvent* aEsd, UInt_t input) const;
87     Bool_t IsL2InputFired(const AliESDEvent* aEsd, UInt_t input) const;
88     Bool_t IsInputFired(const AliESDEvent* aEsd, Char_t level, UInt_t input) const;
89     
90     Float_t V0CorrectLeadingTime(Int_t i, Float_t time, Float_t adc, Int_t runNumber) const;
91     Float_t V0LeadingTimeWeight(Float_t adc) const;
92     
93     Int_t FMDHitCombinations(const AliESDEvent* aEsd, AliceSide side, Bool_t fillHists = kFALSE);
94
95     Int_t fSPDGFOThreshold;         // number of chips to accept a SPD GF0 trigger
96     TH1F* fSPDGFOEfficiency;         // SPD FASTOR efficiency - is applied in SPDFiredChips. Histogram contains efficiency as function of chip number (bin 1..400: first layer; 401..1200: second layer)
97     
98     Float_t fV0TimeOffset;          // time offset applied to the times read from the V0 (in ns)
99     Float_t fV0AdcThr;              // thresholds applied on V0 ADC data
100     Float_t fV0HwAdcThr;            // online V0 trigger - thresholds applied on ADC data 
101     Float_t fV0HwWinLow;            // online V0 trigger - lower edge of time window
102     Float_t fV0HwWinHigh;           // online V0 trigger - upper edge of time window
103
104     Bool_t  fDoFMD;                 // If false, skips the FMD (physics selection runs much faster)
105     Float_t fFMDLowCut;             // 
106     Float_t fFMDHitCut;             // 
107     
108     TH2F* fHistBitsSPD;        // offline trigger bits (calculated from clusters) vs hardware trigger bits
109     TH1F* fHistFiredBitsSPD;   // fired hardware bits
110     TH1F* fHistV0A;            // histograms that histogram the criterion the cut is applied on: bb triggers
111     TH1F* fHistV0C;            // histograms that histogram the criterion the cut is applied on: bb triggers
112     TH1F* fHistZDC;            // histograms that histogram the criterion the cut is applied on: fired bits (6 bins)
113     TH1F* fHistFMDA;           // histograms that histogram the criterion the cut is applied on: number of hit combination above threshold
114     TH1F* fHistFMDC;           // histograms that histogram the criterion the cut is applied on: number of hit combination above threshold
115     TH1F* fHistFMDSingle;      // histograms that histogram the criterion the cut is applied on: single mult value (more than one entry per event)
116     TH1F* fHistFMDSum;         // histograms that histogram the criterion the cut is applied on: summed mult value (more than one entry per event)
117     
118     TMap* fTriggerClasses;    // counts the active trigger classes (uses the full string)
119     
120     Bool_t fMC;              // flag if MC is analyzed
121     AliESDtrackCuts* fEsdTrackCuts;  //Track Cuts to select ESD tracks
122
123     ClassDef(AliTriggerAnalysis, 11)
124     
125   private:
126     AliTriggerAnalysis(const AliTriggerAnalysis&);
127     AliTriggerAnalysis& operator=(const AliTriggerAnalysis&);
128 };
129
130 #endif