]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTriggerDecision.h
Allowing modularity of the MUON geometry during the generation (geant) phase with...
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerDecision.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 /* $Id$ */
5 // Revision of includes 07/05/2004
6
7 #ifndef ALIMUONTRIGGERDECISION_H
8 #define ALIMUONTRIGGERDECISION_H
9
10 ////////////////////////////////////////////////
11 //  MUON Trigger Decision Class               //
12 ////////////////////////////////////////////////
13
14 #include <TObject.h>
15
16 class TClonesArray;
17
18 class AliLoader;
19 class AliMUONData;
20 class AliMUON;
21 class AliRawReader;
22
23
24 class AliMUONTriggerDecision : public TObject 
25 {
26  public:
27   AliMUONTriggerDecision(AliLoader* loader, Int_t iprint = 0, AliMUONData* data = 0); // constructor
28   AliMUONTriggerDecision(); // constructor
29   ~AliMUONTriggerDecision();                  // destructor
30   
31   AliMUONData*   GetMUONData() {return fMUONData;}
32   void Trigger();
33   void ResetBit();
34   void SetBit();
35   void SetBitUpDownY();
36
37   void TrigX(Int_t ch1q[16], Int_t ch2q[16], Int_t ch3q[32], Int_t ch4q[32], 
38              Int_t coinc44, Int_t minDevStrip[5], Int_t minDev[5]);
39   void Sort2x5(Int_t dev1[6], Int_t dev2[6],
40                Int_t minDev[6], Int_t &dev1GTdev2);
41   void TrigY(Int_t y1[16], Int_t y2[16], Int_t y3[16], Int_t y4[16],
42              Int_t y3u[16], Int_t y3d[16], Int_t y4u[16], Int_t y4d[16],
43              Int_t x2m, Int_t x2ud, Int_t orMud[2], Int_t resetMid, 
44              Int_t coinc44, Int_t coordY[5]);
45   void LocalTrigger(Int_t icirc, Int_t minDevStrip[5], 
46                     Int_t minDev[5], Int_t coordY[5], 
47                     Int_t &iTrigger);    
48   void GlobalTrigger();
49
50   void Digits2Trigger(); // main function for digitizer
51
52   void ClearDigits();
53   TClonesArray* Digits(Int_t DetectionPlane);
54   void AddDigit(Int_t id, Int_t* tracks, Int_t* charges, Int_t* digits);
55
56   // print-debug
57   void PrintBitPatXInput(Int_t icirc);
58   void PrintBitPatYInput(Int_t icirc);
59   void PrintLocalOutput(Int_t minDevStrip[5], Int_t minDev[5], 
60                         Int_t coordY[5]);
61
62   // return member data information
63   Int_t GetITrigger(Int_t icirc) const;
64   Int_t GetStripX11(Int_t icirc) const;
65   Int_t GetDev(Int_t icirc) const;
66   Int_t GetStripY11(Int_t icirc) const;
67   void GetLutOutput(Int_t icirc, Int_t lpt[2], Int_t hpt[2], Int_t apt[2]) const;
68   void GetGlobalTrigger(Int_t singlePlus[3], Int_t singleMinus[3], 
69                         Int_t singleUndef[3], Int_t pairUnlike[3], 
70                         Int_t pairLike[3]) const;  
71   
72
73
74
75   ClassDef(AliMUONTriggerDecision,1) // Trigger Decision class
76
77     protected:     
78   AliMUONTriggerDecision(const AliMUONTriggerDecision& rhs);
79   AliMUONTriggerDecision& operator=(const AliMUONTriggerDecision& rhs);
80
81   Int_t fDebug;               // print option     
82
83   // Global Trigger information [0] : Low pt, [1] : High pt, [2] : All pt 
84   Int_t fGlobalSinglePlus[3];  // tot num of single plus
85   Int_t fGlobalSingleMinus[3]; // tot num of single minus
86   Int_t fGlobalSingleUndef[3]; // tot num of single undefined
87   Int_t fGlobalPairUnlike[3];  // tot num of unlike-sign pairs
88   Int_t fGlobalPairLike[3];    // tot num of like-sign pairs
89
90   // Local Trigger information
91   Int_t fTrigger[234];  // fTrigger = 0 : no trigger, 1 : trigger
92   Int_t fStripX11[234];  // X strip in MC11 which triggers
93   Int_t fDev[234];       // deviation which triggers
94   Int_t fStripY11[234];  // Y strip in MC11 which triggers
95   Int_t fLutLpt[234][2]; // Local Trigger info Low pt
96   Int_t fLutHpt[234][2]; // Local Trigger info High pt
97   Int_t fLutApt[234][2]; // Local Trigger info All pt
98
99   // bit pattern
100   Int_t fXbit11[234][16]; // bit pattern XM11
101   Int_t fXbit12[234][16]; // bit pattern XM12
102   Int_t fXbit21[234][32]; // bit pattern XM21
103   Int_t fXbit22[234][32]; // bit pattern XM22
104   Int_t fYbit11[234][16]; // bit pattern YM11
105   Int_t fYbit12[234][16]; // bit pattern YM12
106   Int_t fYbit21[234][16]; // bit pattern YM21
107   Int_t fYbit22[234][16]; // bit pattern YM22
108
109   Int_t fYbit21U[234][16]; // bit pattern YM21 Up
110   Int_t fYbit22U[234][16]; // bit pattern YM22 Up
111   Int_t fYbit21D[234][16]; // bit pattern YM21 Down
112   Int_t fYbit22D[234][16]; // bit pattern YM22 Down
113
114   
115   AliLoader*     fLoader;             //! alice loader
116   TObjArray*     fTriggerCircuit;     //! List of Trigger Circuit
117   TObjArray*     fDigits;             // temp array for digits (both cathodes !) for trigger
118
119   AliMUONData*   fMUONData;           //! Data container for MUON subsystem 
120   AliMUON*       fMUON;               //! pointer to MUON  
121
122   // ???
123   //  TClonesArray* fLocalTriggers;   // Local Triggers
124   // Int_t fNLocalTriggers;          // Number of Local Triggers
125
126 };
127 #endif
128
129
130
131
132
133
134