]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDclusterizerV1.cxx
Do AliFatal if no calibration data available
[u/mrichter/AliRoot.git] / TRD / AliTRDclusterizerV1.cxx
CommitLineData
cb86ff6e 1
f7336fa3 2/**************************************************************************
3 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * *
5 * Author: The ALICE Off-line Project. *
6 * Contributors are mentioned in the code where appropriate. *
7 * *
8 * Permission to use, copy, modify and distribute this software and its *
9 * documentation strictly for non-commercial purposes is hereby granted *
10 * without fee, provided that the above copyright notice appears in all *
11 * copies and that both the copyright notice and this permission notice *
12 * appear in the supporting documentation. The authors make no claims *
13 * about the suitability of this software for any purpose. It is *
14 * provided "as is" without express or implied warranty. *
15 **************************************************************************/
16
88cb7938 17/* $Id$ */
f7336fa3 18
19///////////////////////////////////////////////////////////////////////////////
20// //
6d50f529 21// TRD cluster finder //
f7336fa3 22// //
23///////////////////////////////////////////////////////////////////////////////
24
25#include <TF1.h>
94de3818 26#include <TTree.h>
793ff80c 27#include <TH1.h>
a819a5f7 28#include <TFile.h>
f7336fa3 29
88cb7938 30#include "AliRunLoader.h"
31#include "AliLoader.h"
928e9fae 32#include "AliRawReader.h"
6d50f529 33#include "AliLog.h"
793ff80c 34
f7336fa3 35#include "AliTRDclusterizerV1.h"
f7336fa3 36#include "AliTRDgeometry.h"
6f1e466d 37#include "AliTRDdataArrayF.h"
793ff80c 38#include "AliTRDdataArrayI.h"
39#include "AliTRDdigitsManager.h"
a5cadd36 40#include "AliTRDpadPlane.h"
928e9fae 41#include "AliTRDrawData.h"
3551db50 42#include "AliTRDcalibDB.h"
3becff3c 43#include "AliTRDSimParam.h"
3551db50 44#include "AliTRDRecParam.h"
45#include "AliTRDCommonParam.h"
c85a4951 46#include "AliTRDcluster.h"
f7336fa3 47
56178ff4 48#include "Cal/AliTRDCalROC.h"
49#include "Cal/AliTRDCalDet.h"
50
f7336fa3 51ClassImp(AliTRDclusterizerV1)
52
53//_____________________________________________________________________________
6d50f529 54AliTRDclusterizerV1::AliTRDclusterizerV1()
55 :AliTRDclusterizer()
56 ,fDigitsManager(NULL)
f7336fa3 57{
58 //
59 // AliTRDclusterizerV1 default constructor
60 //
61
f7336fa3 62}
63
64//_____________________________________________________________________________
a6dd11e9 65AliTRDclusterizerV1::AliTRDclusterizerV1(const Text_t *name, const Text_t *title)
6d50f529 66 :AliTRDclusterizer(name,title)
67 ,fDigitsManager(new AliTRDdigitsManager())
f7336fa3 68{
69 //
6d50f529 70 // AliTRDclusterizerV1 constructor
f7336fa3 71 //
72
17b26de4 73 fDigitsManager->CreateArrays();
f7336fa3 74
75}
76
8230f242 77//_____________________________________________________________________________
dd9a6ee3 78AliTRDclusterizerV1::AliTRDclusterizerV1(const AliTRDclusterizerV1 &c)
6d50f529 79 :AliTRDclusterizer(c)
80 ,fDigitsManager(NULL)
8230f242 81{
82 //
83 // AliTRDclusterizerV1 copy constructor
84 //
85
8230f242 86}
87
f7336fa3 88//_____________________________________________________________________________
89AliTRDclusterizerV1::~AliTRDclusterizerV1()
90{
8230f242 91 //
92 // AliTRDclusterizerV1 destructor
93 //
f7336fa3 94
6f1e466d 95 if (fDigitsManager) {
96 delete fDigitsManager;
abaf1f1d 97 fDigitsManager = NULL;
f7336fa3 98 }
99
100}
101
dd9a6ee3 102//_____________________________________________________________________________
103AliTRDclusterizerV1 &AliTRDclusterizerV1::operator=(const AliTRDclusterizerV1 &c)
104{
105 //
106 // Assignment operator
107 //
108
109 if (this != &c) ((AliTRDclusterizerV1 &) c).Copy(*this);
110 return *this;
111
112}
113
8230f242 114//_____________________________________________________________________________
e0d47c25 115void AliTRDclusterizerV1::Copy(TObject &c) const
8230f242 116{
117 //
118 // Copy function
119 //
120
17b26de4 121 ((AliTRDclusterizerV1 &) c).fDigitsManager = 0;
8230f242 122
123 AliTRDclusterizer::Copy(c);
124
125}
126
f7336fa3 127//_____________________________________________________________________________
128Bool_t AliTRDclusterizerV1::ReadDigits()
129{
130 //
131 // Reads the digits arrays from the input aliroot file
132 //
133
88cb7938 134 if (!fRunLoader) {
6d50f529 135 AliError("No run loader available");
f7336fa3 136 return kFALSE;
137 }
6d50f529 138
88cb7938 139 AliLoader* loader = fRunLoader->GetLoader("TRDLoader");
6d50f529 140 if (!loader->TreeD()) {
141 loader->LoadDigits();
142 }
abaf1f1d 143
f7336fa3 144 // Read in the digit arrays
88cb7938 145 return (fDigitsManager->ReadDigits(loader->TreeD()));
f7336fa3 146
147}
148
928e9fae 149//_____________________________________________________________________________
a6dd11e9 150Bool_t AliTRDclusterizerV1::ReadDigits(AliRawReader *rawReader)
928e9fae 151{
152 //
153 // Reads the digits arrays from the ddl file
154 //
155
4ab68796 156 AliTRDrawData raw;
4ab68796 157 fDigitsManager = raw.Raw2Digits(rawReader);
928e9fae 158
159 return kTRUE;
160
161}
162
f7336fa3 163//_____________________________________________________________________________
793ff80c 164Bool_t AliTRDclusterizerV1::MakeClusters()
f7336fa3 165{
166 //
167 // Generates the cluster.
168 //
169
6d50f529 170 Int_t row = 0;
171 Int_t col = 0;
172 Int_t time = 0;
173 Int_t icham = 0;
174 Int_t iplan = 0;
175 Int_t isect = 0;
176 Int_t iPad = 0;
177
178 AliTRDdataArrayI *digitsIn;
a6dd11e9 179 AliTRDdataArrayI *tracksIn;
f7336fa3 180
181 // Get the geometry
6d50f529 182 AliTRDgeometry *geo = AliTRDgeometry::GetGeometry(fRunLoader);
a6dd11e9 183
6d50f529 184 AliTRDcalibDB *calibration = AliTRDcalibDB::Instance();
185 if (!calibration) {
4fad09c9 186 AliFatal("No AliTRDcalibDB instance available\n");
3551db50 187 return kFALSE;
188 }
189
6d50f529 190 AliTRDSimParam *simParam = AliTRDSimParam::Instance();
191 if (!simParam) {
192 AliError("No AliTRDSimParam instance available\n");
3becff3c 193 return kFALSE;
194 }
195
6d50f529 196 AliTRDRecParam *recParam = AliTRDRecParam::Instance();
197 if (!recParam) {
198 AliError("No AliTRDRecParam instance available\n");
3551db50 199 return kFALSE;
200 }
201
6d50f529 202 AliTRDCommonParam *commonParam = AliTRDCommonParam::Instance();
203 if (!commonParam) {
204 AliError("Could not get common parameters\n");
3551db50 205 return kFALSE;
206 }
f7336fa3 207
6d50f529 208 // ADC threshols
a6dd11e9 209 Float_t ADCthreshold = simParam->GetADCthreshold();
3e1a3ad8 210 // Threshold value for the maximum
a6dd11e9 211 Float_t maxThresh = recParam->GetClusMaxThresh();
3e1a3ad8 212 // Threshold value for the digit signal
a6dd11e9 213 Float_t sigThresh = recParam->GetClusSigThresh();
6d50f529 214
56178ff4 215 // Detector wise calibration object for t0
216 const AliTRDCalDet *calT0Det = calibration->GetT0Det();
217
f7336fa3 218 // Iteration limit for unfolding procedure
8230f242 219 const Float_t kEpsilon = 0.01;
8230f242 220 const Int_t kNclus = 3;
221 const Int_t kNsig = 5;
a6dd11e9 222 const Int_t kNdict = AliTRDdigitsManager::kNDict;
223 const Int_t kNtrack = kNdict * kNclus;
3e1a3ad8 224
a5cadd36 225 Int_t iType = 0;
7ad19338 226 Int_t iUnfold = 0;
a5cadd36 227 Double_t ratioLeft = 1.0;
228 Double_t ratioRight = 1.0;
db30bf0f 229
a6dd11e9 230 Int_t iClusterROC = 0;
231
a5cadd36 232 Double_t padSignal[kNsig];
233 Double_t clusterSignal[kNclus];
234 Double_t clusterPads[kNclus];
f7336fa3 235
6d50f529 236 Int_t chamBeg = 0;
237 Int_t chamEnd = AliTRDgeometry::Ncham();
238 Int_t planBeg = 0;
239 Int_t planEnd = AliTRDgeometry::Nplan();
240 Int_t sectBeg = 0;
241 Int_t sectEnd = AliTRDgeometry::Nsect();
242 Int_t nTimeTotal = calibration->GetNumberOfTimeBins();
f7336fa3 243
a6dd11e9 244 Int_t dummy[9] = { 0, 0, 0, 0, 0, 0, 0, 0, 0 };
245
6d50f529 246 AliDebug(1,Form("Number of Time Bins = %d.\n",nTimeTotal));
3becff3c 247
3e1a3ad8 248 // Start clustering in every chamber
6d50f529 249 for (icham = chamBeg; icham < chamEnd; icham++) {
250 for (iplan = planBeg; iplan < planEnd; iplan++) {
251 for (isect = sectBeg; isect < sectEnd; isect++) {
f7336fa3 252
a6dd11e9 253 Int_t idet = geo->GetDetector(iplan,icham,isect);
254
255 // Get the digits
256 digitsIn = fDigitsManager->GetDigits(idet);
257 // This is to take care of switched off super modules
258 if (digitsIn->GetNtime() == 0) {
259 continue;
260 }
261 digitsIn->Expand();
262 AliTRDdataArrayI *tracksTmp = fDigitsManager->GetDictionary(idet,0);
263 tracksTmp->Expand();
264
3becff3c 265 Int_t nRowMax = commonParam->GetRowMax(iplan,icham,isect);
266 Int_t nColMax = commonParam->GetColMax(iplan);
f7336fa3 267
6d50f529 268 AliTRDpadPlane *padPlane = commonParam->GetPadPlane(iplan,icham);
269
56178ff4 270 // Calibration object with pad wise values for t0
271 AliTRDCalROC *calT0ROC = calibration->GetT0ROC(idet);
272 // Calibration value for chamber wise t0
273 Float_t calT0DetValue = calT0Det->GetValue(idet);
274
db30bf0f 275 Int_t nClusters = 0;
276 Int_t nClusters2pad = 0;
277 Int_t nClusters3pad = 0;
278 Int_t nClusters4pad = 0;
279 Int_t nClusters5pad = 0;
280 Int_t nClustersLarge = 0;
3e1a3ad8 281
a6dd11e9 282 // Apply the gain and the tail cancelation via digital filter
6d50f529 283 AliTRDdataArrayF *digitsOut = new AliTRDdataArrayF(digitsIn->GetNrow()
284 ,digitsIn->GetNcol()
285 ,digitsIn->GetNtime());
a6dd11e9 286 Transform(digitsIn,digitsOut,idet,nRowMax,nColMax,nTimeTotal,ADCthreshold);
287
288 // Input digits are not needed any more
289 digitsIn->Compress(1,0);
6d50f529 290
3e1a3ad8 291 // Loop through the chamber and find the maxima
292 for ( row = 0; row < nRowMax; row++) {
de4b10e5 293 for ( col = 2; col < nColMax; col++) {
3e1a3ad8 294 for (time = 0; time < nTimeTotal; time++) {
295
11dc3a9e 296 Float_t signalL = TMath::Abs(digitsOut->GetDataUnchecked(row,col ,time));
297 Float_t signalM = TMath::Abs(digitsOut->GetDataUnchecked(row,col-1,time));
298 Float_t signalR = TMath::Abs(digitsOut->GetDataUnchecked(row,col-2,time));
3e1a3ad8 299
300 // Look for the maximum
db30bf0f 301 if (signalM >= maxThresh) {
6d50f529 302 if ((TMath::Abs(signalL) <= signalM) &&
21ee7de5 303 (TMath::Abs(signalR) < signalM)) {
6493a90f 304 if ((TMath::Abs(signalL) >= sigThresh) ||
305 (TMath::Abs(signalR) >= sigThresh)) {
a6dd11e9 306 // Maximum found, mark the position by a negative signal
307 digitsOut->SetDataUnchecked(row,col-1,time,-signalM);
308 }
3e1a3ad8 309 }
310 }
6d50f529 311
312 }
313 }
314 }
a6dd11e9 315 tracksTmp->Compress(1,0);
316
317 // The index to the first cluster of a given ROC
318 Int_t firstClusterROC = -1;
319 // The number of cluster in a given ROC
320 Int_t nClusterROC = 0;
3e1a3ad8 321
322 // Now check the maxima and calculate the cluster position
323 for ( row = 0; row < nRowMax ; row++) {
db30bf0f 324 for (time = 0; time < nTimeTotal; time++) {
325 for ( col = 1; col < nColMax-1; col++) {
3e1a3ad8 326
327 // Maximum found ?
a6dd11e9 328 if (digitsOut->GetDataUnchecked(row,col,time) < 0.0) {
f7336fa3 329
8230f242 330 for (iPad = 0; iPad < kNclus; iPad++) {
3e1a3ad8 331 Int_t iPadCol = col - 1 + iPad;
a6dd11e9 332 clusterSignal[iPad] =
333 TMath::Abs(digitsOut->GetDataUnchecked(row,iPadCol,time));
f7336fa3 334 }
335
db30bf0f 336 // Count the number of pads in the cluster
337 Int_t nPadCount = 0;
a6dd11e9 338 Int_t ii;
339 // Look to the left
340 ii = 0;
6d50f529 341 while (TMath::Abs(digitsOut->GetDataUnchecked(row,col-ii ,time)) >= sigThresh) {
db30bf0f 342 nPadCount++;
343 ii++;
344 if (col-ii < 0) break;
345 }
a6dd11e9 346 // Look to the right
db30bf0f 347 ii = 0;
6d50f529 348 while (TMath::Abs(digitsOut->GetDataUnchecked(row,col+ii+1,time)) >= sigThresh) {
db30bf0f 349 nPadCount++;
350 ii++;
351 if (col+ii+1 >= nColMax) break;
352 }
db30bf0f 353 nClusters++;
354 switch (nPadCount) {
355 case 2:
356 iType = 0;
357 nClusters2pad++;
358 break;
359 case 3:
360 iType = 1;
361 nClusters3pad++;
362 break;
363 case 4:
364 iType = 2;
365 nClusters4pad++;
366 break;
367 case 5:
368 iType = 3;
369 nClusters5pad++;
370 break;
371 default:
372 iType = 4;
373 nClustersLarge++;
374 break;
375 };
376
6d50f529 377 // Look for 5 pad cluster with minimum in the middle
db30bf0f 378 Bool_t fivePadCluster = kFALSE;
6d50f529 379 if (col < (nColMax - 3)) {
3becff3c 380 if (digitsOut->GetDataUnchecked(row,col+2,time) < 0) {
db30bf0f 381 fivePadCluster = kTRUE;
382 }
6d50f529 383 if ((fivePadCluster) && (col < (nColMax - 5))) {
3becff3c 384 if (digitsOut->GetDataUnchecked(row,col+4,time) >= sigThresh) {
db30bf0f 385 fivePadCluster = kFALSE;
386 }
387 }
6d50f529 388 if ((fivePadCluster) && (col > 1)) {
3becff3c 389 if (digitsOut->GetDataUnchecked(row,col-2,time) >= sigThresh) {
db30bf0f 390 fivePadCluster = kFALSE;
391 }
392 }
393 }
394
395 // 5 pad cluster
396 // Modify the signal of the overlapping pad for the left part
397 // of the cluster which remains from a previous unfolding
398 if (iUnfold) {
399 clusterSignal[0] *= ratioLeft;
7ad19338 400 iType = 5;
db30bf0f 401 iUnfold = 0;
402 }
403
404 // Unfold the 5 pad cluster
405 if (fivePadCluster) {
406 for (iPad = 0; iPad < kNsig; iPad++) {
3becff3c 407 padSignal[iPad] = TMath::Abs(digitsOut->GetDataUnchecked(row
a6dd11e9 408 ,col-1+iPad
409 ,time));
f7336fa3 410 }
db30bf0f 411 // Unfold the two maxima and set the signal on
412 // the overlapping pad to the ratio
17b26de4 413 ratioRight = Unfold(kEpsilon,iplan,padSignal);
db30bf0f 414 ratioLeft = 1.0 - ratioRight;
415 clusterSignal[2] *= ratioRight;
7ad19338 416 iType = 5;
db30bf0f 417 iUnfold = 1;
f7336fa3 418 }
f7336fa3 419
a5cadd36 420 Double_t clusterCharge = clusterSignal[0]
421 + clusterSignal[1]
422 + clusterSignal[2];
3e1a3ad8 423
db30bf0f 424 // The position of the cluster
a6dd11e9 425 clusterPads[0] = row + 0.5;
3e1a3ad8 426 // Take the shift of the additional time bins into account
dde59437 427 clusterPads[2] = time + 0.5;
3e1a3ad8 428
3551db50 429 if (recParam->LUTOn()) {
db30bf0f 430 // Calculate the position of the cluster by using the
431 // lookup table method
3becff3c 432 clusterPads[1] = recParam->LUTposition(iplan,clusterSignal[0]
6d50f529 433 ,clusterSignal[1]
434 ,clusterSignal[2]);
db30bf0f 435 }
436 else {
db30bf0f 437 // Calculate the position of the cluster by using the
438 // center of gravity method
a6dd11e9 439 for (Int_t i = 0; i < kNsig; i++) {
440 padSignal[i] = 0.0;
6d50f529 441 }
a6dd11e9 442 padSignal[2] = TMath::Abs(digitsOut->GetDataUnchecked(row,col ,time)); // Central pad
443 padSignal[1] = TMath::Abs(digitsOut->GetDataUnchecked(row,col-1,time)); // Left pad
444 padSignal[3] = TMath::Abs(digitsOut->GetDataUnchecked(row,col+1,time)); // Right pad
6d50f529 445 if ((col > 2) &&
446 (TMath::Abs(digitsOut->GetDataUnchecked(row,col-2,time)) < padSignal[1])) {
3becff3c 447 padSignal[0] = TMath::Abs(digitsOut->GetDataUnchecked(row,col-2,time));
7ad19338 448 }
6d50f529 449 if ((col < nColMax - 3) &&
450 (TMath::Abs(digitsOut->GetDataUnchecked(row,col+2,time)) < padSignal[3])) {
3becff3c 451 padSignal[4] = TMath::Abs(digitsOut->GetDataUnchecked(row,col+2,time));
7ad19338 452 }
6d50f529 453 clusterPads[1] = GetCOG(padSignal);
db30bf0f 454 }
455
a5cadd36 456 Double_t q0 = clusterSignal[0];
457 Double_t q1 = clusterSignal[1];
458 Double_t q2 = clusterSignal[2];
a6dd11e9 459 Double_t clusterSigmaY2 = (q1 * (q0 + q2) + 4.0 * q0 * q2)
460 / (clusterCharge*clusterCharge);
a819a5f7 461
6d50f529 462 //
3551db50 463 // Calculate the position and the error
6d50f529 464 //
465
56178ff4 466 // Correct for t0 (sum of chamber and pad wise values !!!)
467 Float_t calT0ROCValue = calT0ROC->GetValue(col,row);
468 Int_t clusterTimeBin = TMath::Nint(time - (calT0DetValue + calT0ROCValue));
6d50f529 469 Double_t colSize = padPlane->GetColSize(col);
470 Double_t rowSize = padPlane->GetRowSize(row);
cb86ff6e 471
a5cadd36 472 Double_t clusterPos[3];
a6dd11e9 473 clusterPos[0] = padPlane->GetColPos(col) - (clusterPads[1] + 0.5) * colSize;
474 clusterPos[1] = padPlane->GetRowPos(row) - 0.5 * rowSize;
6d50f529 475 clusterPos[2] = CalcXposFromTimebin(clusterPads[2],idet,col,row);
a5cadd36 476 Double_t clusterSig[2];
a6dd11e9 477 clusterSig[0] = (clusterSigmaY2 + 1.0/12.0) * colSize*colSize;
478 clusterSig[1] = rowSize * rowSize / 12.0;
3551db50 479
a6dd11e9 480 // Add the cluster to the output array
481 // The track indices will be stored later
482 AliTRDcluster *cluster = AddCluster(clusterPos
483 ,clusterTimeBin
484 ,idet
485 ,clusterCharge
486 ,dummy
487 ,clusterSig
488 ,iType
489 ,clusterPads[1]);
490
491 // Store the amplitudes of the pads in the cluster for later analysis
492 Short_t signals[7] = { 0, 0, 0, 0, 0, 0, 0 };
6d50f529 493 for (Int_t jPad = col-3; jPad <= col+3; jPad++) {
a6dd11e9 494 if ((jPad < 0) ||
495 (jPad >= nColMax-1)) {
6d50f529 496 continue;
497 }
11dc3a9e 498 signals[jPad-col+3] = TMath::Nint(TMath::Abs(digitsOut->GetDataUnchecked(row,jPad,time)));
c85a4951 499 }
500 cluster->SetSignals(signals);
6d50f529 501
a6dd11e9 502 // Temporarily store the row, column and time bin of the center pad
503 // Used to later on assign the track indices
504 cluster->SetLabel( row,0);
505 cluster->SetLabel( col,1);
506 cluster->SetLabel(time,2);
6d50f529 507
a6dd11e9 508 // Store the index of the first cluster in the current ROC
509 if (firstClusterROC < 0) {
510 firstClusterROC = RecPoints()->GetEntriesFast() - 1;
511 }
512 // Count the number of cluster in the current ROC
513 nClusterROC++;
514
515 } // if: Maximum found ?
516
517 } // loop: pad columns
518 } // loop: time bins
519 } // loop: pad rows
11dc3a9e 520
521 delete digitsOut;
f7336fa3 522
a6dd11e9 523 //
524 // Add the track indices to the found clusters
525 //
526
527 // Temporary array to collect the track indices
528 Int_t *idxTracks = new Int_t[kNtrack*nClusterROC];
529
530 // Loop through the dictionary arrays one-by-one
531 // to keep memory consumption low
532 for (Int_t iDict = 0; iDict < kNdict; iDict++) {
533
534 tracksIn = fDigitsManager->GetDictionary(idet,iDict);
535 tracksIn->Expand();
536
537 // Loop though the clusters found in this ROC
538 for (iClusterROC = 0; iClusterROC < nClusterROC; iClusterROC++) {
539
540 AliTRDcluster *cluster = (AliTRDcluster *)
541 RecPoints()->UncheckedAt(firstClusterROC+iClusterROC);
542 row = cluster->GetLabel(0);
543 col = cluster->GetLabel(1);
544 time = cluster->GetLabel(2);
545
546 for (iPad = 0; iPad < kNclus; iPad++) {
547 Int_t iPadCol = col - 1 + iPad;
548 Int_t index = tracksIn->GetDataUnchecked(row,iPadCol,time) - 1;
549 idxTracks[3*iPad+iDict + iClusterROC*kNtrack] = index;
550 }
551
552 }
553
554 // Compress the arrays
555 tracksIn->Compress(1,0);
556
557 }
558
559 // Copy the track indices into the cluster
560 // Loop though the clusters found in this ROC
561 for (iClusterROC = 0; iClusterROC < nClusterROC; iClusterROC++) {
562
563 AliTRDcluster *cluster = (AliTRDcluster *)
564 RecPoints()->UncheckedAt(firstClusterROC+iClusterROC);
565 cluster->SetLabel(-9999,0);
566 cluster->SetLabel(-9999,1);
567 cluster->SetLabel(-9999,2);
568
569 cluster->AddTrackIndex(&idxTracks[iClusterROC*kNtrack]);
570
571 }
572
573 delete [] idxTracks;
f7336fa3 574
3e1a3ad8 575 // Write the cluster and reset the array
793ff80c 576 WriteClusters(idet);
bdbb05bb 577 ResetRecPoints();
6d50f529 578
a6dd11e9 579 } // loop: Sectors
580 } // loop: Planes
581 } // loop: Chambers
f7336fa3 582
f7336fa3 583 return kTRUE;
584
585}
586
a305677e 587//_____________________________________________________________________________
7ad19338 588Double_t AliTRDclusterizerV1::GetCOG(Double_t signal[5])
589{
590 //
6d50f529 591 // Get COG position
592 // Used for clusters with more than 3 pads - where LUT not applicable
593 //
594
a6dd11e9 595 Double_t sum = signal[0]
596 + signal[1]
597 + signal[2]
598 + signal[3]
599 + signal[4];
600
601 Double_t res = (0.0 * (-signal[0] + signal[4])
602 + (-signal[1] + signal[3])) / sum;
6d50f529 603
7ad19338 604 return res;
6d50f529 605
7ad19338 606}
607
f7336fa3 608//_____________________________________________________________________________
a6dd11e9 609Double_t AliTRDclusterizerV1::Unfold(Double_t eps, Int_t plane, Double_t *padSignal)
f7336fa3 610{
611 //
612 // Method to unfold neighbouring maxima.
613 // The charge ratio on the overlapping pad is calculated
614 // until there is no more change within the range given by eps.
615 // The resulting ratio is then returned to the calling method.
616 //
617
a6dd11e9 618 AliTRDcalibDB *calibration = AliTRDcalibDB::Instance();
6d50f529 619 if (!calibration) {
620 AliError("No AliTRDcalibDB instance available\n");
6a739e92 621 return kFALSE;
3551db50 622 }
6a739e92 623
a5cadd36 624 Int_t irc = 0;
a6dd11e9 625 Int_t itStep = 0; // Count iteration steps
f7336fa3 626
a6dd11e9 627 Double_t ratio = 0.5; // Start value for ratio
628 Double_t prevRatio = 0.0; // Store previous ratio
f7336fa3 629
a6dd11e9 630 Double_t newLeftSignal[3] = { 0.0, 0.0, 0.0 }; // Array to store left cluster signal
631 Double_t newRightSignal[3] = { 0.0, 0.0, 0.0 }; // Array to store right cluster signal
632 Double_t newSignal[3] = { 0.0, 0.0, 0.0 };
f7336fa3 633
3e1a3ad8 634 // Start the iteration
f7336fa3 635 while ((TMath::Abs(prevRatio - ratio) > eps) && (itStep < 10)) {
636
637 itStep++;
638 prevRatio = ratio;
639
3e1a3ad8 640 // Cluster position according to charge ratio
a5cadd36 641 Double_t maxLeft = (ratio*padSignal[2] - padSignal[0])
642 / (padSignal[0] + padSignal[1] + ratio*padSignal[2]);
643 Double_t maxRight = (padSignal[4] - (1-ratio)*padSignal[2])
a6dd11e9 644 / ((1.0 - ratio)*padSignal[2] + padSignal[3] + padSignal[4]);
f7336fa3 645
3e1a3ad8 646 // Set cluster charge ratio
6a739e92 647 irc = calibration->PadResponse(1.0,maxLeft ,plane,newSignal);
a5cadd36 648 Double_t ampLeft = padSignal[1] / newSignal[1];
6a739e92 649 irc = calibration->PadResponse(1.0,maxRight,plane,newSignal);
a5cadd36 650 Double_t ampRight = padSignal[3] / newSignal[1];
f7336fa3 651
3e1a3ad8 652 // Apply pad response to parameters
6a739e92 653 irc = calibration->PadResponse(ampLeft ,maxLeft ,plane,newLeftSignal );
654 irc = calibration->PadResponse(ampRight,maxRight,plane,newRightSignal);
f7336fa3 655
3e1a3ad8 656 // Calculate new overlapping ratio
a5cadd36 657 ratio = TMath::Min((Double_t)1.0,newLeftSignal[2] /
a6dd11e9 658 (newLeftSignal[2] + newRightSignal[0]));
f7336fa3 659
660 }
661
662 return ratio;
663
664}
665
3becff3c 666//_____________________________________________________________________________
a6dd11e9 667void AliTRDclusterizerV1::Transform(AliTRDdataArrayI *digitsIn
668 , AliTRDdataArrayF *digitsOut
669 , Int_t idet, Int_t nRowMax
670 , Int_t nColMax, Int_t nTimeTotal
671 , Float_t ADCthreshold)
3becff3c 672{
3becff3c 673 //
cb86ff6e 674 // Apply gain factor
a6dd11e9 675 // Apply tail cancelation: Transform digitsIn to digitsOut
3becff3c 676 //
677
6d50f529 678 Int_t iRow = 0;
679 Int_t iCol = 0;
680 Int_t iTime = 0;
3becff3c 681
a6dd11e9 682 AliTRDRecParam *recParam = AliTRDRecParam::Instance();
6d50f529 683 if (!recParam) {
684 AliError("No AliTRDRecParam instance available\n");
3becff3c 685 return;
686 }
a6dd11e9 687 AliTRDcalibDB *calibration = AliTRDcalibDB::Instance();
6d50f529 688 if (!calibration) {
689 AliError("No AliTRDcalibDB instance available\n");
690 return;
691 }
11dc3a9e 692
a6dd11e9 693 Double_t *inADC = new Double_t[nTimeTotal]; // ADC data before tail cancellation
694 Double_t *outADC = new Double_t[nTimeTotal]; // ADC data after tail cancellation
3becff3c 695
6d50f529 696 AliDebug(1,Form("Tail cancellation (nExp = %d) for detector %d.\n"
697 ,recParam->GetTCnexp(),idet));
698
56178ff4 699 // Calibration object with chamber wise values for the gain factor
700 const AliTRDCalDet *calGainFactorDet = calibration->GetGainFactorDet();
701 // Calibration object with pad wise values for the gain factor
702 AliTRDCalROC *calGainFactorROC = calibration->GetGainFactorROC(idet);
703 // Calibration value for chamber wise gain factors
704 Float_t calGainFactorDetValue = calGainFactorDet->GetValue(idet);
705
6d50f529 706 for (iRow = 0; iRow < nRowMax; iRow++ ) {
707 for (iCol = 0; iCol < nColMax; iCol++ ) {
a6dd11e9 708
56178ff4 709 Float_t calGainFactorROCValue = calGainFactorROC->GetValue(iCol,iRow);
710 Double_t gain = calGainFactorDetValue
711 * calGainFactorROCValue;
712
6d50f529 713 for (iTime = 0; iTime < nTimeTotal; iTime++) {
3becff3c 714
cb86ff6e 715 //
6d50f529 716 // Add gain
cb86ff6e 717 //
a6dd11e9 718 inADC[iTime] = digitsIn->GetDataUnchecked(iRow,iCol,iTime);
719 inADC[iTime] /= gain;
720 outADC[iTime] = inADC[iTime];
6d50f529 721
3becff3c 722 }
723
724 // Apply the tail cancelation via the digital filter
6d50f529 725 if (recParam->TCOn()) {
a305677e 726 DeConvExp(inADC,outADC,nTimeTotal,recParam->GetTCnexp());
3becff3c 727 }
728
6d50f529 729 for (iTime = 0; iTime < nTimeTotal; iTime++) {
730
3becff3c 731 // Store the amplitude of the digit if above threshold
a305677e 732 if (outADC[iTime] > ADCthreshold) {
11dc3a9e 733 digitsOut->SetDataUnchecked(iRow,iCol,iTime,outADC[iTime]);
3becff3c 734 }
735
736 }
737
738 }
3becff3c 739 }
740
741 delete [] inADC;
742 delete [] outADC;
743
744 return;
745
746}
747
3becff3c 748//_____________________________________________________________________________
a6dd11e9 749void AliTRDclusterizerV1::DeConvExp(Double_t *source, Double_t *target
750 , Int_t n, Int_t nexp)
3becff3c 751{
752 //
6d50f529 753 // Tail cancellation by deconvolution for PASA v4 TRF
3becff3c 754 //
755
756 Double_t rates[2];
757 Double_t coefficients[2];
758
6d50f529 759 // Initialization (coefficient = alpha, rates = lambda)
3becff3c 760 Double_t R1 = 1.0;
761 Double_t R2 = 1.0;
762 Double_t C1 = 0.5;
763 Double_t C2 = 0.5;
764
765 if (nexp == 1) { // 1 Exponentials
766 R1 = 1.156;
767 R2 = 0.130;
768 C1 = 0.066;
769 C2 = 0.000;
770 }
771 if (nexp == 2) { // 2 Exponentials
772 R1 = 1.156;
773 R2 = 0.130;
774 C1 = 0.114;
775 C2 = 0.624;
776 }
777
778 coefficients[0] = C1;
779 coefficients[1] = C2;
780
a6dd11e9 781 Double_t Dt = 0.1;
3becff3c 782
783 rates[0] = TMath::Exp(-Dt/(R1));
784 rates[1] = TMath::Exp(-Dt/(R2));
785
6d50f529 786 Int_t i = 0;
787 Int_t k = 0;
3becff3c 788
6d50f529 789 Double_t reminder[2];
790 Double_t correction;
791 Double_t result;
3becff3c 792
6d50f529 793 // Attention: computation order is important
794 correction = 0.0;
795 for (k = 0; k < nexp; k++) {
796 reminder[k] = 0.0;
797 }
798 for (i = 0; i < n; i++) {
a6dd11e9 799 result = (source[i] - correction); // No rescaling
3becff3c 800 target[i] = result;
801
6d50f529 802 for (k = 0; k < nexp; k++) {
803 reminder[k] = rates[k] * (reminder[k] + coefficients[k] * result);
804 }
805 correction = 0.0;
806 for (k = 0; k < nexp; k++) {
807 correction += reminder[k];
808 }
3becff3c 809 }
810
811}