]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONRegionalTriggerBoard.cxx
Adding classes AliMUONVCluster, AliMUONRawClusterV2 (Philippe P., Laurent)
[u/mrichter/AliRoot.git] / MUON / AliMUONRegionalTriggerBoard.cxx
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
16 /* $Id$ */
17
18 //-----------------------------------------------------------------------------
19 /// \class AliMUONRegionalTriggerBoard
20 /// Dimuon regional trigger implementation:
21 /// - entry are local board responses
22 /// - output is 12-bit word
23 /// - algorithm is similar to the global one
24 /// \todo Change member functions comments in capital letters to normal text
25 ///
26 /// \author Rachid Guernane (LPCCFd)
27 //-----------------------------------------------------------------------------
28
29 #include "AliMUONRegionalTriggerBoard.h"
30
31 #include "AliLog.h"
32
33 #include "TBits.h"
34
35 #include <Riostream.h>
36
37 /// \cond CLASSIMP
38 ClassImp(AliMUONRegionalTriggerBoard)
39 /// \endcond
40
41 //___________________________________________
42 AliMUONRegionalTriggerBoard::AliMUONRegionalTriggerBoard()
43 {
44 /// Default constructor
45    for (Int_t i=0; i<16; i++) fLocalResponse[i] = 0;
46 }
47
48 //___________________________________________
49 AliMUONRegionalTriggerBoard::AliMUONRegionalTriggerBoard(const char *name, Int_t a) : AliMUONTriggerBoard(name, a)
50 {
51 /// Standard constructor
52    for (Int_t i=0; i<16; i++) fLocalResponse[i] = 0;
53 }
54
55 //___________________________________________
56 AliMUONRegionalTriggerBoard::~AliMUONRegionalTriggerBoard()
57 {
58 /// Destructor
59 }
60
61 //___________________________________________
62 void AliMUONRegionalTriggerBoard::Response()
63 {
64 /// RESPONSE IS GIVEN FOLLOWING THE REGIONAL ALGORITHM
65
66   Int_t t[16];
67
68    for (Int_t i=0;i<16;i++) t[i] = fLocalResponse[i] & fMask[i];
69
70    Int_t rank = 8;
71
72    for (Int_t i=0;i<4;i++)
73    {
74       Int_t ip = 0;
75       
76       for (Int_t j=0;j<rank;j++)
77       {
78          UShort_t lthres = Algo(t[2*j],t[2*j+1],"LPT",i);
79
80          UShort_t hthres = Algo(t[2*j],t[2*j+1],"HPT",i); hthres <<= 4;
81
82          t[ip] = lthres | hthres;
83
84          ip++;
85       }
86       
87       rank /= 2; 
88    }
89
90    fResponse = t[0]; // 8-bit [H4:L4]
91 }
92
93 //___________________________________________
94 UShort_t AliMUONRegionalTriggerBoard::Algo(UShort_t i, UShort_t j, char *thres, Int_t level)
95 {
96 /// IMPLEMENTATION OF THE REGIONAL ALGORITHM
97 /// SIMILAR TO THE GLOBAL ALGORITHM EXCEPT FOR THE
98 /// INPUT LAYER
99
100   TBits a(8), b(8); a.Set(8,&i); b.Set(8,&j);
101
102    TBits trg1(2), trg2(2), trg(2);
103
104    if (!strcmp(thres,"LPT"))
105    {
106       if (!level)
107       {         
108          trg1[0] = a[0]; trg1[1] = a[1]; 
109          trg2[0] = b[0]; trg2[1] = b[1];
110       }
111       else
112       {
113          trg1[0] = a[2]; trg1[1] = a[3]; 
114          trg2[0] = b[2]; trg2[1] = b[3];
115       }
116    }
117    else
118    {
119       if (!level)
120       {         
121          trg1[0] = a[2]; trg1[1] = a[3]; 
122          trg2[0] = b[2]; trg2[1] = b[3];
123       }
124       else
125       {
126          trg1[0] = a[6]; trg1[1] = a[7]; 
127          trg2[0] = b[6]; trg2[1] = b[7];         
128       }
129    }
130        
131    TBits trgLS1(1), trgUS1(1), trgLS2(1), trgUS2(1), trgLS(1), trgUS(1);
132
133    if (!level) 
134    {
135       trgLS1[0] = trgUS1[0] = trgLS2[0] = trgUS2[0] = 0;
136    }
137    else
138    {
139        if (!strcmp(thres,"LPT"))
140       {
141          trgLS1[0] = a[1]; trgUS1[0] = a[0]; 
142          trgLS2[0] = b[1]; trgUS2[0] = b[0];
143       }
144       else
145       {
146          trgLS1[0] = a[5]; trgUS1[0] = a[4]; 
147          trgLS2[0] = b[5]; trgUS2[0] = b[4];         
148       }
149    }
150
151    trgLS[0] = ( trg1[0] & trg2[0] ) | ( trg1[1] & trg2[1] ) | trgLS1[0] | trgLS2[0];
152    trgUS[0] = ( trg1[0] & trg2[1] ) | ( trg1[1] & trg2[0] ) | trgUS1[0] | trgUS2[0];
153    
154    trg[0] = trg1[0] | trg2[0];
155    trg[1] = trg1[1] | trg2[1];
156    
157    TBits v(4);
158    
159    v[0] = trgUS[0];
160    v[1] = trgLS[0];
161    v[2] = trg[0];
162    v[3] = trg[1];
163    
164    UShort_t rv = 0;
165    v.Get(&rv);
166
167    return rv;
168 }
169
170 //___________________________________________
171 void AliMUONRegionalTriggerBoard::Scan(Option_t*) const
172 {
173 /// SCAN LOCAL BOARD ENTRIES 
174
175   for (Int_t i=0; i<16; i++) 
176    {
177       TBits b;
178       b.Set(6,&fLocalResponse[i]);
179       
180       cout << "Entry " << i << " is " << b << endl;
181       
182    }
183    
184 }
185
186 //___________________________________________
187 void AliMUONRegionalTriggerBoard::Mask(Int_t index, UShort_t mask)
188 {
189 /// MASK ENTRY index
190
191   if ( index>=0 && index < 16 ) 
192   {
193     fMask[index]=mask;
194   }
195   else
196   {
197     AliError(Form("Index %d out of bounds (max %d)",index,16));
198   }
199 }