]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTriggerLut.h
- Adding handling of track info in digits.
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerLut.h
1 #ifndef ALIMUONTRIGGERLUT_H
2 #define ALIMUONTRIGGERLUT_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7 // Revision of includes 07/05/2004
8
9 /// \ingroup base
10 /// \class AliMUONTriggerLut
11 /// \brief MUON trigger look up table class 
12
13 #include <TNamed.h>
14
15 class TH3S;
16
17 //----------------------------------------------
18 class AliMUONTriggerLut : public TNamed 
19 {
20  public: 
21   AliMUONTriggerLut();    // constructor
22   ~AliMUONTriggerLut();   // destructor
23
24   void LoadLut();
25   
26   void GetLutOutput(Int_t circuit, Int_t xstrip, Int_t idev, Int_t ystrip, 
27                     Int_t lutLpt[2], Int_t lutHpt[2], Int_t lutApt[2]);
28
29  protected:
30   // copy constructor
31   AliMUONTriggerLut (const AliMUONTriggerLut& AliMUONTriggerLut); 
32   // assignment operator
33   AliMUONTriggerLut& operator=(const AliMUONTriggerLut& AliMUONTriggerLut); 
34                 
35  private:
36   Int_t GetMask(Int_t ystrip);
37
38   ClassDef(AliMUONTriggerLut,1) // Trigger Look up Table class
39
40     private:
41   TH3S *fLptPlus; //3-d histogram with 234x32x31 bins Low pt Plus  
42   TH3S *fLptMinu; //3-d histogram with 234x32x31 bins Low pt Minus
43   TH3S *fLptUnde; //3-d histogram with 234x32x31 bins Low pt Undefined
44   TH3S *fHptPlus; //3-d histogram with 234x32x31 bins High pt Plus
45   TH3S *fHptMinu; //3-d histogram with 234x32x31 bins High pt Minus 
46   TH3S *fHptUnde; //3-d histogram with 234x32x31 bins High pt Undefined 
47   TH3S *fAptPlus; //3-d histogram with 234x32x31 bins All pt Plus  
48   TH3S *fAptMinu; //3-d histogram with 234x32x31 bins All pt Minus  
49   TH3S *fAptUnde; //3-d histogram with 234x32x31 bins All pt Undefined    
50
51 };
52 #endif
53
54
55
56
57
58