]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONDigitMaker.cxx
Updated buspatch and DDL numbers for station 345 and started buspatch at 1
[u/mrichter/AliRoot.git] / MUON / AliMUONDigitMaker.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 /// \class AliMUONDigitMaker
17 /// MUON Digit maker from rawdata.
18 ///
19 /// Raw2Digits:
20 /// Using real mapping  for tracker
21 /// Indranil Das (Adapted for runloader: Ch. Finck) july 05
22 ///
23 /// Implemented non-constant buspatch numbers for tracking
24 /// with correct DDL id.
25 /// (Ch. Finck, dec 05)
26 ///
27 /// Add reader for scaler trigger events
28 /// Use memcpy instead of assignment elt by elt
29 /// (Ch. Finck, Jan 06)
30 ///
31 /// Using new interface with AliMUONRawStreamTracker(Trigger)
32 /// (New interface of AliMUONRawReader class)
33 /// (further details could be found in Alice-note)
34 /// (Ch. Finck, March 06)
35 ///
36 /// Add (S)Digit maker tracker (for free)
37 /// and for trigger. Create trigger inverse mapping.
38 ///
39 /// \author Ch. Finck, oct 06 
40
41 #include "AliMUONDigitMaker.h"
42
43 #include "AliLog.h"
44 #include "AliMUONDDLTrigger.h"
45 #include "AliMUONDarcHeader.h"
46 #include "AliMUONVDigit.h"
47 #include "AliMUONVDigitStore.h"
48 #include "AliMUONGlobalTrigger.h"
49 #include "AliMUONLocalStruct.h"
50 #include "AliMUONLocalTrigger.h"
51 #include "AliMUONRawStreamTracker.h"
52 #include "AliMUONRawStreamTrigger.h"
53 #include "AliMUONRegHeader.h"
54 #include "AliMUONTriggerCircuit.h"
55 #include "AliMpTriggerCrate.h"
56 #include "AliMpLocalBoard.h"
57 #include "AliMUONVTriggerStore.h"
58 #include "AliMpCathodType.h"
59 #include "AliMpDDLStore.h"
60 #include "AliMpDEManager.h"
61 #include "AliMpPad.h"
62 #include "AliMpSegmentation.h"
63 #include "AliMpVSegmentation.h"
64 #include "AliRawReader.h"
65 #include <TArrayS.h>
66
67 /// \cond CLASSIMP
68 ClassImp(AliMUONDigitMaker) // Class implementation in ROOT context
69 /// \endcond
70
71 //__________________________________________________________________________
72 AliMUONDigitMaker::AliMUONDigitMaker()
73   : TObject(),
74     fScalerEvent(kFALSE),
75     fMakeTriggerDigits(kFALSE),
76     fRawStreamTracker(new AliMUONRawStreamTracker()),    
77     fRawStreamTrigger(new AliMUONRawStreamTrigger()),    
78     fTrackerTimer(),
79     fTriggerTimer(),
80     fMappingTimer(),
81     fDigitStore(0x0),
82     fTriggerStore(0x0)
83 {
84   /// ctor 
85
86   AliDebug(1,"");
87
88   // Standard Constructor
89
90   fTrackerTimer.Start(kTRUE); fTrackerTimer.Stop();
91   fTriggerTimer.Start(kTRUE); fTriggerTimer.Stop();
92   fMappingTimer.Start(kTRUE); fMappingTimer.Stop();
93   
94   SetMakeTriggerDigits();
95
96 }
97
98 //__________________________________________________________________________
99 AliMUONDigitMaker::~AliMUONDigitMaker()
100 {
101   /// clean up
102   /// and time processing measure
103
104   delete fRawStreamTracker;
105   delete fRawStreamTrigger;
106
107   AliDebug(1, Form("Execution time for MUON tracker : R:%.2fs C:%.2fs",
108                fTrackerTimer.RealTime(),fTrackerTimer.CpuTime()));
109   AliDebug(1, Form("   Execution time for MUON tracker (mapping calls part) "
110                ": R:%.2fs C:%.2fs",
111                fMappingTimer.RealTime(),fMappingTimer.CpuTime()));
112   AliDebug(1, Form("Execution time for MUON trigger : R:%.2fs C:%.2fs",
113                fTriggerTimer.RealTime(),fTriggerTimer.CpuTime()));
114
115 }
116
117 //____________________________________________________________________
118 Int_t AliMUONDigitMaker::Raw2Digits(AliRawReader* rawReader, 
119                                     AliMUONVDigitStore* digitStore,
120                                     AliMUONVTriggerStore* triggerStore)
121 {
122   /// Main method to creates digit
123   /// for tracker 
124   /// and trigger
125
126   AliDebug(1,Form("rawReader=%p digitStore=%p triggerStore=%p",
127                   rawReader,digitStore,triggerStore));
128   
129   fDigitStore = digitStore;
130   fTriggerStore = triggerStore;
131   
132   if (!fDigitStore && !fTriggerStore)
133   {
134     AliError("No digit or trigger store given. Nothing to do...");
135     return kFALSE;
136   }
137   
138   if ( fDigitStore ) 
139   {
140     fDigitStore->Clear(); // insure we start with an empty container
141     ReadTrackerDDL(rawReader);
142   }
143   
144   if ( fTriggerStore || fMakeTriggerDigits ) 
145   {
146     if ( fTriggerStore ) fTriggerStore->Clear();
147     if ( fMakeTriggerDigits && !fDigitStore ) 
148     {
149       AliError("Asking for trigger digits but digitStore is null");
150     }
151     else
152     {
153       ReadTriggerDDL(rawReader);
154     }
155   }
156   
157   return kTRUE;
158 }
159
160 //____________________________________________________________________
161 Int_t AliMUONDigitMaker::ReadTrackerDDL(AliRawReader* rawReader)
162 {
163   /// Reading tracker DDL
164   /// filling the fDigitStore container, which must not be null
165
166   AliDebug(1,"");
167   
168   fTrackerTimer.Start(kFALSE);
169
170   // elex info
171   Int_t    buspatchId;
172   UChar_t  channelId;
173   UShort_t manuId;
174   UShort_t charge; 
175
176   fRawStreamTracker->SetReader(rawReader);
177   fRawStreamTracker->First();
178   
179   while ( fRawStreamTracker->Next(buspatchId,manuId,channelId,charge) )
180   {    
181     // getting DE from buspatch
182     Int_t detElemId = AliMpDDLStore::Instance()->GetDEfromBus(buspatchId);
183
184     const AliMpVSegmentation* seg 
185       = AliMpSegmentation::Instance()->GetMpSegmentationByElectronics(detElemId, 
186                                                                       manuId);  
187
188     AliMp::CathodType cathodeType = AliMpDEManager::GetCathod(detElemId, 
189                                                               seg->PlaneType());
190
191     AliMpPad pad = seg->PadByLocation(AliMpIntPair(manuId,channelId),kFALSE);
192     
193     if (!pad.IsValid())
194     {
195       AliError(Form("No pad for detElemId: %d, manuId: %d, channelId: %d",
196                     detElemId, manuId, channelId));
197       continue;
198     } 
199     
200     AliMUONVDigit* digit = fDigitStore->Add(detElemId,manuId,channelId,cathodeType,
201                                             AliMUONVDigitStore::kDeny);
202     if (!digit)
203     {
204       AliError(Form("Digit DE %04d Manu %04d Channel %02d could not be added",
205                     detElemId, manuId, channelId));
206       continue;
207     }
208     
209     digit->SetPadXY(pad.GetIndices().GetFirst(),
210                    pad.GetIndices().GetSecond());
211     
212           digit->SetADC(charge);
213
214   }
215   
216   fTrackerTimer.Stop();
217
218   return kTRUE;
219 }
220
221 //____________________________________________________________________
222 Int_t AliMUONDigitMaker::ReadTriggerDDL(AliRawReader* rawReader)
223 {
224   /// reading tracker DDL
225   /// filling the fTriggerStore container, which must not be null
226
227   AliDebug(1,"");
228   
229   AliMUONDDLTrigger*       ddlTrigger      = 0x0;
230   AliMUONDarcHeader*       darcHeader      = 0x0;
231   AliMUONRegHeader*        regHeader       = 0x0;
232   AliMUONLocalStruct*      localStruct     = 0x0;
233
234   Int_t loCircuit;
235
236   fTriggerTimer.Start(kFALSE);
237
238   fRawStreamTrigger->SetReader(rawReader);
239
240   while (fRawStreamTrigger->NextDDL()) 
241   {
242     ddlTrigger = fRawStreamTrigger->GetDDLTrigger();
243     darcHeader = ddlTrigger->GetDarcHeader();
244     
245     // fill global trigger information
246     if (fTriggerStore) 
247     {
248       if (darcHeader->GetGlobalFlag()) 
249       {
250           AliMUONGlobalTrigger globalTrigger;
251           globalTrigger.SetFromGlobalResponse(darcHeader->GetGlobalOutput());
252           fTriggerStore->SetGlobal(globalTrigger);
253       }
254     }
255     
256     Int_t nReg = darcHeader->GetRegHeaderEntries();
257     
258     for(Int_t iReg = 0; iReg < nReg ;iReg++)
259     {   //reg loop
260       
261
262       // crate info  
263       AliMpTriggerCrate* crate = AliMpDDLStore::Instance()->
264                                 GetTriggerCrate(fRawStreamTrigger->GetDDL(), iReg);
265       
266       if (!crate) 
267         AliWarning(Form("Missing crate number %d in DDL %d\n", iReg, fRawStreamTrigger->GetDDL()));
268      
269       
270       regHeader =  darcHeader->GetRegHeaderEntry(iReg);
271       
272       Int_t nLocal = regHeader->GetLocalEntries();
273       for(Int_t iLocal = 0; iLocal < nLocal; iLocal++) 
274       {  
275         
276         localStruct = regHeader->GetLocalEntry(iLocal);
277         
278         // if card exist
279         if (localStruct) {
280           
281           loCircuit = crate->GetLocalBoardId(localStruct->GetId());
282
283           if ( !loCircuit ) continue; // empty slot
284
285           AliMpLocalBoard* localBoard = AliMpDDLStore::Instance()->GetLocalBoard(loCircuit, false);
286
287           // skip copy cards
288           if( !localBoard->IsNotified()) 
289              continue;
290           
291           if (fTriggerStore) 
292           {
293             // fill local trigger
294             AliMUONLocalTrigger localTrigger;
295             localTrigger.SetLocalStruct(loCircuit, *localStruct);
296             fTriggerStore->Add(localTrigger);
297           } 
298           
299           if ( fMakeTriggerDigits )
300           {
301             //FIXEME should find something better than a TArray
302             TArrayS xyPattern[2];
303             
304             localStruct->GetXPattern(xyPattern[0]);
305             localStruct->GetYPattern(xyPattern[1]);
306             
307             TriggerDigits(loCircuit, xyPattern, *fDigitStore);
308           }          
309         } // if triggerY
310       } // iLocal
311     } // iReg
312   } // NextDDL
313   
314   fTriggerTimer.Stop();
315
316   return kTRUE;
317
318 }
319
320 //____________________________________________________________________
321 Int_t AliMUONDigitMaker::TriggerDigits(Int_t nBoard, 
322                                        TArrayS* xyPattern,
323                                        AliMUONVDigitStore& digitStore) const
324 {
325   /// make digits for trigger from pattern, and add them to digitStore
326
327   Int_t detElemId;
328
329   AliMpLocalBoard* localBoard = AliMpDDLStore::Instance()->GetLocalBoard(nBoard);
330
331   Int_t n,b;
332
333   // loop over x1-4 and y1-4
334   for (Int_t iChamber = 0; iChamber < 4; ++iChamber)
335   {
336     for (Int_t iCath = 0; iCath < 2; ++iCath)
337     {
338       Int_t pattern = (Int_t)xyPattern[iCath].At(iChamber); 
339       if (!pattern) continue;
340       
341       // get detElemId
342       detElemId = AliMpDDLStore::Instance()->GetDEfromLocalBoard(nBoard, iChamber);
343         
344         const AliMpVSegmentation* seg 
345           = AliMpSegmentation::Instance()
346           ->GetMpSegmentation(detElemId, AliMp::GetCathodType(iCath));  
347         
348         // loop over the 16 bits of pattern
349         for (Int_t ibitxy = 0; ibitxy < 16; ++ibitxy) 
350         {
351           if ((pattern >> ibitxy) & 0x1) 
352           {            
353             // not quite sure about this
354             Int_t offset = 0;
355             if (iCath && localBoard->GetSwitch(6)) offset = -8;
356             
357             AliMpPad pad = seg->PadByLocation(AliMpIntPair(nBoard,ibitxy+offset),kTRUE);
358                         
359             if (!pad.IsValid()) 
360             {
361               AliWarning(Form("No pad for detElemId: %d, nboard %d, ibitxy: %d\n",
362                               detElemId, nBoard, ibitxy));
363               continue;
364             }
365
366             n = pad.GetLocation(0).GetFirst(); // always take first location so that digits are not inserted several times
367             b = pad.GetLocation(0).GetSecond();
368
369             AliDebug(1,Form("Using localBoard %d ixy %d instead of %d,%d",
370                             n,b,nBoard,ibitxy));
371
372             AliMUONVDigit* digit = digitStore.Add(detElemId,n,b,iCath,AliMUONVDigitStore::kDeny);
373             
374             if (!digit)
375             {
376                 AliDebug(1, Form("Digit DE %04d LocalBoard %03d ibitxy %02d cath %d already in store",
377                                  detElemId,nBoard,ibitxy,iCath));
378                 continue;
379             }
380             
381             Int_t padX = pad.GetIndices().GetFirst();
382             Int_t padY = pad.GetIndices().GetSecond();
383             
384             // fill digit
385             digit->SetPadXY(padX,padY);
386             digit->SetCharge(1.);
387           }// xyPattern
388         }// ibitxy
389     }// cath
390   } // ichamber
391   
392   return kTRUE;
393