]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALTriggerTRU.cxx
adding separate primary vertex and V0 finder components (Timur)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALTriggerTRU.cxx
CommitLineData
916f1e76 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/*
17
18
19
20
21Author: R. GUERNANE LPSC Grenoble CNRS/IN2P3
22*/
23
24
25#include "AliEMCALTriggerTRU.h"
26#include "AliEMCALTriggerPatch.h"
fff39dd1 27#include "AliEMCALTriggerTRUDCSConfig.h"
916f1e76 28#include "AliLog.h"
29
916f1e76 30#include <TClonesArray.h>
31#include <TSystem.h>
32#include <Riostream.h>
33
34namespace
35{
fff39dd1 36 const Int_t kTimeBins = 16; // number of sampling bins of the FastOR signal
916f1e76 37 const Int_t kTimeWindowSize = 4; //
38 const Int_t kNup = 2; //
39 const Int_t kNdown = 1; //
40}
41
42ClassImp(AliEMCALTriggerTRU)
43
44//________________
de39a0ff 45AliEMCALTriggerTRU::AliEMCALTriggerTRU() : AliEMCALTriggerBoard(),
46fDCSConfig(0x0)
916f1e76 47{
48 //
49 for (Int_t i=0;i<96;i++) for (Int_t j=0;j<256;j++) fADC[i][j] = 0;
50}
51
52//________________
fff39dd1 53AliEMCALTriggerTRU::AliEMCALTriggerTRU(AliEMCALTriggerTRUDCSConfig* dcsConf, const TVector2& rSize, Int_t mapType) :
de39a0ff 54AliEMCALTriggerBoard(rSize),
55fDCSConfig(dcsConf)
916f1e76 56{
57 //
58 for (Int_t i=0;i<96;i++) for (Int_t j=0;j<256;j++) fADC[i][j] = 0;
59
916f1e76 60 TVector2 size;
61
de39a0ff 62 if (dcsConf->GetL0SEL() & 0x0001) // 4-by-4
63 {
64 size.Set( 1. , 1. );
65 SetSubRegionSize( size );
66
67 size.Set( 2. , 2. );
68 SetPatchSize( size );
69 }
70 else // 2-by-2
71 {
72 size.Set( 1. , 1. );
73 SetSubRegionSize( size );
74
75 size.Set( 1. , 1. );
76 SetPatchSize( size );
77 }
916f1e76 78
79 for (Int_t ietam=0;ietam<24;ietam++)
80 {
81 for (Int_t iphim=0;iphim<4;iphim++)
82 {
83 // idx: 0..95 since iphim: 0..11 ietam: 0..23
84 Int_t idx = ( !mapType ) ? ( 3 - iphim ) + ietam * 4 : iphim + (23 - ietam) * 4;
85
86 // Build a matrix used to get TRU digit id (ADC channel) from (eta,phi)|SM
87 fMap[ietam][iphim] = idx; // [0..11][0..3] namely [eta][phi] in SM
88 }
89 }
90}
91
92//________________
93AliEMCALTriggerTRU::~AliEMCALTriggerTRU()
94{
de39a0ff 95 //
916f1e76 96}
97
916f1e76 98//________________
99void AliEMCALTriggerTRU::ShowFastOR(Int_t iTimeWindow, Int_t iChannel)
100{
101 //
102 Int_t iChanF, iChanL;
103
104 if (iChannel != -1) iChanF = iChanL = iChannel;
105 else
106 {
107 iChanF = 0;
108 iChanL = 96;
109 }
110
111 for (Int_t i=iChanF;i<iChanL+1;i++)
112 {
113 printf("\tChannel: %2d - ",i);
114 for (Int_t j=0;j<60;j++)
115 {
116 if (j == iTimeWindow)
117 printf(" | %4d",fADC[i][j]);
118 else if (j == iTimeWindow+kTimeWindowSize-1)
119 printf(" %4d |",fADC[i][j]);
120 else
121 printf(" %4d",fADC[i][j]);
122 }
123
124 printf("\n");
125 }
126}
127
128//________________
fff39dd1 129Int_t AliEMCALTriggerTRU::L0()
916f1e76 130{
131 // Mimick the TRU L0 'virtual' since not yet released algo
132
133 // L0 issuing condition is: (2 up & 1 down) AND (time sum > thres)
134 // fill a matrix to support sliding window
135 // compute the time sum for all the FastOR of a given TRU
136 // and then move the space window
fff39dd1 137
de39a0ff 138 AliDebug(999,"=== Running TRU L0 algorithm ===");
8476b1c8 139 const Int_t xsize = Int_t(fRegionSize->X());
8b07b672 140 const Int_t ysize = Int_t(fRegionSize->Y());
141 const Int_t zsize = kNup+kNdown;
142
f4e2cc1e 143 Int_t ***buffer = new Int_t**[xsize];
144 for (Int_t x = 0; x < xsize; x++)
145 {
146 buffer[x] = new Int_t*[ysize];
147
148 for (Int_t y = 0; y < ysize; y++)
149 {
150 buffer[x][y] = new Int_t[zsize];
151 }
152 }
916f1e76 153
de39a0ff 154 for (Int_t i = 0; i < fRegionSize->X(); i++)
155 for (Int_t j = 0; j < fRegionSize->Y(); j++)
156 for (Int_t k = 0; k < kNup + kNdown; k++) buffer[i][j][k] = 0;
fff39dd1 157
158 // Time sliding window algorithm
916f1e76 159 for (Int_t i=0; i<=(kTimeBins-kTimeWindowSize); i++)
160 {
de39a0ff 161 AliDebug(999,Form("----------- Time window: %d\n",i));
fff39dd1 162
163 for (Int_t j=0; j<fRegionSize->X(); j++)
916f1e76 164 {
165 for (Int_t k=0; k<fRegionSize->Y(); k++)
166 {
167 for (Int_t l=i; l<i+kTimeWindowSize; l++)
168 {
169 // [eta][phi][time]
fff39dd1 170 fRegion[j][k] += fADC[fMap[j][k]][l];
916f1e76 171 }
172
fff39dd1 173 buffer[j][k][i%(kNup + kNdown)] = fRegion[j][k];
916f1e76 174
fff39dd1 175 if ( i > kNup + kNdown - 1 )
176 {
177 for (Int_t v = 0; v < kNup + kNdown - 1; v++) buffer[j][k][v] = buffer[j][k][v+1];
178
179 buffer[j][k][kNup + kNdown - 1] = fRegion[j][k];
180 }
181 else
182 {
183 buffer[j][k][i] = fRegion[j][k];
184 }
916f1e76 185
fff39dd1 186// if (kTimeWindowSize > 4) fRegion[j][k] = fRegion[j][k] >> 1; // truncate time sum to fit 14b
916f1e76 187 }
188 }
189
fff39dd1 190 // Don't start to evaluate space sum if a peak can't be findable
191 if (i < kNup + kNdown - 1)
192 {
193 ZeroRegion();
194 continue;
195 }
916f1e76 196
f4e2cc1e 197 Int_t **peaks = new Int_t*[xsize];
198 for (Int_t x = 0; x < xsize; x++)
199 {
200 peaks[x] = new Int_t[ysize];
201 }
916f1e76 202
fff39dd1 203 for (Int_t j=0; j<fRegionSize->X(); j++) for (Int_t k=0; k<fRegionSize->Y(); k++) peaks[j][k] = 0;
204
205 Int_t nPeaks = 0;
916f1e76 206
207 for (Int_t j=0; j<fRegionSize->X(); j++)
208 {
209 for (Int_t k=0; k<fRegionSize->Y(); k++)
210 {
fff39dd1 211 Int_t foundU = 0;
212
213 Int_t foundD = 0;
214
215 for (Int_t l= 1;l<kNup ;l++) foundU = ( buffer[j][k][l]> buffer[j][k][l-1] && buffer[j][k][l-1] ) ? 1 : 0;
216
217 for (Int_t l=kNup;l<kNup+kNdown;l++) foundD = ( buffer[j][k][l]<=buffer[j][k][l-1] && buffer[j][k][l ] ) ? 1 : 0;
218
219 if ( foundU && foundD )
916f1e76 220 {
fff39dd1 221 peaks[j][k] = 1;
222 nPeaks++;
916f1e76 223 }
916f1e76 224 }
225 }
fff39dd1 226
de39a0ff 227 if (!nPeaks)
fff39dd1 228 {
229 ZeroRegion();
230 continue;
231 }
916f1e76 232
233 // Threshold
234 // FIXME: for now consider just one threshold for all patches, should consider one per patch?
235 // ANSWE: both solutions will be implemented in the TRU
236 // return the list of patches above threshold
fff39dd1 237 // Theshold checked out from OCDB
916f1e76 238
de39a0ff 239 SlidingWindow(kL0, fDCSConfig->GetGTHRL0(), i);
916f1e76 240
241// for(Int_t j=0; j<fRegionSize->X(); j++)
242// for (Int_t k=0; k<fRegionSize->Y(); k++) fRegion[j][k] = fRegion[j][k]>>2; // go to 12b before shipping to STU
243
916f1e76 244 for (Int_t j=0; j<fPatches->GetEntriesFast(); j++)
245 {
246 AliEMCALTriggerPatch* p = (AliEMCALTriggerPatch*)fPatches->At( j );
247
248 if ( AliDebugLevel() ) p->Print("");
249
fff39dd1 250 TVector2 v; p->Position(v);
916f1e76 251
da509d54 252 Int_t sizeX = (Int_t)(fPatchSize->X() * fSubRegionSize->X());
fff39dd1 253
da509d54 254 Int_t sizeY = (Int_t)(fPatchSize->Y() * fSubRegionSize->Y());
916f1e76 255
256 const Int_t psize = sizeX * sizeY; // Number of FastOR in the patch
257
39c05eac 258 Int_t foundPeak = 0;
259
fff39dd1 260 Int_t* idx = new Int_t[psize];
916f1e76 261
262 for (Int_t xx=0;xx<sizeX;xx++)
263 {
264 for (Int_t yy=0;yy<sizeY;yy++)
265 {
fff39dd1 266 Int_t index = xx*sizeY+yy;
916f1e76 267
fff39dd1 268 idx[index] = fMap[int(v.X()*fSubRegionSize->X())+xx][int(v.Y()*fSubRegionSize->Y())+yy]; // Get current patch FastOR ADC channels
916f1e76 269
de39a0ff 270 if (peaks[int(v.X() * fSubRegionSize->X()) + xx][int(v.Y() * fSubRegionSize->Y()) + yy])
271 {
272 foundPeak++;
273
274 p->SetPeak(xx, yy, sizeX, sizeY);
275 }
fff39dd1 276
de39a0ff 277 if (AliDebugLevel() >= 999) ShowFastOR(i, idx[index]);
916f1e76 278 }
279 }
916f1e76 280
39c05eac 281 if ( !foundPeak )
916f1e76 282 {
39c05eac 283 fPatches->RemoveAt( j );
284 fPatches->Compress();
285 }
916f1e76 286 }
fff39dd1 287
f4e2cc1e 288 //Delete, avoid leak
289 for (Int_t x = 0; x < xsize; x++)
290 {
291 delete [] peaks[x];
292 }
293 delete [] peaks;
39c05eac 294
295 if ( !fPatches->GetEntriesFast() ) // No patch left
296 ZeroRegion();
de39a0ff 297 else // Stop the algo when at least one patch is found ( thres & max )
39c05eac 298 {
de39a0ff 299 for (Int_t xx = 0; xx < fRegionSize->X(); xx++)
300 {
301 for (Int_t yy = 0; yy < fRegionSize->Y(); yy++)
302 {
303 // Prepare data to be sent to STU for further L1 processing
304 // Sent time sum (rollback tuning) is the one before L0 is issued (maximum time sum)
305 fRegion[xx][yy] = buffer[xx][yy][1];
306 }
307 }
308
309 break;
310 }
916f1e76 311 }
312
f4e2cc1e 313 //Delete, avoid leak
314 for (Int_t x = 0; x < xsize; x++)
315 {
316 for (Int_t y = 0; y < ysize; y++)
317 {
318 delete [] buffer[x][y];
319 }
320 delete [] buffer[x];
321 }
322 delete [] buffer;
8b07b672 323
916f1e76 324 return fPatches->GetEntriesFast();
325}
326
916f1e76 327//________________
328void AliEMCALTriggerTRU::SetADC( Int_t channel, Int_t bin, Int_t sig )
329{
a51e676d 330 //Set ADC value
331 if (channel > 95 || bin > 255) {
332 AliError("TRU has 96 ADC channels and 256 bins only!");
333 }
334 else{
335 fADC[channel][bin] = sig;
336 }
916f1e76 337}
338
916f1e76 339//________________
340void AliEMCALTriggerTRU::SaveRegionADC(Int_t iTRU, Int_t iEvent)
341{
342 // O for STU Hw
343 //
344 gSystem->Exec(Form("mkdir -p Event%d",iEvent));
345
346 ofstream outfile(Form("Event%d/data_TRU%d.txt",iEvent,iTRU),ios_base::trunc);
347
348 for (Int_t i=0;i<96;i++)
349 {
350 Int_t ietam = 23 - i/4;
351
352 Int_t iphim = 3 - i%4;
353
354 outfile << fRegion[ietam][iphim] << endl;
355 }
356
357 outfile.close();
358}
359
916f1e76 360//________________
361void AliEMCALTriggerTRU::Reset()
362{
363 //
364 fPatches->Delete();
365
366 ZeroRegion();
367
368 for (Int_t i=0;i<96;i++) for (Int_t j=0;j<256;j++) fADC[i][j] = 0;
369}
370