]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFTrigger.h
bugfix: mutex must not be reset after createthread called
[u/mrichter/AliRoot.git] / TOF / AliTOFTrigger.h
1 #ifndef ALITOFTRIGGER_H
2 #define ALITOFTRIGGER_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9 /////////////////////////////////////////////////
10 //                                             //
11 //      TOF Trigger Detector Class             //
12 //                                             //
13 /////////////////////////////////////////////////
14
15 #include "AliTriggerDetector.h"
16
17 class AliTOFrawData;
18 class AliTOFTriggerMask;
19
20 class AliTOFTrigger : public AliTriggerDetector
21 {
22  public:
23   AliTOFTrigger();  // constructor
24   AliTOFTrigger(Int_t HighMultTh, Int_t ppMBTh, Int_t MultiMuonTh, Int_t UPTh, Float_t deltaminpsi, Float_t deltamaxpsi, Float_t deltaminro, Float_t deltamaxro, Int_t stripWindow); //constructor with parameters
25   virtual ~AliTOFTrigger();  // destructor
26   virtual void    CreateInputs();
27   virtual void    Trigger();
28   Int_t   GetHighMultTh() const {return fHighMultTh;}
29   Int_t   GetppMBTh() const {return fppMBTh;}
30   Int_t   GetMultiMuonTh() const {return fMultiMuonTh;}
31   Int_t   GetUPTh() const {return fUPTh;}
32   Float_t Getdeltaminpsi() const {return fdeltaminpsi;}
33   Float_t Getdeltamaxpsi() const {return fdeltamaxpsi;}
34   Float_t Getdeltaminro() const {return fdeltaminro;}
35   Float_t Getdeltamaxro() const {return fdeltamaxro;}
36   Int_t  GetstripWindow() const {return fstripWindow;}
37
38   void LoadActiveMask(); // Load active channel trigger mask
39   void GetMap(Bool_t **map) const;
40   //void PrintMap(); // to be checked because of warning problems
41   void GetTRDmap(Bool_t **map) const;
42   Bool_t GetBit(Int_t nDDL, Int_t nTRM, Int_t iChain,Int_t iTDC, Int_t iCH);
43   Bool_t GetBit(Int_t *detind);
44   void SetBit(Int_t nDDL, Int_t nTRM, Int_t iChain,Int_t iTDC, Int_t iCH);
45   void SetBit(Int_t *detind);
46   void ResetBit(Int_t nDDL, Int_t nTRM, Int_t iChain,Int_t iTDC, Int_t iCH);
47   void ResetBit(Int_t *detind);
48
49
50   void   SetHighMultTh(Int_t HighMultTh){fHighMultTh = HighMultTh;}
51   void   SetppMBTh(Int_t ppMBTh){fppMBTh = ppMBTh;}
52   void   SetMultiMuonTh(Int_t MultiMuonTh){fMultiMuonTh = MultiMuonTh;}
53   void   SetUPTh(Int_t UPTh){fUPTh = UPTh;}
54   void   Setdeltaminpsi(Float_t deltaminpsi){fdeltaminpsi = deltaminpsi;}
55   void   Setdeltamaxpsi(Float_t deltamaxpsi){fdeltamaxpsi = deltamaxpsi;}
56   void   Setdeltaminro(Float_t deltaminro){fdeltaminro = deltaminro;}
57   void   Setdeltamaxro(Float_t deltamaxro){fdeltamaxro = deltamaxro;}
58   void   SetstripWindow(Int_t stripWindow){fstripWindow = stripWindow;}
59
60   Bool_t Return(Int_t i){if(i==0) return fSel1;
61                          else if(i==1) return fSel2;
62                          else if(i==2) return fSel3;
63                          else if(i==3) return fSel4;
64                         };
65
66   Int_t GetNumberOfCrateOn(){return fNCrateOn;}; 
67   Int_t GetNumberOfMaxipadOn(){return fNMaxipadOn;}; 
68   Int_t GetNumberOfMaxipadOnAll(){return fNMaxipadOnAll;}; 
69   Bool_t *GetLTMarray(){return fLTMarray;};
70   void   CreateCTTMMatrix();
71   void   CreateLTMMatrix();
72   void   CreateLTMMatrixFromDigits();
73   void   CreateLTMMatrixFromRaw(AliRawReader *fRawReader);
74  private:
75
76   enum{
77     kNLTM = 72,          //Number of LTM
78     kNLTMchannels = 48,  //Number of channels in a LTM
79     kNCTTM = 36,         //Number of CTTM per TOF side
80     kNCTTMchannels = 24,  //Number of channels in a CTTM
81     kNLTMtoTRDchannels = 8  //Number of channels in a CTTM
82   };
83
84   AliTOFTrigger& operator=(const AliTOFTrigger &/*source*/); // ass. op.
85   AliTOFTrigger(const AliTOFTrigger & tr);
86
87   void    GetCTTMIndex(Int_t *detind, Int_t *indexCTTM);
88   void    GetLTMIndex(const Int_t * const detind, Int_t *LTMIndex);
89   Bool_t  fLTMmatrix[kNLTM][kNLTMchannels];         //LTM matrix 
90   Bool_t  fLTMarray[kNCTTM];        //LTM array for UPpurposes
91   Bool_t  fCTTMmatrixFront[kNCTTM][kNCTTMchannels];//CTTM matrix for TOP FPGA 
92   Bool_t  fCTTMmatrixBack[kNCTTM][kNCTTMchannels]; //CTTM matrix for BOTTOM FPGA
93   Int_t   fHighMultTh;             //threshold for High Multiplicity trigger
94   Int_t   fppMBTh;                 //threshold for pp Minimum Bias trigger
95   Int_t   fMultiMuonTh;            //threshold for Multi Muon trigger 
96   Int_t   fUPTh;                   //threshold for Ultra-Per coll trigger 
97   Float_t fdeltaminpsi;            //min delta phi for J/psi decay (UP trigger)
98   Float_t fdeltamaxpsi;            //max delta phi for J/psi decay (UP trigger)
99   Float_t fdeltaminro;             //min delta phi for ro decay (UP trigger)
100   Float_t fdeltamaxro;             //max delta phi for ro decay (UP trigger)
101   Int_t   fstripWindow;            //strip window for triggering
102
103   Bool_t fSel1,fSel2,fSel3,fSel4; // ppMB, PbPbMB2, PbPbMB3, PbPbUP
104
105   UInt_t fPowerMask[kNCTTMchannels+1];  // mask for 24 TDC channels
106
107   Int_t fNCrateOn; // number of crate fired
108   Int_t fNMaxipadOn; // number of Maxipad fired
109   Int_t fNMaxipadOnAll; // number of Maxipad fired w/o TDC dead mask
110   AliTOFTriggerMask *fTOFTrigMask; // class with the TOF trigger mask
111
112   ClassDef(AliTOFTrigger,1)  // TOF Trigger Detector class
113 };
114 #endif
115