]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0Reconstructor.cxx
Bug fix: A certain kind of corrupted data the outputbuffer of the decoder could be...
[u/mrichter/AliRoot.git] / T0 / AliT0Reconstructor.cxx
CommitLineData
dc7ca31d 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$ */
72e48d95 17/*********************************************************************
18 * T0 reconstruction and filling ESD
19 * - reconstruct mean time (interation time)
20 * - vertex position
21 * - multiplicity
22 ********************************************************************/
dc7ca31d 23
af885e0f 24#include <AliESDEvent.h>
dc7ca31d 25#include "AliLog.h"
dc7ca31d 26#include "AliT0RecPoint.h"
27#include "AliRawReader.h"
28#include "AliT0RawReader.h"
dc7ca31d 29#include "AliT0digit.h"
30#include "AliT0Reconstructor.h"
31#include "AliT0Parameters.h"
c41ceaac 32#include "AliT0Calibrator.h"
dc7ca31d 33
34#include <TArrayI.h>
35#include <TGraph.h>
aad72f45 36#include <TMath.h>
2e6a5ee0 37#include <iostream.h>
dc7ca31d 38
39ClassImp(AliT0Reconstructor)
40
c41ceaac 41 AliT0Reconstructor:: AliT0Reconstructor(): AliReconstructor(),
f16935f7 42 fdZonA(0),
43 fdZonC(0),
44 fZposition(0),
45 fParam(NULL),
2e6a5ee0 46 fAmpLEDrec(),
c883fdf2 47 fQTC(0),
48 fAmpLED(0),
2e6a5ee0 49 fCalib()
e0bba6cc 50{
72e48d95 51 //constructor
52
c41ceaac 53 AliDebug(1,"Start reconstructor ");
74adb36a 54
55 fParam = AliT0Parameters::Instance();
56 fParam->Init();
c883fdf2 57 TString option = GetOption();
58
74adb36a 59 for (Int_t i=0; i<24; i++){
2e6a5ee0 60 TGraph* gr = fParam ->GetAmpLEDRec(i);
29ed1d0e 61 if (gr) fAmpLEDrec.AddAtAndExpand(gr,i) ;
c883fdf2 62 TGraph* gr1 = fParam ->GetAmpLED(i);
63 if (gr1) fAmpLED.AddAtAndExpand(gr1,i) ;
64 TGraph* gr2 = fParam ->GetQTC(i);
65 if (gr2) fQTC.AddAtAndExpand(gr2,i) ;
66
67 }
29ed1d0e 68
f16935f7 69 fdZonC = TMath::Abs(fParam->GetZPositionShift("T0/C/PMT1"));
70 fdZonA = TMath::Abs(fParam->GetZPositionShift("T0/A/PMT15"));
12e9daf9 71 fCalib = new AliT0Calibrator();
72
c41ceaac 73}
74//____________________________________________________________________
e0bba6cc 75
c41ceaac 76AliT0Reconstructor::AliT0Reconstructor(const AliT0Reconstructor &r):
d76c31f4 77 AliReconstructor(r),
f16935f7 78 fdZonA(0),
79 fdZonC(0),
80 fZposition(0),
81 fParam(NULL),
2e6a5ee0 82 fAmpLEDrec(),
c883fdf2 83 fQTC(0),
84 fAmpLED(0),
2e6a5ee0 85 fCalib()
86
f16935f7 87 {
c41ceaac 88 //
89 // AliT0Reconstructor copy constructor
90 //
e0bba6cc 91
c41ceaac 92 ((AliT0Reconstructor &) r).Copy(*this);
e0bba6cc 93
94}
95
c41ceaac 96//_____________________________________________________________________________
97AliT0Reconstructor &AliT0Reconstructor::operator=(const AliT0Reconstructor &r)
dc7ca31d 98{
c41ceaac 99 //
100 // Assignment operator
101 //
102
103 if (this != &r) ((AliT0Reconstructor &) r).Copy(*this);
104 return *this;
e0bba6cc 105
dc7ca31d 106}
c41ceaac 107
108//_____________________________________________________________________________
109
dc7ca31d 110void AliT0Reconstructor::Reconstruct(TTree*digitsTree, TTree*clustersTree) const
94c27e4f 111
dc7ca31d 112{
94c27e4f 113 // T0 digits reconstruction
114 // T0RecPoint writing
c41ceaac 115
74adb36a 116
c41ceaac 117 TArrayI * timeCFD = new TArrayI(24);
118 TArrayI * timeLED = new TArrayI(24);
119 TArrayI * chargeQT0 = new TArrayI(24);
120 TArrayI * chargeQT1 = new TArrayI(24);
74adb36a 121
dc7ca31d 122
94c27e4f 123 // Int_t mV2Mip = param->GetmV2Mip();
dc7ca31d 124 //mV2Mip = param->GetmV2Mip();
8955c6b4 125 Float_t channelWidth = fParam->GetChannelWidth() ;
12e9daf9 126 // Int_t meanT0 = fParam->GetMeanT0();
94c27e4f 127
dc7ca31d 128 AliDebug(1,Form("Start DIGITS reconstruction "));
94c27e4f 129
2e6a5ee0 130
131 TBranch *brDigits=digitsTree->GetBranch("T0");
e0bba6cc 132 AliT0digit *fDigits = new AliT0digit() ;
dc7ca31d 133 if (brDigits) {
134 brDigits->SetAddress(&fDigits);
135 }else{
f16935f7 136 AliError(Form("EXEC Branch T0 digits not found"));
137 return;
dc7ca31d 138 }
e0bba6cc 139
c41ceaac 140 digitsTree->GetEvent(0);
141 digitsTree->GetEntry(0);
142 brDigits->GetEntry(0);
143 fDigits->GetTimeCFD(*timeCFD);
144 fDigits->GetTimeLED(*timeLED);
145 fDigits->GetQT0(*chargeQT0);
146 fDigits->GetQT1(*chargeQT1);
446d6ec4 147 Int_t onlineMean = fDigits->MeanTime();
c883fdf2 148
c41ceaac 149
150 Float_t besttimeA=999999;
151 Float_t besttimeC=999999;
152 Int_t pmtBestA=99999;
153 Int_t pmtBestC=99999;
dc7ca31d 154 Float_t timeDiff=999999, meanTime=0;
155
c883fdf2 156 Int_t mv2MIP = fParam-> GetmV2Mip();
157
e0bba6cc 158
94c27e4f 159 AliT0RecPoint* frecpoints= new AliT0RecPoint ();
160 clustersTree->Branch( "T0", "AliT0RecPoint" ,&frecpoints, 405,1);
161
12e9daf9 162 Float_t time[24], adc[24];
dc7ca31d 163 for (Int_t ipmt=0; ipmt<24; ipmt++) {
c41ceaac 164 if(timeCFD->At(ipmt)>0 ){
29d3e0eb 165 Double_t qt0 = Double_t(chargeQT0->At(ipmt));
166 Double_t qt1 = Double_t(chargeQT1->At(ipmt));
12e9daf9 167 if((qt1-qt0)>0) adc[ipmt] = Int_t (TMath::Exp( Double_t (channelWidth*(qt1-qt0)/1000)));
168
2e6a5ee0 169 time[ipmt] = fCalib-> WalkCorrection( ipmt, Int_t(qt1) , timeCFD->At(ipmt), "pdc" ) ;
c883fdf2 170
c41ceaac 171 //LED
29d3e0eb 172 Double_t sl = (timeLED->At(ipmt) - time[ipmt])*channelWidth;
74adb36a 173 Double_t qt=((TGraph*)fAmpLEDrec.At(ipmt))->Eval(sl/1000.);
c883fdf2 174 AliDebug(1,Form(" ipmt %i QTC %f ch QTC in MIP %f, time in chann %f (led-cfd) %f in MIPs %f",
175 ipmt, adc[ipmt], adc[ipmt]/Float_t(mv2MIP), time[ipmt],sl, qt/Float_t(mv2MIP)));
176
177 frecpoints->SetTime(ipmt,time[ipmt]);
178 frecpoints->SetAmp(ipmt,adc[ipmt]/Float_t(mv2MIP));
179 frecpoints->SetAmpLED(ipmt,qt/Float_t(mv2MIP));
dc7ca31d 180 }
181 else {
182 time[ipmt] = 0;
183 adc[ipmt] = 0;
184 }
185 }
94c27e4f 186
dc7ca31d 187 for (Int_t ipmt=0; ipmt<12; ipmt++){
188 if(time[ipmt] > 1 ) {
c41ceaac 189 if(time[ipmt]<besttimeC){
190 besttimeC=time[ipmt]; //timeC
191 pmtBestC=ipmt;
dc7ca31d 192 }
193 }
194 }
195 for ( Int_t ipmt=12; ipmt<24; ipmt++){
196 if(time[ipmt] > 1) {
c41ceaac 197 if(time[ipmt]<besttimeA) {
198 besttimeA=time[ipmt]; //timeA
199 pmtBestA=ipmt;}
dc7ca31d 200 }
201 }
c41ceaac 202 if(besttimeA !=999999) frecpoints->SetTimeBestA(Int_t(besttimeA));
203 if( besttimeC != 999999 ) frecpoints->SetTimeBestC(Int_t(besttimeC));
12e9daf9 204 AliDebug(1,Form(" besttimeA %f ch, besttimeC %f ch",besttimeA, besttimeC));
dc7ca31d 205 Float_t c = 0.0299792; // cm/ps
206 Float_t vertex = 0;
c41ceaac 207 if(besttimeA !=999999 && besttimeC != 999999 ){
12e9daf9 208 timeDiff = (besttimeC - besttimeA)*channelWidth;
446d6ec4 209 meanTime = (Float_t((besttimeA + besttimeC -4000)/2) * channelWidth);
12e9daf9 210 // meanTime = (meanT0 - (besttimeA + besttimeC)/2) * channelWidth;
f16935f7 211 vertex = c*(timeDiff)/2. + (fdZonA - fdZonC)/2; //-(lenr-lenl))/2;
dc7ca31d 212 frecpoints->SetVertex(vertex);
213 frecpoints->SetMeanTime(Int_t(meanTime));
446d6ec4 214 //online mean
215 frecpoints->SetOnlineMean(Int_t(onlineMean * channelWidth));
216 AliDebug(1,Form(" timeDiff %f ps, meanTime %f ps, vertex %f cm online mean %i ps",timeDiff, meanTime,vertex, Int_t(onlineMean * channelWidth )));
dc7ca31d 217
218 }
446d6ec4 219
94c27e4f 220 //time in each channel as time[ipmt]-MeanTimeinThisChannel(with vertex=0)
446d6ec4 221 /*
94c27e4f 222 for (Int_t ipmt=0; ipmt<24; ipmt++) {
223 if(time[ipmt]>1) {
446d6ec4 224 // time[ipmt] = (time[ipmt] - fTime0vertex[ipmt])*channelWidth;
12e9daf9 225 time[ipmt] =Int_t ( Float_t(time[ipmt]) * channelWidth);
94c27e4f 226 frecpoints->SetTime(ipmt,time[ipmt]);
227 }
228 }
446d6ec4 229*/
dc7ca31d 230 clustersTree->Fill();
bd375212 231
232 delete timeCFD;
233 delete timeLED;
234 delete chargeQT0;
235 delete chargeQT1;
dc7ca31d 236}
237
238
c41ceaac 239//_______________________________________________________________________
240
241void AliT0Reconstructor::Reconstruct(AliRawReader* rawReader, TTree*recTree) const
242{
94c27e4f 243 // T0 raw ->
244 // T0RecPoint writing
245
246 //Q->T-> coefficients !!!! should be measured!!!
e8ed1cd0 247 Int_t allData[110][5];
2e6a5ee0 248
e8ed1cd0 249 Int_t timeCFD[24], timeLED[24], chargeQT0[24], chargeQT1[24];
aaa0a98f 250 TString option = GetOption();
2e6a5ee0 251 AliDebug(10,Form("Option: %s\n", option.Data()));
252
253 for (Int_t i0=0; i0<105; i0++)
254 {
255 for (Int_t j0=0; j0<5; j0++) allData[i0][j0]=0;
256 }
257
12e9daf9 258 Float_t besttimeA=9999999;
259 Float_t besttimeC=9999999;
2e6a5ee0 260 Int_t pmtBestA=99999;
261 Int_t pmtBestC=99999;
12e9daf9 262 Float_t timeDiff=9999999, meanTime=0;
2e6a5ee0 263 Double_t qt=0;
c883fdf2 264 Int_t mv2MIP = fParam-> GetmV2Mip();
265
2e6a5ee0 266 AliT0RecPoint* frecpoints= new AliT0RecPoint ();
267
268 recTree->Branch( "T0", "AliT0RecPoint" ,&frecpoints, 405,1);
269
270
271 AliDebug(10," before read data ");
272 AliT0RawReader myrawreader(rawReader);
273 if (!myrawreader.Next())
274 AliDebug(1,Form(" no raw data found!!"));
275 else
276 {
277 for (Int_t i=0; i<105; i++) {
278 for (Int_t iHit=0; iHit<5; iHit++)
279 {
280 allData[i][iHit] = myrawreader.GetData(i,iHit);
281 }
282 }
283
284 Float_t channelWidth = fParam->GetChannelWidth() ;
285
12e9daf9 286 // Int_t meanT0 = fParam->GetMeanT0();
2e6a5ee0 287 if(option == "pdc"){
288 for (Int_t in=0; in<24; in++)
289 {
290
291 timeLED[in] = allData[in+1][0] ;
292 timeCFD[in] = allData[in+25][0] ;
293 chargeQT1[in] = allData[in+57][0] ;
294 chargeQT0[in] = allData[in+80][0] ;
295 }
296 }
297
298 if(option == "cosmic") {
299 for (Int_t in=0; in<12; in++)
300 {
301 timeCFD[in] = allData[in+1][0] ;
302 timeCFD[in+12] = allData[in+56+1][0] ;
303 timeLED[in] = allData[in+12+1][0] ;
304 timeLED[in+12] = allData[in+68+1][0] ;
305 }
306
c883fdf2 307 for (Int_t in=0; in<12; in++)
2e6a5ee0 308 {
c883fdf2 309 chargeQT1[in]=allData[2*in+25][0];
310 chargeQT0[in]=allData[2*in+26][0];
2e6a5ee0 311 }
c883fdf2 312
313 for (Int_t in=12; in<24; in++)
2e6a5ee0 314 {
c883fdf2 315 chargeQT1[in]=allData[2*in+57][0];
316 chargeQT0[in]=allData[2*in+58][0];
2e6a5ee0 317 }
318
319 }
320 for (Int_t in=0; in<24; in++)
c883fdf2 321 AliDebug(10, Form(" readed Raw %i %i %i %i %i",
322 in, timeLED[in],timeCFD[in],chargeQT0[in],chargeQT1[in]));
446d6ec4 323 Int_t onlineMean = allData[49][0];
2e6a5ee0 324
12e9daf9 325 Float_t time[24], adc[24];
2e6a5ee0 326 for (Int_t ipmt=0; ipmt<24; ipmt++) {
327 if(timeCFD[ipmt]>0 && timeLED[ipmt]>0){
328
329 if(option == "pdc"){
330 Double_t qt0 = Double_t(chargeQT0[ipmt]);
331 Double_t qt1 = Double_t(chargeQT1[ipmt]);
29ed1d0e 332 if((qt1-qt0)>0) adc[ipmt] = Int_t(TMath::Exp( Double_t (channelWidth*(qt1-qt0)/1000.)));
2e6a5ee0 333 time[ipmt] = fCalib-> WalkCorrection( ipmt,Int_t(qt1) , timeCFD[ipmt], "pdc" ) ;
334 Double_t sl = (timeLED[ipmt] - time[ipmt])*channelWidth;
335 if(fAmpLEDrec.At(ipmt))
336 qt=((TGraph*)fAmpLEDrec.At(ipmt))->Eval(sl/1000.);
c883fdf2 337 frecpoints->SetTime(ipmt,time[ipmt]);
338 frecpoints->SetAmp(ipmt,adc[ipmt]/Float_t(mv2MIP));
339 frecpoints->SetAmpLED(ipmt,qt/Float_t(mv2MIP));
446d6ec4 340 AliDebug(10,Form(" QTC %f mv, time in chann %f ampLED %f",adc[ipmt] ,time[ipmt], qt));
c883fdf2 341 AliDebug(10,Form(" Amlitude in MIPS LED %f , QTC %f \n ", adc[ipmt]/Float_t(mv2MIP),qt/Float_t(mv2MIP)));
2e6a5ee0 342 }
343 if(option == "cosmic") {
344 // if(ipmt == 15) continue; //skip crashed PMT
345 if(( chargeQT1[ipmt] - chargeQT0[ipmt])>0)
346 adc[ipmt] = chargeQT1[ipmt] - chargeQT0[ipmt];
347 else
348 adc[ipmt] = 0;
349 // time[ipmt] = fCalib-> WalkCorrection( ipmt, adc[ipmt], timeCFD[ipmt],"cosmic" ) ;
c883fdf2 350
2e6a5ee0 351 Double_t sl = timeLED[ipmt] - timeCFD[ipmt];
352 time[ipmt] = fCalib-> WalkCorrection( ipmt, Int_t(sl), timeCFD[ipmt],"cosmic" ) ;
c883fdf2 353 // if(fAmpLEDrec.At(ipmt))
354 // qt=((TGraph*)fAmpLEDrec.At(ipmt))->Eval(sl);
2e6a5ee0 355 time[ipmt] = time[ipmt] - allData[0][0] + 5000;
c883fdf2 356 AliDebug(10,Form(" ipmt %i QTC %i , time in chann %i (led-cfd) %i ",
357 ipmt, Int_t(adc[ipmt]) ,Int_t(time[ipmt]),Int_t( sl)));
358 Double_t ampMip =( (TGraph*)fAmpLED.At(ipmt))->Eval(sl);
359 Double_t qtMip = ((TGraph*)fQTC.At(ipmt))->Eval(adc[ipmt]);
360 AliDebug(10,Form(" Amlitude in MIPS LED %f , QTC %f \n ",ampMip,qtMip));
361
2e6a5ee0 362 frecpoints->SetTime(ipmt, Float_t(time[ipmt]) );
c883fdf2 363 frecpoints->SetAmp(ipmt, Float_t( ampMip)); //for cosmic &pp beam
364 frecpoints->SetAmpLED(ipmt, Float_t(qtMip));
365
366
2e6a5ee0 367 }
368
369 }
370 else {
371 time[ipmt] = 0;
372 adc[ipmt] = 0;
373 }
374 }
375
376 for (Int_t ipmt=0; ipmt<12; ipmt++){
377 if(time[ipmt] > 1 ) {
378 if(time[ipmt]<besttimeC){
379 besttimeC=time[ipmt]; //timeC
380 pmtBestC=ipmt;
381 }
382 }
383 }
384 for ( Int_t ipmt=12; ipmt<24; ipmt++){
385 if(time[ipmt] > 1) {
386 if(time[ipmt]<besttimeA) {
387 besttimeA=time[ipmt]; //timeA
388 pmtBestA=ipmt;}
389 }
390 }
391 if(besttimeA !=9999999) frecpoints->SetTimeBestA(Int_t(besttimeA));
392 if( besttimeC != 9999999 ) frecpoints->SetTimeBestC(Int_t(besttimeC));
12e9daf9 393 AliDebug(1,Form(" besttimeA %f ps, besttimeC %f ps",besttimeA, besttimeC));
2e6a5ee0 394 Float_t c = 0.0299792; // cm/ps
395 Float_t vertex = 99999;
396 if(besttimeA <9999999 && besttimeC < 9999999 ){
12e9daf9 397 timeDiff = ( besttimeC - besttimeA) *channelWidth;
446d6ec4 398 if(option == "pdc"){
399 // meanTime = (besttimeA + besttimeC)/2 * channelWidth;
400 meanTime = (besttimeA + besttimeC-4000.)/2 * channelWidth;
401 onlineMean = Int_t (onlineMean * channelWidth);
402 }
403 if(option == "cosmic") {
12e9daf9 404 meanTime = Float_t((besttimeA + besttimeC)/2);
446d6ec4 405 onlineMean = onlineMean -allData[0][0];;
406 }
12e9daf9 407 vertex = c*(timeDiff)/2.+ (fdZonA - fdZonC)/2;
2e6a5ee0 408 frecpoints->SetVertex(vertex);
409 frecpoints->SetMeanTime(Int_t(meanTime));
446d6ec4 410 AliDebug(1,Form(" timeDiff %f ps, meanTime %f ps, vertex %f cm online mean %i ",timeDiff, meanTime,vertex, onlineMean));
2e6a5ee0 411
412 }
413 } // if (else )raw data
414 recTree->Fill();
415 if(frecpoints) delete frecpoints;
c41ceaac 416}
417//____________________________________________________________
418
d76c31f4 419void AliT0Reconstructor::FillESD(TTree */*digitsTree*/, TTree *clustersTree, AliESDEvent *pESD) const
dc7ca31d 420{
421
422 /***************************************************
423 Resonstruct digits to vertex position
424 ****************************************************/
425
dc7ca31d 426 AliDebug(1,Form("Start FillESD T0"));
427
d76c31f4 428 TTree *treeR = clustersTree;
dc7ca31d 429
430 AliT0RecPoint* frecpoints= new AliT0RecPoint ();
431 if (!frecpoints) {
432 AliError("Reconstruct Fill ESD >> no recpoints found");
433 return;
434 }
435
436 AliDebug(1,Form("Start FillESD T0"));
437 TBranch *brRec = treeR->GetBranch("T0");
438 if (brRec) {
439 brRec->SetAddress(&frecpoints);
440 }else{
f16935f7 441 AliError(Form("EXEC Branch T0 rec not found"));
dc7ca31d 442 return;
443 }
444
445 brRec->GetEntry(0);
f16935f7 446 Float_t amp[24], time[24];
447 Float_t zPosition = frecpoints -> GetVertex();
448 Float_t timeStart = frecpoints -> GetMeanTime() ;
449 for ( Int_t i=0; i<24; i++) {
94c27e4f 450 time[i] = Float_t (frecpoints -> GetTime(i)); // ps to ns
dc7ca31d 451 amp[i] = frecpoints -> GetAmp(i);
452 }
f16935f7 453 pESD->SetT0zVertex(zPosition); //vertex Z position
dc7ca31d 454 pESD->SetT0(timeStart); // interaction time
455 pESD->SetT0time(time); // best TOF on each PMT
456 pESD->SetT0amplitude(amp); // number of particles(MIPs) on each PMT
5325480c 457
f16935f7 458 AliDebug(1,Form(" Z position %f cm, T0 %f ps",zPosition , timeStart));
dc7ca31d 459
dc7ca31d 460} // vertex in 3 sigma
461
462
463
464
465
466