]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerElectronics.cxx
a/ AliTRDCalibTask.cxx .h: one histo more to quantify the event selection if any...
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerElectronics.cxx
CommitLineData
516d3280 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
3d1463c8 18//-----------------------------------------------------------------------------
19// Class AliMUONTriggerElectronics
20//--------------------------------
21// Manager class for muon trigger electronics
22// Client of trigger board classes
23// Debugged by Ph. Crochet & Ch. Finck
24// Interfaced with new mapping Ch. Finck
25//
26// Author: Rachid Guernane (LPCCFd)
27//-----------------------------------------------------------------------------
516d3280 28
257091b1 29#include "AliLoader.h"
30#include "AliLog.h"
257091b1 31#include "AliMUONCalibrationData.h"
32#include "AliMUONVDigit.h"
33#include "AliMUONVDigitStore.h"
34#include "AliMUONGlobalTrigger.h"
516d3280 35#include "AliMUONGlobalTriggerBoard.h"
36#include "AliMUONLocalTrigger.h"
257091b1 37#include "AliMUONLocalTriggerBoard.h"
47dc4ee7 38#include "AliMUONRegionalTrigger.h"
257091b1 39#include "AliMUONRegionalTriggerBoard.h"
40#include "AliMUONTriggerCrate.h"
41#include "AliMUONTriggerCrateStore.h"
42#include "AliMUONTriggerElectronics.h"
92c23b09 43#include "AliMUONTriggerCrateConfig.h"
44#include "AliMUONRegionalTriggerConfig.h"
45#include "AliMUONGlobalCrateConfig.h"
257091b1 46#include "AliMUONVTriggerStore.h"
4c0f0f5d 47#include "AliMUONVCalibParam.h"
257091b1 48#include "AliMpCathodType.h"
d9c699aa 49#include "AliMpCDB.h"
257091b1 50#include "AliMpDEManager.h"
666ada1e 51#include "AliMpSegmentation.h"
f4678817 52#include "AliMpVSegmentation.h"
866c3232 53#include "AliMpCathodType.h"
fd19a819 54#include "AliMpTriggerCrate.h"
55#include "AliMpLocalBoard.h"
56#include "AliMpDDLStore.h"
57#include "AliMpExMap.h"
58#include "AliMpIntPair.h"
f4678817 59
60#include "AliLog.h"
61#include "AliLoader.h"
62#include "AliRun.h"
257091b1 63#include <TBits.h>
64#include <TSystem.h>
f4678817 65
00d46f24 66#include "AliCodeTimer.h"
67
516d3280 68
6014107b 69/// \cond CLASSIMP
63ed9c6b 70ClassImp(AliMUONTriggerElectronics)
6014107b 71/// \endcond
63ed9c6b 72
516d3280 73//___________________________________________
257091b1 74AliMUONTriggerElectronics::AliMUONTriggerElectronics(AliMUONCalibrationData* calibData)
75: TObject(),
f1e8d46c 76 fCrates(new AliMUONTriggerCrateStore),
257091b1 77 fGlobalTriggerBoard(new AliMUONGlobalTriggerBoard)
516d3280 78{
257091b1 79 /// CONSTRUCTOR
6014107b 80///
fd19a819 81
82 for (Int_t i = 0; i < 2; ++i) {
83 fCopyXInput[i] = new TList();
84 fCopyXInput[i]->SetOwner();
85 fCopyYInput[i] = new TList();
86 fCopyYInput[i]->SetOwner();
87 }
88
d9c699aa 89 // force loading of mapping if not already done
90 if ( !AliMpDDLStore::Instance(kFALSE) )
91 {
92 AliMpCDB::LoadDDLStore();
93 }
94
fd19a819 95 SetCopyInput();
92c23b09 96
f1e8d46c 97 Factory(calibData);
92c23b09 98 LoadMasks(calibData);
516d3280 99}
100
101//___________________________________________
102AliMUONTriggerElectronics::~AliMUONTriggerElectronics()
103{
6014107b 104/// DESTRUCTOR
105///
516d3280 106 delete fGlobalTriggerBoard;
107 delete fCrates;
fd19a819 108 for (Int_t i = 0; i < 2; ++i) {
109 delete fCopyXInput[i];
110 delete fCopyYInput[i];
111 }
112
113}
92c23b09 114
fd19a819 115//___________________________________________
116void AliMUONTriggerElectronics::SetCopyInput()
117{
92c23b09 118 /// set list of copy input
119
fd19a819 120 for (Int_t iDDL = 0; iDDL < 2; ++iDDL) {
92c23b09 121
fd19a819 122 for(Int_t iReg = 0; iReg < 8; ++iReg){ //reg loop
92c23b09 123
fd19a819 124 AliMpTriggerCrate* crateMapping = AliMpDDLStore::Instance()->GetTriggerCrate(iDDL, iReg);
92c23b09 125
fd19a819 126 for(Int_t iLocal = 0; iLocal < crateMapping->GetNofLocalBoards(); ++iLocal) {
92c23b09 127
fd19a819 128 Int_t localBoardFromId = crateMapping->GetLocalBoardId(iLocal);
129 if (!localBoardFromId) continue; //empty slot, should not happen
92c23b09 130
fd19a819 131 AliMpLocalBoard* localBoardFrom = AliMpDDLStore::Instance()->GetLocalBoard(localBoardFromId);
132 Int_t localBoardToId;
133 if ((localBoardToId = localBoardFrom->GetInputXto())) {
134 AliMpLocalBoard* localBoardTo = AliMpDDLStore::Instance()->GetLocalBoard(localBoardToId);
135 TString crateFrom = localBoardFrom->GetCrate();
136 Int_t slotFrom = localBoardFrom->GetSlot();
137 TString crateTo = localBoardTo->GetCrate();
138 Int_t slotTo = localBoardTo->GetSlot();
92c23b09 139
fd19a819 140 fCopyXInput[0]->Add(new AliMpIntPair(AliMpExMap::GetIndex(crateFrom), slotFrom));
141 fCopyXInput[1]->Add(new AliMpIntPair(AliMpExMap::GetIndex(crateTo), slotTo));
142 AliDebug(3, Form("copy xInputs from local %s_%d to %s_%d\n", crateFrom.Data(), slotFrom,
143 crateTo.Data(), slotTo));
144 }
92c23b09 145
fd19a819 146 if ((localBoardToId = localBoardFrom->GetInputYto())) {
147 AliMpLocalBoard* localBoardTo = AliMpDDLStore::Instance()->GetLocalBoard(localBoardToId);
148 TString crateFrom = localBoardFrom->GetCrate();
149 Int_t slotFrom = localBoardFrom->GetSlot();
150 TString crateTo = localBoardTo->GetCrate();
151 Int_t slotTo = localBoardTo->GetSlot();
92c23b09 152
fd19a819 153 fCopyYInput[0]->Add(new AliMpIntPair(AliMpExMap::GetIndex(crateFrom), slotFrom));
154 fCopyYInput[1]->Add(new AliMpIntPair(AliMpExMap::GetIndex(crateTo), slotTo));
155 AliDebug(3, Form("copy yInputs from local %s_%d to %s_%d\n", crateFrom.Data(), slotFrom,
156 crateTo.Data(), slotTo));
92c23b09 157
fd19a819 158 }
159
160 }
161 }
162 }
516d3280 163}
164
165//___________________________________________
4c0f0f5d 166void AliMUONTriggerElectronics::Factory(AliMUONCalibrationData* calibData)
516d3280 167{
6014107b 168 /// BUILD ALL ELECTRONICS
169 ///
e93b11d0 170
92c23b09 171 fCrates->ReadFromFile(calibData);
8af755f4 172}
516d3280 173
8af755f4 174//___________________________________________
257091b1 175void AliMUONTriggerElectronics::Feed(const AliMUONVDigitStore& digitStore)
8af755f4 176{
257091b1 177 /// FILL INPUTS
178 ///
00d46f24 179
180 AliCodeTimerAuto("",0);
257091b1 181
182 TIter next(digitStore.CreateTriggerIterator());
183 AliMUONVDigit* mdig;
184
185 while ( ( mdig = static_cast<AliMUONVDigit*>(next()) ) )
186 {
187 // CHECKME ! The TrackCharge is not ok with new digitizerV3 !
188 // for (Int_t ichg=0; ichg<10; ichg++) schg += mdig->TrackCharge(ichg);
189 Int_t ichamber = AliMpDEManager::GetChamberId(mdig->DetElemId());
190 Int_t schg = (Int_t)(mdig->Charge() + 0.5);
191
192 // APPLY CONDITION ON SOFT BACKGROUND
193 Int_t tchg = schg - (Int_t(schg/10))*10;
194
195 if (schg<=10 || tchg>0)
43368512 196 {
257091b1 197 Int_t detElemId = mdig->DetElemId();
198 Int_t cathode = mdig->Cathode();
fd19a819 199
200 const AliMpVSegmentation* seg =
201 AliMpSegmentation::Instance()
202 ->GetMpSegmentation(detElemId,AliMp::GetCathodType(cathode));
203
257091b1 204 Int_t ix = mdig->PadX(), iy = mdig->PadY();
205
206 AliDebug(3,Form("cathode %d ix %d iy %d ",cathode,ix,iy));
fd19a819 207
168e9c4d 208 AliMpPad pad = seg->PadByIndices(ix,iy,kTRUE);
257091b1 209
210 for (Int_t i=0; i<pad.GetNofLocations(); i++)
43368512 211 {
168e9c4d 212 Int_t nboard = pad.GetLocalBoardId(i);
257091b1 213
168e9c4d 214 Int_t ibitxy = pad.GetLocalBoardChannel(i);
257091b1 215
216 AliMUONLocalTriggerBoard *b = fCrates->LocalBoard(nboard);
217
218 if (b)
219 {
dc5d3949 220 if (cathode && b->GetSwitch(AliMpLocalBoard::kZeroAllYLSB)) ibitxy += 8;
257091b1 221
222 b->SetbitM(ibitxy,cathode,ichamber-10);
223 }
224 else
225 {
fc2293be 226 AliError(Form("Could not get local board number %d",nboard));
257091b1 227 }
43368512 228 }
257091b1 229 }
230 }
fd19a819 231
00d46f24 232 FeedCopyNeighbours();
233}
234
235
236//___________________________________________
237void AliMUONTriggerElectronics::FeedCopyNeighbours()
238{
239 //
240 /// Feed the local copies
241 /// and complete the feed with the information of neighbours
242 //
243
43368512 244 // Particular case of the columns with 22 local boards (2R(L) 3R(L))
fd19a819 245 // fill copy input from mapping instead of hardcoded valued (Ch.F)
43368512 246 AliMUONTriggerCrate *crate = 0x0; TObjArray *bs = 0x0;
fd19a819 247
248 for (Int_t i = 0; i < fCopyXInput[0]->GetEntries(); ++i)
43368512 249 {
fd19a819 250 AliMpIntPair* pair = (AliMpIntPair*)fCopyXInput[0]->At(i);
251 TString crateFrom = AliMpExMap::GetString(pair->GetFirst());
252 Int_t slotFrom = pair->GetSecond();
253
254 pair = (AliMpIntPair*)fCopyXInput[1]->At(i);
255 TString crateTo = AliMpExMap::GetString(pair->GetFirst());
256 Int_t slotTo = pair->GetSecond();
257
258 AliDebug(3, Form("copy xInputs from local %s_%d to %s_%d\n", crateFrom.Data(), slotFrom,
259 crateTo.Data(), slotTo));
260
261 UShort_t cX[2];
262 crate = fCrates->Crate(crateFrom);
257091b1 263 bs = crate->Boards();
fd19a819 264 AliMUONLocalTriggerBoard *fromxb = (AliMUONLocalTriggerBoard*)bs->At(slotFrom);
265 crate = fCrates->Crate(crateTo);
257091b1 266 bs = crate->Boards();
fd19a819 267 AliMUONLocalTriggerBoard *desxb = (AliMUONLocalTriggerBoard*)bs->At(slotTo);
268 fromxb->GetX34(cX); desxb->SetX34(cX);
269
270
271 }
272
273 for (Int_t i = 0; i < fCopyYInput[0]->GetEntries(); ++i)
274 {
275 AliMpIntPair* pair = (AliMpIntPair*)fCopyYInput[0]->At(i);
276 TString crateFrom = AliMpExMap::GetString(pair->GetFirst());
277 Int_t slotFrom = pair->GetSecond();
278
279 pair = (AliMpIntPair*)fCopyYInput[1]->At(i);
280 TString crateTo = AliMpExMap::GetString(pair->GetFirst());
281 Int_t slotTo = pair->GetSecond();
282
283 AliDebug(3, Form("copy yInputs from local %s_%d to %s_%d\n", crateFrom.Data(), slotFrom,
284 crateTo.Data(), slotTo));
285
257091b1 286 UShort_t cY[4];
fd19a819 287 crate = fCrates->Crate(crateFrom);
288 bs = crate->Boards();
289 AliMUONLocalTriggerBoard *fromyb = (AliMUONLocalTriggerBoard*)bs->At(slotFrom);
290 crate = fCrates->Crate(crateTo);
291 bs = crate->Boards();
292 AliMUONLocalTriggerBoard *desyb = (AliMUONLocalTriggerBoard*)bs->At(slotTo);
293 fromyb->GetY(cY); desyb->SetY(cY);
43368512 294 }
257091b1 295
43368512 296 // FILL UP/DOWN OF CURRENT BOARD (DONE VIA J3 BUS IN REAL LIFE)
297 AliMUONTriggerCrate* cr;
630711ed 298 TIter next2(fCrates->CreateCrateIterator());
257091b1 299
630711ed 300 while ( ( cr = static_cast<AliMUONTriggerCrate*>(next2()) ) )
43368512 301 {
257091b1 302 TObjArray *boards = cr->Boards();
303
304 for (Int_t j = 1; j < boards->GetEntries()-1; j++)
305 {
306 TObject *o = boards->At(j);
8af755f4 307
257091b1 308 if (!o) break;
8af755f4 309
257091b1 310 AliMUONLocalTriggerBoard *currboard = (AliMUONLocalTriggerBoard*)o;
8af755f4 311
257091b1 312 AliMUONLocalTriggerBoard *neighbour = (AliMUONLocalTriggerBoard*)boards->At(j+1);
1fe8c19b 313
257091b1 314 UShort_t cXY[2][4];
8af755f4 315
257091b1 316 if (j==1) {neighbour->GetXY(cXY); currboard->SetXYU(cXY);}
8af755f4 317
257091b1 318 // LAST BOARD IN THE CRATE HAS NO UP EXCEPT FOR CRATES 2 & 3
319 if (j < boards->GetEntries()-2)
320 {
43368512 321 AliMUONLocalTriggerBoard *nextboard = (AliMUONLocalTriggerBoard*)boards->At(j+2);
8af755f4 322
43368512 323 currboard->GetXY(cXY); neighbour->SetXYD(cXY);
324 nextboard->GetXY(cXY); neighbour->SetXYU(cXY);
8af755f4 325
1fe8c19b 326 if (j==boards->GetEntries()-3) {neighbour->GetXY(cXY); nextboard->SetXYD(cXY);}
43368512 327 }
257091b1 328 }
43368512 329 }
fd19a819 330
257091b1 331}
1fe8c19b 332
516d3280 333
334//___________________________________________
335void AliMUONTriggerElectronics::Feed(UShort_t pattern[2][4])
336{
6014107b 337 /// FILL INPUTS
338 ///
f1e8d46c 339 AliMUONTriggerCrate* cr;
630711ed 340 TIter next(fCrates->CreateCrateIterator());
f1e8d46c 341
630711ed 342 while ( ( cr = static_cast<AliMUONTriggerCrate*>(next()) ) )
f1e8d46c 343 {
344 TObjArray *boards = cr->Boards();
345
43368512 346 for (Int_t j = 1; j < boards->GetEntries(); j++)
f1e8d46c 347 {
348 TObject *o = boards->At(j);
349
350 if (!o) break;
351
352 AliMUONLocalTriggerBoard *board = (AliMUONLocalTriggerBoard*)o;
353
354 board->SetXY(pattern);
355 }
516d3280 356 }
357}
358
359//___________________________________________
360void AliMUONTriggerElectronics::DumpOS()
361{
6014107b 362/// DUMP IN THE OLD WAY
363///
43368512 364 for (Int_t i= 0; i < 234;i++)
516d3280 365 {
f1e8d46c 366 AliMUONLocalTriggerBoard *board = fCrates->LocalBoard(i);
516d3280 367
43368512 368 if (board) board->Scan("ALL");
516d3280 369 }
370}
371
372//___________________________________________
57e2ad1a 373void AliMUONTriggerElectronics::Scan(const Option_t *option)
516d3280 374{
6014107b 375 /// SCAN
376 ///
516d3280 377
f1e8d46c 378 AliMUONTriggerCrate* cr;
630711ed 379 TIter next(fCrates->CreateCrateIterator());
f1e8d46c 380
630711ed 381 while ( ( cr = static_cast<AliMUONTriggerCrate*>(next()) ) )
43368512 382 {
f1e8d46c 383 TObjArray *boards = cr->Boards();
384
43368512 385 for (Int_t j = 0; j < boards->GetEntries(); j++)
f1e8d46c 386 {
387 TObject *o = boards->At(j);
388
389 TString op = option;
390
391 Bool_t cdtion = kFALSE;
392
393 if (op.Contains("LOCAL")) cdtion = o->IsA() == AliMUONLocalTriggerBoard::Class();
394 if (op.Contains("REGIONAL")) cdtion = o->IsA() == AliMUONRegionalTriggerBoard::Class();
395 if (op.Contains("GLOBAL")) cdtion = o->IsA() == AliMUONGlobalTriggerBoard::Class();
396
397 if (!o || !cdtion) continue;
398
399 AliMUONLocalTriggerBoard *board = (AliMUONLocalTriggerBoard*)o;
400
401 board->Scan();
402 }
403 }
516d3280 404}
405
406//___________________________________________
407void AliMUONTriggerElectronics::Reset()
408{
6014107b 409 /// RESET
410 ///
f1e8d46c 411
412 AliMUONTriggerCrate* cr;
630711ed 413 TIter next(fCrates->CreateCrateIterator());
414 while ( ( cr = static_cast<AliMUONTriggerCrate*>(next()) ) )
516d3280 415 {
516d3280 416 TObjArray *boards = cr->Boards();
417
418 for (Int_t j=0; j<boards->GetEntries(); j++)
419 {
420 AliMUONTriggerBoard *b = (AliMUONTriggerBoard*)boards->At(j);
421
422 if (b) b->Reset();
423 }
424 }
425}
426
92c23b09 427
4c0f0f5d 428//_______________________________________________________________________
429void AliMUONTriggerElectronics::LoadMasks(AliMUONCalibrationData* calibData)
430{
92c23b09 431 /// Load mask from config in CDB
432
433 // Set mask
4c0f0f5d 434
92c23b09 435 AliMUONRegionalTriggerConfig* regionalConfig = calibData->RegionalTriggerConfig();
fc2293be 436 if (!regionalConfig) {
437 AliError("No valid regional trigger configuration in CDB");
438 return;
439 }
f1e8d46c 440
441 AliMUONTriggerCrate* cr;
630711ed 442 TIter next(fCrates->CreateCrateIterator());
f1e8d46c 443
444 Int_t irb(0);
445
630711ed 446 while ( ( cr = static_cast<AliMUONTriggerCrate*>(next()) ) )
43368512 447 {
4c0f0f5d 448 TObjArray *boards = cr->Boards();
449
92c23b09 450 AliMUONRegionalTriggerBoard *regb = (AliMUONRegionalTriggerBoard*)boards->At(0);
4c0f0f5d 451
92c23b09 452 AliMUONTriggerCrateConfig* crateConfig = regionalConfig->FindTriggerCrate(cr->GetName());
453
454 if (!crateConfig)
455 {
456 AliError(Form("Crate %s not present in configuration !!!", cr->GetName()));
457 return;
458 }
4c0f0f5d 459
92c23b09 460 UShort_t rmask= crateConfig->GetMask();
c05673c9 461
462 regb->Mask(rmask);
4c0f0f5d 463
43368512 464 for (Int_t j = 1; j < boards->GetEntries(); j++)
4c0f0f5d 465 {
466 AliMUONLocalTriggerBoard *b = (AliMUONLocalTriggerBoard*)boards->At(j);
467
468 Int_t cardNumber = b->GetNumber();
469
470 if (cardNumber) // interface board are not interested
471 {
472 AliMUONVCalibParam* localBoardMasks = calibData->LocalTriggerBoardMasks(cardNumber);
473 for ( Int_t i = 0; i < localBoardMasks->Size(); ++i )
474 {
475 UShort_t lmask = static_cast<UShort_t>(localBoardMasks->ValueAsInt(i) & 0xFFFF);
476 b->Mask(i,lmask);
477 }
478 }
479 }
f1e8d46c 480 ++irb;
4c0f0f5d 481 }
482
92c23b09 483 AliMUONGlobalCrateConfig * globalConfig = calibData->GlobalTriggerCrateConfig();
fc2293be 484 if (!globalConfig) {
485 AliError("No valid trigger crate configuration in CDB");
486 return;
487 }
4c0f0f5d 488
41a38dec 489 UInt_t gmask = 0;
490 for (Int_t i = 0; i < 4; i++) {
491 gmask = globalConfig->GetGlobalMask(i);
492 fGlobalTriggerBoard->Mask(i,gmask);
493 }
92c23b09 494}
4c0f0f5d 495
516d3280 496//___________________________________________
497void AliMUONTriggerElectronics::LocalResponse()
498{
03af98cb 499/// Compute the response for local cards
00d46f24 500
501 AliCodeTimerAuto("",0);
516d3280 502
f1e8d46c 503 AliMUONTriggerCrate* cr;
630711ed 504 TIter next(fCrates->CreateCrateIterator());
00d46f24 505
506 UShort_t thisl[16];
f1e8d46c 507
630711ed 508 while ( ( cr = static_cast<AliMUONTriggerCrate*>(next()) ) )
43368512 509 {
f1e8d46c 510
511 TObjArray *boards = cr->Boards();
512
513 AliMUONRegionalTriggerBoard *regb = (AliMUONRegionalTriggerBoard*)boards->At(0);
514
00d46f24 515 for (Int_t j=0; j<16; ++j) thisl[j] = 0;
29e3f51e 516
517 for (Int_t j = 1; j < boards->GetEntries(); j++)
f1e8d46c 518 {
43368512 519 TObject *o = boards->At(j);
f1e8d46c 520
43368512 521 if (!o) break;
f1e8d46c 522
43368512 523 AliMUONLocalTriggerBoard *board = (AliMUONLocalTriggerBoard*)o;
29e3f51e 524
00d46f24 525 board->Response();
526
527 UShort_t response = board->GetResponse();
f1e8d46c 528
00d46f24 529 // CRATE CONTAINING INTERFACE BOARD
530 if (board->GetNumber() == 0) // copy boards
531 {
532 if ( response != 0 )
533 AliWarning(Form("Interface board %s in slot %d of crate %s has a non zero response",
534 board->GetName(),j,cr->GetName()));
535 AliDebug(1, Form("local slot %d, number %d in crate %s\n", j, board->GetNumber(), cr->GetName()));
536
43368512 537 }
00d46f24 538
539 thisl[j-1] = response;
540 }
f1e8d46c 541
542 regb->SetLocalResponse(thisl);
543 }
516d3280 544}
545
546//___________________________________________
547void AliMUONTriggerElectronics::RegionalResponse()
548{
f1e8d46c 549 /// Compute the response for all regional cards.
00d46f24 550
551 AliCodeTimerAuto("",0);
552
f1e8d46c 553 AliMUONTriggerCrate* cr;
630711ed 554 TIter next(fCrates->CreateCrateIterator());
f1e8d46c 555
630711ed 556 while ( ( cr = static_cast<AliMUONTriggerCrate*>(next()) ) )
43368512 557 {
516d3280 558 TObjArray *boards = cr->Boards();
559
560 AliMUONRegionalTriggerBoard *regb = (AliMUONRegionalTriggerBoard*)boards->At(0);
00d46f24 561
562 regb->Response();
563
516d3280 564 }
565}
566
567//___________________________________________
568void AliMUONTriggerElectronics::GlobalResponse()
569{
f1e8d46c 570 /// Compute the global response
516d3280 571
00d46f24 572 AliCodeTimerAuto("",0);
573
f1e8d46c 574 UShort_t regional[16];
575
576 AliMUONTriggerCrate* cr;
f1e8d46c 577 Int_t irb(0);
578
88213d75 579 if ( fCrates->NumberOfCrates() > 16 )
f1e8d46c 580 {
581 AliFatal(Form("Something is wrong : too many crates %d",
582 fCrates->NumberOfCrates()));
583 }
630711ed 584
41a38dec 585 // send regional responses to the global trigger in right order
586 // do not used iterator order
587
588 for (Int_t iSide = 0; iSide < 2; iSide++) // right & left side
43368512 589 {
41a38dec 590 for (Int_t iReg = 0; iReg < 8; iReg++) // 8 crates/regional boards for each side.
591 {
592 cr = fCrates->Crate(iSide, iReg);
593
594 AliMUONTriggerBoard* rb =
595 static_cast<AliMUONTriggerBoard*>(cr->Boards()->At(0));
596 regional[irb] = rb->GetResponse();
597 ++irb;
598 }
f1e8d46c 599 }
41a38dec 600
f1e8d46c 601 fGlobalTriggerBoard->SetRegionalResponse(regional);
602 fGlobalTriggerBoard->Response();
516d3280 603}
604
516d3280 605//_______________________________________________________________________
257091b1 606void AliMUONTriggerElectronics::Digits2Trigger(const AliMUONVDigitStore& digitStore,
607 AliMUONVTriggerStore& triggerStore)
516d3280 608{
00d46f24 609 AliCodeTimerAuto("",0);
610
f1e8d46c 611 /// Main method to go from digits to trigger decision
257091b1 612 AliMUONRegionalTrigger pRegTrig;
613
614 triggerStore.Clear();
00d46f24 615
616 // NOW RESET ELECTRONICS
617 Reset();
257091b1 618
f1e8d46c 619 // RUN THE FULL BEE CHAIN
257091b1 620 Feed(digitStore);
621 LocalResponse();
622 RegionalResponse();
623 GlobalResponse();
624 // DumpOS();
8af755f4 625
f1e8d46c 626 AliMUONTriggerCrate* cr;
257091b1 627 AliMUONLocalTrigger localTrigger;
628
6a6a56b4 629 // stored in right order
630 // do not used iterator order
257091b1 631
6a6a56b4 632 for (Int_t iSide = 0; iSide < 2; iSide++) // right & left side
f1e8d46c 633 {
6a6a56b4 634 for (Int_t iReg = 0; iReg < 8; iReg++) // 8 crates/regional boards for each side.
635 {
636 cr = fCrates->Crate(iSide, iReg);
637 TObjArray *boards = cr->Boards();
257091b1 638
6a6a56b4 639 UInt_t regInpLpt = 0;
640 UInt_t regInpHpt = 0;
257091b1 641
6a6a56b4 642 AliMUONRegionalTriggerBoard *regBoard = (AliMUONRegionalTriggerBoard*)boards->At(0);
257091b1 643
6a6a56b4 644 for (Int_t j = 1; j < boards->GetEntries(); j++)
645 {
257091b1 646 TObject *o = boards->At(j);
647
648 if (!o) break;
649
650 AliMUONLocalTriggerBoard *board = (AliMUONLocalTriggerBoard*)o;
651
652 if (board)
653 {
654 // L0 TRIGGER
655 // pcrochet 181206: MOOD needs ALL boards
656 // if (board->Triggered())
657 // {
f1e8d46c 658
257091b1 659 Int_t icirc = board->GetNumber();
660 if (icirc != 0) { // pcrochet 181206: MOOD needs ALL boards
661
662 localTrigger.SetLoCircuit(icirc);
663 localTrigger.SetLoStripX(board->GetStripX11());
664 localTrigger.SetLoDev(board->GetDev());
665 localTrigger.SetLoSdev(board->GetSdev());
666 localTrigger.SetLoTrigY(board->GetTrigY());
667 localTrigger.SetLoStripY(board->GetStripY11());
668
669 // SAVE LUT OUTPUT
670 UShort_t response = board->GetResponse();
671 localTrigger.SetLoHpt((response & 12) >> 2);
672 localTrigger.SetLoLpt(response & 3);
673
674 // calculates regional inputs from local for the moment
675 UInt_t hPt = (response >> 2) & 0x3;
676 UInt_t lPt = response & 0x3;
677
678 regInpHpt |= hPt << (30 - (j-1)*2);
679 regInpLpt |= lPt << (30 - (j-1)*2);
680
681 TBits rrr;
682 rrr.Set(6,&response);
683
684 // SAVE BIT PATTERN
685 localTrigger.SetX1Pattern(board->GetXY(0,0));
686 localTrigger.SetX2Pattern(board->GetXY(0,1));
687 localTrigger.SetX3Pattern(board->GetXY(0,2));
688 localTrigger.SetX4Pattern(board->GetXY(0,3));
689
690 localTrigger.SetY1Pattern(board->GetXY(1,0));
691 localTrigger.SetY2Pattern(board->GetXY(1,1));
692 localTrigger.SetY3Pattern(board->GetXY(1,2));
693 localTrigger.SetY4Pattern(board->GetXY(1,3));
694
695 // ADD A NEW LOCAL TRIGGER
696 triggerStore.Add(localTrigger);
697
698 }
699 }
700 }
701 pRegTrig.SetId(iReg + 8*iSide);
702 pRegTrig.SetLocalOutput(regInpLpt, 0);
703 pRegTrig.SetLocalOutput(regInpHpt, 1);
704 pRegTrig.SetOutput(regBoard->GetResponse());
705
706 triggerStore.Add(pRegTrig);
516d3280 707 }
6a6a56b4 708 }
f1e8d46c 709
1908473e 710 // GLOBAL TRIGGER INFORMATION
f1e8d46c 711 UShort_t global = fGlobalTriggerBoard->GetResponse();
41a38dec 712 UInt_t *globalInput = fGlobalTriggerBoard->GetGlobalInput();
713
257091b1 714 AliMUONGlobalTrigger globalTrigger;
715
716 globalTrigger.SetFromGlobalResponse(global);
41a38dec 717 globalTrigger.SetFromGlobalInput(globalInput);
f1e8d46c 718 // ADD A LOCAL TRIGGER IN THE LIST
257091b1 719 triggerStore.SetGlobal(globalTrigger);
00d46f24 720
721}
722
723//___________________________________________
57e2ad1a 724void AliMUONTriggerElectronics::Feed(const AliMUONVTriggerStore& triggerStore)
00d46f24 725{
726 //
727 /// Fill inputs from reconstructed local trigger store
728 //
729 AliMUONLocalTrigger* locTrg;
730 TIter next(triggerStore.CreateLocalIterator());
731 TArrayS xyPattern[2];
732 UShort_t xy[2][4];
733 Int_t loCircuit;
734 while ( ( locTrg = static_cast<AliMUONLocalTrigger*>( next() )) != NULL ){
735 locTrg->GetXPattern(xyPattern[0]);
736 locTrg->GetYPattern(xyPattern[1]);
737 loCircuit = locTrg->LoCircuit();
738 AliMUONLocalTriggerBoard* localBoard = fCrates->LocalBoard(loCircuit);
739 for (Int_t icath = 0; icath<2; ++icath){
740 for (Int_t ich = 0; ich < 4; ++ich){
741 xy[icath][ich] = xyPattern[icath][ich];
742 }
743 }
744 localBoard->SetXY(xy);
745 }
746
747 FeedCopyNeighbours();
748}
749
750//_______________________________________________________________________
751Bool_t AliMUONTriggerElectronics::ModifiedLocalResponse(Int_t loCircuit,
752 Bool_t& bendingPlaneResp,
753 Bool_t& nonBendingPlaneResp,
754 Bool_t isCoinc44,
755 Int_t removeChamber)
756{
757 //
758 /// Re-compute the local trigger response
759 /// with some modifications (i.e. setting coinc44 or after removing one chamber)
760 //
761
762 bendingPlaneResp = kFALSE;
763 nonBendingPlaneResp = kFALSE;
764
765 Bool_t isTriggered = kFALSE;
766
767 AliMUONLocalTriggerBoard* currBoard = fCrates->LocalBoard(loCircuit);
768
769 if ( ! currBoard ) return isTriggered;
770
771 AliMUONLocalTriggerBoard localBoard (*currBoard);
772
773 if (removeChamber>=0 && removeChamber<=3){
774
775 // Set the bit pattern of selected chamber to 0
776 UShort_t xy[2][4];
777 UShort_t xyu[2][4];
778 UShort_t xyd[2][4];
779
780 localBoard.GetXY(xy);
781 localBoard.GetXYU(xyu);
782 localBoard.GetXYD(xyd);
783
784 for(Int_t icath=0; icath<2; icath++){
785 xy[icath][removeChamber] = 0;
786 xyu[icath][removeChamber] = 0;
787 xyd[icath][removeChamber] = 0;
788 }
789
790 localBoard.SetXY(xy);
791 localBoard.SetXYU(xyu);
792 localBoard.SetXYD(xyd);
793 }
794
795 localBoard.ResetResponse();
796
797 localBoard.SetCoinc44((Int_t)isCoinc44);
798 localBoard.Response();
799
800 bendingPlaneResp = localBoard.IsTrigX();
801 nonBendingPlaneResp = localBoard.IsTrigY();
802 isTriggered = localBoard.Triggered();
803
804 return isTriggered;
805}
806
807
808//_______________________________________________________________________
809void AliMUONTriggerElectronics::ResponseRemovingChambers(AliMUONVTriggerStore& triggerStore)
810{
811 /// Update local board information with the trigger response after removing each chamber
812
813 AliCodeTimerAuto("", 0);
814
f1e8d46c 815 Reset();
00d46f24 816 Feed(triggerStore);
817
818 AliMUONLocalTrigger* locTrg;
819 TIter next(triggerStore.CreateLocalIterator());
820 Int_t loCircuit;
821 Bool_t planeResp[2], isTrig44;
822 Bool_t bendPlaneRespNoCh, nonBendPlaneRespNoCh, isTrigWithoutCh;
823 while ( ( locTrg = static_cast<AliMUONLocalTrigger*>( next() )) != NULL ){
824 if ( ! ( locTrg->IsTrigX() && locTrg->IsTrigY() ) ) continue;
825 loCircuit = locTrg->LoCircuit();
826 isTrig44 = ModifiedLocalResponse(loCircuit, planeResp[0], planeResp[1], kTRUE);
827 for (Int_t ich=0; ich<4; ++ich){
828 if ( ! isTrig44 ){
829 isTrigWithoutCh = ModifiedLocalResponse(loCircuit, bendPlaneRespNoCh, nonBendPlaneRespNoCh, kFALSE, ich);
830 if ( ! isTrigWithoutCh ) continue;
831 for (Int_t icath=0; icath<2; icath++){
832 if ( ! planeResp[icath] )
833 locTrg->SetNoHitInPlane(icath, ich);
834 } // loop on cathodes
835 }
836 locTrg->SetTriggerWithoutChamber(ich);
837 } // loop on chambers
838 AliDebug(1, Form("Is44 %i triggers %i pattern %i", isTrig44, locTrg->GetTriggerWithoutChamber(), locTrg->GetHitPatternFromResponse()));
839 }
516d3280 840}