]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSDetTypeRec.cxx
Minor changes to the documentation.
[u/mrichter/AliRoot.git] / ITS / AliITSDetTypeRec.cxx
CommitLineData
3b9df642 1/***************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
b17dae48 5 * Conributors are mentioned in the code where appropriate. *
3b9df642 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/*
140e5249 17 $Id$
3b9df642 18*/
19
7d62fb64 20////////////////////////////////////////////////////////////////////////
21// This class defines the "Standard" reconstruction for the ITS //
22// detector. //
23// //
24////////////////////////////////////////////////////////////////////////
25#include "TObjArray.h"
26#include "TTree.h"
27
8ba39da9 28#include "AliCDBManager.h"
e8c4cf33 29#include "AliCDBStorage.h"
8ba39da9 30#include "AliCDBEntry.h"
7d62fb64 31#include "AliITSClusterFinder.h"
32#include "AliITSClusterFinderV2.h"
33#include "AliITSClusterFinderV2SPD.h"
34#include "AliITSClusterFinderV2SDD.h"
35#include "AliITSClusterFinderV2SSD.h"
36#include "AliITSClusterFinderSPD.h"
37#include "AliITSClusterFinderSDD.h"
38#include "AliITSClusterFinderSSD.h"
3b9df642 39#include "AliITSDetTypeRec.h"
6cae184e 40#include "AliITSgeom.h"
7d62fb64 41#include "AliITSRawCluster.h"
42#include "AliITSRawClusterSPD.h"
43#include "AliITSRawClusterSDD.h"
44#include "AliITSRawClusterSSD.h"
45#include "AliITSRecPoint.h"
ed446fa3 46#include "AliITSReconstructor.h"
47#include "AliITSRecoParam.h"
fcf95fc7 48#include "AliITSCalibrationSDD.h"
028a3709 49#include "AliITSMapSDD.h"
18da6e54 50#include "AliITSDriftSpeedArraySDD.h"
140e5249 51#include "AliITSDriftSpeedSDD.h"
fb4dfab9 52#include "AliITSCalibrationSSD.h"
53#include "AliITSNoiseSSD.h"
54#include "AliITSGainSSD.h"
55#include "AliITSBadChannelsSSD.h"
b42cfa25 56#include "AliITSPedestalSSD.h"
7d62fb64 57#include "AliITSsegmentationSPD.h"
58#include "AliITSsegmentationSDD.h"
59#include "AliITSsegmentationSSD.h"
00a7cc50 60#include "AliLog.h"
7d62fb64 61
3b9df642 62
7d62fb64 63const Int_t AliITSDetTypeRec::fgkNdettypes = 3;
8ba39da9 64const Int_t AliITSDetTypeRec::fgkDefaultNModulesSPD = 240;
65const Int_t AliITSDetTypeRec::fgkDefaultNModulesSDD = 260;
66const Int_t AliITSDetTypeRec::fgkDefaultNModulesSSD = 1698;
67
3b9df642 68ClassImp(AliITSDetTypeRec)
69
7d62fb64 70//________________________________________________________________
e56160b8 71AliITSDetTypeRec::AliITSDetTypeRec(): TObject(),
72fNMod(0),
6cae184e 73fITSgeom(0),
e56160b8 74fReconstruction(0),
75fSegmentation(0),
76fCalibration(0),
77fPreProcess(0),
78fPostProcess(0),
79fDigits(0),
979b5a5f 80fDDLMapSDD(0),
e56160b8 81fNdtype(0),
82fCtype(0),
83fNctype(0),
84fRecPoints(0),
85fNRecPoints(0),
86fSelectedVertexer(),
e56160b8 87fFirstcall(kTRUE){
8e50d897 88 // Standard Constructor
89 // Inputs:
90 // none.
91 // Outputs:
92 // none.
93 // Return:
94 //
7d62fb64 95
7d62fb64 96 fReconstruction = new TObjArray(fgkNdettypes);
7d62fb64 97 fDigits = new TObjArray(fgkNdettypes);
8e50d897 98 for(Int_t i=0; i<3; i++){
99 fClusterClassName[i]=0;
100 fDigClassName[i]=0;
101 fRecPointClassName[i]=0;
102 }
979b5a5f 103 fDDLMapSDD=new AliITSDDLModuleMapSDD();
7d62fb64 104 fNdtype = new Int_t[fgkNdettypes];
105 fCtype = new TObjArray(fgkNdettypes);
106 fNctype = new Int_t[fgkNdettypes];
8e50d897 107 fNMod = new Int_t [fgkNdettypes];
108 fNMod[0] = fgkDefaultNModulesSPD;
109 fNMod[1] = fgkDefaultNModulesSDD;
110 fNMod[2] = fgkDefaultNModulesSSD;
00a7cc50 111 fRecPoints = new TClonesArray("AliITSRecPoint",3000);
7d62fb64 112 fNRecPoints = 0;
7d62fb64 113
114 for(Int_t i=0;i<fgkNdettypes;i++){
115 fNdtype[i]=0;
116 fNctype[i]=0;
117 }
118
e56160b8 119 SelectVertexer(" ");
7d62fb64 120}
7537d03c 121
7d62fb64 122//______________________________________________________________________
7537d03c 123AliITSDetTypeRec::AliITSDetTypeRec(const AliITSDetTypeRec & rec):TObject(rec),
124fNMod(rec.fNMod),
6cae184e 125fITSgeom(rec.fITSgeom),
7537d03c 126fReconstruction(rec.fReconstruction),
127fSegmentation(rec.fSegmentation),
128fCalibration(rec.fCalibration),
129fPreProcess(rec.fPreProcess),
130fPostProcess(rec.fPostProcess),
131fDigits(rec.fDigits),
979b5a5f 132fDDLMapSDD(rec.fDDLMapSDD),
7537d03c 133fNdtype(rec.fNdtype),
134fCtype(rec.fCtype),
135fNctype(rec.fNctype),
136fRecPoints(rec.fRecPoints),
137fNRecPoints(rec.fNRecPoints),
138fSelectedVertexer(rec.fSelectedVertexer),
7537d03c 139fFirstcall(rec.fFirstcall)
e56160b8 140{
7d62fb64 141
e56160b8 142 // Copy constructor.
7537d03c 143
7d62fb64 144}
145//______________________________________________________________________
e56160b8 146AliITSDetTypeRec& AliITSDetTypeRec::operator=(const AliITSDetTypeRec& source){
7537d03c 147 // Assignment operator.
148 this->~AliITSDetTypeRec();
149 new(this) AliITSDetTypeRec(source);
150 return *this;
7d62fb64 151
e56160b8 152}
7537d03c 153
7d62fb64 154//_____________________________________________________________________
3b9df642 155AliITSDetTypeRec::~AliITSDetTypeRec(){
7d62fb64 156 //Destructor
6cae184e 157
fcf95fc7 158 if(fReconstruction){
159 fReconstruction->Delete();
160 delete fReconstruction;
161 fReconstruction = 0;
162 }
163 if(fSegmentation){
164 fSegmentation->Delete();
165 delete fSegmentation;
166 fSegmentation = 0;
167 }
6cae184e 168 if(fCalibration){
7032f6a2 169 if(!(AliCDBManager::Instance()->GetCacheFlag())) {
170 AliITSresponse* rspd = ((AliITSCalibration*)fCalibration->At(GetITSgeom()->GetStartSPD()))->GetResponse();
171 AliITSresponse* rsdd = ((AliITSCalibration*)fCalibration->At(GetITSgeom()->GetStartSDD()))->GetResponse();
172 AliITSresponse* rssd = ((AliITSCalibration*)fCalibration->At(GetITSgeom()->GetStartSSD()))->GetResponse();
173 if(rspd) delete rspd;
174 if(rsdd) delete rsdd;
175 if(rssd) delete rssd;
176 fCalibration->Delete();
177 delete fCalibration;
178 fCalibration = 0;
179 }
fcf95fc7 180 }
7d62fb64 181 if(fPreProcess) delete fPreProcess;
182 if(fPostProcess) delete fPostProcess;
979b5a5f 183 if(fDDLMapSDD) delete fDDLMapSDD;
7d62fb64 184 if(fDigits){
185 fDigits->Delete();
186 delete fDigits;
187 fDigits=0;
188 }
189 if(fRecPoints){
190 fRecPoints->Delete();
191 delete fRecPoints;
192 fRecPoints=0;
193 }
7d62fb64 194 if(fCtype) {
195 fCtype->Delete();
196 delete fCtype;
197 fCtype = 0;
198 }
199 delete [] fNctype;
8ba39da9 200 delete [] fNdtype;
8e50d897 201 delete [] fNMod;
7d62fb64 202
6cae184e 203 if (fITSgeom) delete fITSgeom;
204
7d62fb64 205}
8e50d897 206
7d62fb64 207//___________________________________________________________________
208void AliITSDetTypeRec::SetReconstructionModel(Int_t dettype,AliITSClusterFinder *clf){
209
210 //Set reconstruction model for detector type
211
212 if(fReconstruction==0) fReconstruction = new TObjArray(fgkNdettypes);
213 if(fReconstruction->At(dettype)!=0) delete fReconstruction->At(dettype);
214 fReconstruction->AddAt(clf,dettype);
215}
216//______________________________________________________________________
217AliITSClusterFinder* AliITSDetTypeRec::GetReconstructionModel(Int_t dettype){
218
219 //Get reconstruction model for detector type
220 if(fReconstruction==0) {
221 Warning("GetReconstructionModel","fReconstruction is 0!");
222 return 0;
223 }
224 return (AliITSClusterFinder*)fReconstruction->At(dettype);
225}
226
227//______________________________________________________________________
228void AliITSDetTypeRec::SetSegmentationModel(Int_t dettype,AliITSsegmentation *seg){
229
230 //Set segmentation model for detector type
231
232 if(fSegmentation==0) fSegmentation = new TObjArray(fgkNdettypes);
233 if(fSegmentation->At(dettype)!=0) delete fSegmentation->At(dettype);
234 fSegmentation->AddAt(seg,dettype);
235
236}
237//______________________________________________________________________
238AliITSsegmentation* AliITSDetTypeRec::GetSegmentationModel(Int_t dettype){
239
240 //Get segmentation model for detector type
241
242 if(fSegmentation==0) {
243 Warning("GetSegmentationModel","fSegmentation is 0!");
244 return 0;
245 }
246 return (AliITSsegmentation*)fSegmentation->At(dettype);
247
248}
249//_______________________________________________________________________
fcf95fc7 250void AliITSDetTypeRec::SetCalibrationModel(Int_t iMod, AliITSCalibration *cal){
8ba39da9 251
252 //Set calibration (response) for the module iMod of type dettype
253 if (fCalibration==0) {
8e50d897 254 fCalibration = new TObjArray(GetITSgeom()->GetIndexMax());
8ba39da9 255 fCalibration->SetOwner(kTRUE);
256 fCalibration->Clear();
257 }
258
259 if (fCalibration->At(iMod) != 0)
fcf95fc7 260 delete (AliITSCalibration*) fCalibration->At(iMod);
8ba39da9 261 fCalibration->AddAt(cal,iMod);
7d62fb64 262
7d62fb64 263}
264//_______________________________________________________________________
fcf95fc7 265AliITSCalibration* AliITSDetTypeRec::GetCalibrationModel(Int_t iMod){
7d62fb64 266
8ba39da9 267 //Get calibration model for module type
7d62fb64 268
269 if(fCalibration==0) {
8ba39da9 270 Warning("GetalibrationModel","fCalibration is 0!");
7d62fb64 271 return 0;
272 }
8ba39da9 273
fcf95fc7 274 return (AliITSCalibration*)fCalibration->At(iMod);
7d62fb64 275}
276
7d62fb64 277//______________________________________________________________________
278void AliITSDetTypeRec::SetTreeAddressD(TTree *treeD){
279 // Set branch address for the tree of digits.
280
281 const char *det[4] = {"SPD","SDD","SSD","ITS"};
282 TBranch *branch;
283 Char_t* digclass;
284 Int_t i;
285 char branchname[30];
286
287 if(!treeD) return;
288 if (fDigits == 0x0) fDigits = new TObjArray(fgkNdettypes);
289 for (i=0; i<fgkNdettypes; i++) {
290 digclass = GetDigitClassName(i);
291 if(!(fDigits->At(i))) {
292 fDigits->AddAt(new TClonesArray(digclass,1000),i);
293 }else{
294 ResetDigits(i);
295 }
296 if (fgkNdettypes==3) sprintf(branchname,"%sDigits%s",det[3],det[i]);
297 else sprintf(branchname,"%sDigits%d",det[3],i+1);
298 if (fDigits) {
299 branch = treeD->GetBranch(branchname);
300 if (branch) branch->SetAddress(&((*fDigits)[i]));
301 }
302 }
303}
304
305//_______________________________________________________________________
306TBranch* AliITSDetTypeRec::MakeBranchInTree(TTree *tree, const char* name,
307 const char *classname,
308 void* address,Int_t size,
6cae184e 309 Int_t splitlevel)
7d62fb64 310{
311//
312// Makes branch in given tree and diverts them to a separate file
313//
314//
315//
316
317 if (tree == 0x0) {
318 Error("MakeBranchInTree","Making Branch %s Tree is NULL",name);
319 return 0x0;
320 }
321 TBranch *branch = tree->GetBranch(name);
322 if (branch) {
323 return branch;
324 }
325 if (classname){
326 branch = tree->Branch(name,classname,address,size,splitlevel);
327 }
328 else {
329 branch = tree->Bronch(name, "TClonesArray", address, size, splitlevel);
330 }
331
332 return branch;
333}
334
335//____________________________________________________________________
336void AliITSDetTypeRec::SetDefaults(){
337
338 //Set defaults for segmentation and response
339
8e50d897 340 if(!GetITSgeom()){
341 Warning("SetDefaults","null pointer to AliITSgeomGeom !");
7d62fb64 342 return;
343 }
344
345 AliITSsegmentation* seg;
8ba39da9 346 if(!GetCalibration()) {AliFatal("Exit");exit(0);}
7d62fb64 347
348 for(Int_t dettype=0;dettype<fgkNdettypes;dettype++){
349 if(dettype==0){
d24bc9d6 350 seg = new AliITSsegmentationSPD();
7d62fb64 351 SetSegmentationModel(dettype,seg);
3a7c3e6d 352 SetDigitClassName(dettype,"AliITSdigitSPD");
353 SetClusterClassName(dettype,"AliITSRawClusterSPD");
354
7d62fb64 355 }
356 if(dettype==1){
8e50d897 357 AliITSCalibrationSDD* res=(AliITSCalibrationSDD*) GetCalibrationModel(GetITSgeom()->GetStartSDD());
d24bc9d6 358 seg = new AliITSsegmentationSDD();
7d62fb64 359 SetSegmentationModel(dettype,seg);
fcf95fc7 360 const char *kopt = ((AliITSresponseSDD*)res->GetResponse())->ZeroSuppOption();
20f3f947 361 if(!strstr(kopt,"ZS")) SetDigitClassName(dettype,"AliITSdigit");
3a7c3e6d 362 else SetDigitClassName(dettype,"AliITSdigitSDD");
363 SetClusterClassName(dettype,"AliITSRawClusterSDD");
364
7d62fb64 365 }
366 if(dettype==2){
d24bc9d6 367 AliITSsegmentationSSD* seg2 = new AliITSsegmentationSSD();
7d62fb64 368 seg2->SetAngles(0.0075,0.0275); // strip angels rad P and N side.
369 seg2->SetAnglesLay5(0.0075,0.0275); // strip angels rad P and N side.
370 seg2->SetAnglesLay6(0.0275,0.0075); // strip angels rad P and N side.
7d62fb64 371 SetSegmentationModel(dettype,seg2);
7d62fb64 372 SetDigitClassName(dettype,"AliITSdigitSSD");
373 SetClusterClassName(dettype,"AliITSRawClusterSSD");
374 }
7d62fb64 375 }
7d62fb64 376
377}
8ba39da9 378//______________________________________________________________________
379Bool_t AliITSDetTypeRec::GetCalibration() {
380 // Get Default calibration if a storage is not defined.
381
b17dae48 382 if(!fFirstcall){
383 AliITSCalibration* cal = GetCalibrationModel(0);
384 if(cal)return kTRUE;
385 }
386 else {
387 fFirstcall = kFALSE;
388 }
06232459 389
6cae184e 390 // SetRunNumber((Int_t)AliCDBManager::Instance()->GetRun());
391 // Int_t run=GetRunNumber();
b17dae48 392
6cae184e 393 Bool_t cacheStatus = AliCDBManager::Instance()->GetCacheFlag();
b17dae48 394 if (fCalibration==0) {
395 fCalibration = new TObjArray(GetITSgeom()->GetIndexMax());
6cae184e 396 fCalibration->SetOwner(!cacheStatus);
b17dae48 397 fCalibration->Clear();
398 }
399
8d37cc87 400 // dead pixel are not used for local reconstruction
401 AliCDBEntry *entrySPD = AliCDBManager::Instance()->Get("ITS/Calib/SPDNoisy");
6cae184e 402 AliCDBEntry *entrySDD = AliCDBManager::Instance()->Get("ITS/Calib/CalibSDD");
fb4dfab9 403
404 // AliCDBEntry *entrySSD = AliCDBManager::Instance()->Get("ITS/Calib/CalibSSD");
405 AliCDBEntry *entryNoiseSSD = AliCDBManager::Instance()->Get("ITS/Calib/NoiseSSD");
b42cfa25 406 AliCDBEntry *entryPedestalSSD = AliCDBManager::Instance()->Get("ITS/Calib/PedestalSSD");
fb4dfab9 407 AliCDBEntry *entryGainSSD = AliCDBManager::Instance()->Get("ITS/Calib/GainSSD");
408 AliCDBEntry *entryBadChannelsSSD = AliCDBManager::Instance()->Get("ITS/Calib/BadChannelsSSD");
ed446fa3 409 // Entry for the AliITSRecoParam object
410 AliCDBEntry *entryRP = AliCDBManager::Instance()->Get("ITS/Calib/RecoParam/");
6cae184e 411 AliCDBEntry *entry2SPD = AliCDBManager::Instance()->Get("ITS/Calib/RespSPD");
412 AliCDBEntry *entry2SDD = AliCDBManager::Instance()->Get("ITS/Calib/RespSDD");
413 AliCDBEntry *entry2SSD = AliCDBManager::Instance()->Get("ITS/Calib/RespSSD");
18da6e54 414 AliCDBEntry *drSpSDD = AliCDBManager::Instance()->Get("ITS/Calib/DriftSpeedSDD");
979b5a5f 415 AliCDBEntry *ddlMapSDD = AliCDBManager::Instance()->Get("ITS/Calib/DDLMapSDD");
028a3709 416 AliCDBEntry *mapASDD = AliCDBManager::Instance()->Get("ITS/Calib/MapsAnodeSDD");
417 AliCDBEntry *mapTSDD = AliCDBManager::Instance()->Get("ITS/Calib/MapsTimeSDD");
06232459 418
622d99ba 419 if(!entrySPD || !entrySDD || !entryNoiseSSD || !entryGainSSD ||
b42cfa25 420 !entryPedestalSSD || !entryBadChannelsSSD ||
ed446fa3 421 !entry2SPD || !entry2SDD || !entry2SSD || !drSpSDD || !ddlMapSDD || !mapASDD || !mapTSDD || !entryRP){
566f73ca 422 AliFatal("Calibration object retrieval failed! ");
e8c4cf33 423 return kFALSE;
566f73ca 424 }
425
b17dae48 426 TObjArray *calSPD = (TObjArray *)entrySPD->GetObject();
6cae184e 427 if(!cacheStatus)entrySPD->SetObject(NULL);
8ba39da9 428 entrySPD->SetOwner(kTRUE);
fcf95fc7 429
430 AliITSresponseSPD *pSPD = (AliITSresponseSPD*)entry2SPD->GetObject();
6cae184e 431 if(!cacheStatus)entry2SPD->SetObject(NULL);
fcf95fc7 432 entry2SPD->SetOwner(kTRUE);
433
b17dae48 434 TObjArray *calSDD = (TObjArray *)entrySDD->GetObject();
6cae184e 435 if(!cacheStatus)entrySDD->SetObject(NULL);
8ba39da9 436 entrySDD->SetOwner(kTRUE);
fcf95fc7 437
438 AliITSresponseSDD *pSDD = (AliITSresponseSDD*)entry2SDD->GetObject();
6cae184e 439 if(!cacheStatus)entry2SDD->SetObject(NULL);
fcf95fc7 440 entry2SDD->SetOwner(kTRUE);
441
18da6e54 442 TObjArray *drSp = (TObjArray *)drSpSDD->GetObject();
443 if(!cacheStatus)drSpSDD->SetObject(NULL);
444 drSpSDD->SetOwner(kTRUE);
445
979b5a5f 446 AliITSDDLModuleMapSDD *ddlsdd=(AliITSDDLModuleMapSDD*)ddlMapSDD->GetObject();
447 if(!cacheStatus)ddlMapSDD->SetObject(NULL);
448 ddlMapSDD->SetOwner(kTRUE);
449
028a3709 450 TObjArray *mapAn = (TObjArray *)mapASDD->GetObject();
451 if(!cacheStatus)mapASDD->SetObject(NULL);
452 mapASDD->SetOwner(kTRUE);
453
454 TObjArray *mapT = (TObjArray *)mapTSDD->GetObject();
455 if(!cacheStatus)mapTSDD->SetObject(NULL);
456 mapTSDD->SetOwner(kTRUE);
457
fb4dfab9 458 TObjArray *noiseSSD = (TObjArray *)entryNoiseSSD->GetObject();
459 if(!cacheStatus)entryNoiseSSD->SetObject(NULL);
460 entryNoiseSSD->SetOwner(kTRUE);
461
b42cfa25 462 TObjArray *pedestalSSD = (TObjArray *)entryPedestalSSD->GetObject();
463 if(!cacheStatus)entryPedestalSSD->SetObject(NULL);
464 entryPedestalSSD->SetOwner(kTRUE);
465
fb4dfab9 466 TObjArray *gainSSD = (TObjArray *)entryGainSSD->GetObject();
467 if(!cacheStatus)entryGainSSD->SetObject(NULL);
468 entryGainSSD->SetOwner(kTRUE);
469
470 TObjArray *badchannelsSSD = (TObjArray *)entryBadChannelsSSD->GetObject();
471 if(!cacheStatus)entryBadChannelsSSD->SetObject(NULL);
472 entryBadChannelsSSD->SetOwner(kTRUE);
fcf95fc7 473
474 AliITSresponseSSD *pSSD = (AliITSresponseSSD*)entry2SSD->GetObject();
6cae184e 475 if(!cacheStatus)entry2SSD->SetObject(NULL);
fcf95fc7 476 entry2SSD->SetOwner(kTRUE);
477
ed446fa3 478 AliITSRecoParam *rp = (AliITSRecoParam*)entryRP->GetObject();
479 if(!cacheStatus)entryRP->SetObject(NULL);
480 entryRP->SetOwner(kTRUE);
481 if(!AliITSReconstructor::GetRecoParam()){
482 AliITSReconstructor::SetRecoParam(rp);
483 }
484 else {
485 AliWarning("AliITSRecoPAram object has been already set in AliITSReconstructor. The OCDB instance will not be used\n");
486 }
487
b17dae48 488 // DB entries are deleted. In this way metadeta objects are deleted as well
6cae184e 489 if(!cacheStatus){
b17dae48 490 delete entrySPD;
491 delete entrySDD;
fb4dfab9 492 delete entryNoiseSSD;
b42cfa25 493 delete entryPedestalSSD;
fb4dfab9 494 delete entryGainSSD;
495 delete entryBadChannelsSSD;
b17dae48 496 delete entry2SPD;
497 delete entry2SDD;
498 delete entry2SSD;
028a3709 499 delete mapASDD;
500 delete mapTSDD;
18da6e54 501 delete drSpSDD;
979b5a5f 502 delete ddlMapSDD;
b17dae48 503 }
06232459 504
622d99ba 505 if ((!pSPD)||(!pSDD)||(!pSSD) || (!calSPD) || (!calSDD) || (!drSp) || (!ddlsdd)
028a3709 506 || (!mapAn) || (!mapT) || (!noiseSSD)|| (!gainSSD)|| (!badchannelsSSD)) {
8ba39da9 507 AliWarning("Can not get calibration from calibration database !");
508 return kFALSE;
509 }
fcf95fc7 510
b17dae48 511 fNMod[0] = calSPD->GetEntries();
512 fNMod[1] = calSDD->GetEntries();
fb4dfab9 513 fNMod[2] = noiseSSD->GetEntries();
8ba39da9 514 AliInfo(Form("%i SPD, %i SDD and %i SSD in calibration database",
515 fNMod[0], fNMod[1], fNMod[2]));
622d99ba 516 AliITSCalibration* cal;
8ba39da9 517 for (Int_t i=0; i<fNMod[0]; i++) {
622d99ba 518 cal = (AliITSCalibration*) calSPD->At(i);
519 cal->SetResponse((AliITSresponse*)pSPD);
520 SetCalibrationModel(i, cal);
028a3709 521 }
140e5249 522
523 fDDLMapSDD->SetDDLMap(ddlsdd);
524 for(Int_t iddl=0; iddl<AliITSDDLModuleMapSDD::GetNDDLs(); iddl++){
525 for(Int_t icar=0; icar<AliITSDDLModuleMapSDD::GetNModPerDDL();icar++){
526 Int_t iMod=fDDLMapSDD->GetModuleNumber(iddl,icar);
527 if(iMod==-1) continue;
6cc25d49 528 Int_t i=iMod - fgkDefaultNModulesSPD;
140e5249 529 cal = (AliITSCalibration*) calSDD->At(i);
530 cal->SetResponse((AliITSresponse*)pSDD);
531 Int_t i0=2*i;
532 Int_t i1=1+2*i;
533 AliITSDriftSpeedArraySDD* arr0 = (AliITSDriftSpeedArraySDD*) drSp->At(i0);
534 AliITSMapSDD* ma0 = (AliITSMapSDD*)mapAn->At(i0);
535 AliITSMapSDD* mt0 = (AliITSMapSDD*)mapT->At(i0);
536 AliITSDriftSpeedArraySDD* arr1 = (AliITSDriftSpeedArraySDD*) drSp->At(i1);
537 AliITSMapSDD* ma1 = (AliITSMapSDD*)mapAn->At(i1);
538 AliITSMapSDD* mt1 = (AliITSMapSDD*)mapT->At(i1);
539 cal->SetDriftSpeed(0,arr0);
540 cal->SetDriftSpeed(1,arr1);
541 cal->SetMapA(0,ma0);
542 cal->SetMapA(1,ma1);
543 cal->SetMapT(0,mt0);
544 cal->SetMapT(1,mt1);
545 SetCalibrationModel(iMod, cal);
546 }
028a3709 547 }
8ba39da9 548 for (Int_t i=0; i<fNMod[2]; i++) {
fb4dfab9 549
550 AliITSCalibrationSSD *calibSSD = new AliITSCalibrationSSD();
551 calibSSD->SetResponse((AliITSresponse*)pSSD);
552
553 AliITSNoiseSSD *noise = (AliITSNoiseSSD*) (noiseSSD->At(i));
554 calibSSD->SetNoise(noise);
b42cfa25 555 AliITSPedestalSSD *pedestal = (AliITSPedestalSSD*) (pedestalSSD->At(i));
556 calibSSD->SetPedestal(pedestal);
fb4dfab9 557 AliITSGainSSD *gain = (AliITSGainSSD*) (gainSSD->At(i));
558 calibSSD->SetGain(gain);
559 AliITSBadChannelsSSD *bad = (AliITSBadChannelsSSD*) (badchannelsSSD->At(i));
560 calibSSD->SetBadChannels(bad);
561
6cc25d49 562 Int_t iMod = i + fgkDefaultNModulesSPD + fgkDefaultNModulesSDD;
fb4dfab9 563 SetCalibrationModel(iMod, calibSSD);
8ba39da9 564 }
565
566 return kTRUE;
567}
568
7d62fb64 569
570//________________________________________________________________
571void AliITSDetTypeRec::SetDefaultClusterFinders(){
572
573 //set defaults for standard cluster finder
574
8e50d897 575 if(!GetITSgeom()){
576 Warning("SetDefaults","null pointer to AliITSgeom!");
7d62fb64 577 return;
578 }
579
7d62fb64 580 AliITSClusterFinder *clf;
581
6cae184e 582 for(Int_t dettype=0;dettype<fgkNdettypes;dettype++){
7d62fb64 583 //SPD
584 if(dettype==0){
585 if(!GetReconstructionModel(dettype)){
7d62fb64 586 TClonesArray *dig0 = DigitsAddress(0);
587 TClonesArray *rec0 = ClustersAddress(0);
8ba39da9 588 clf = new AliITSClusterFinderSPD(this,dig0,rec0);
7d62fb64 589 SetReconstructionModel(dettype,clf);
8ba39da9 590
7d62fb64 591 }
592 }
8ba39da9 593
7d62fb64 594 //SDD
595 if(dettype==1){
596 if(!GetReconstructionModel(dettype)){
7d62fb64 597 TClonesArray *dig1 = DigitsAddress(1);
598 TClonesArray *rec1 = ClustersAddress(1);
8ba39da9 599 clf = new AliITSClusterFinderSDD(this,dig1,rec1);
7d62fb64 600 SetReconstructionModel(dettype,clf);
601 }
602
603 }
604 //SSD
605 if(dettype==2){
606 if(!GetReconstructionModel(dettype)){
7d62fb64 607 TClonesArray* dig2 = DigitsAddress(2);
8ba39da9 608 clf = new AliITSClusterFinderSSD(this,dig2);
7d62fb64 609 SetReconstructionModel(dettype,clf);
610 }
611 }
612
613 }
614
615
616}
617
618//________________________________________________________________
3a7c3e6d 619void AliITSDetTypeRec::SetDefaultClusterFindersV2(Bool_t rawdata){
7d62fb64 620
621 //Set defaults for cluster finder V2
622
8e50d897 623 if(!GetITSgeom()){
624 Warning("SetDefaults","Null pointer to AliITSgeom !");
7d62fb64 625 return;
626 }
627
7d62fb64 628 AliITSClusterFinder *clf;
629
3a7c3e6d 630 for(Int_t dettype=0;dettype<fgkNdettypes;dettype++){
7d62fb64 631 //SPD
632 if(dettype==0){
633 if(!GetReconstructionModel(dettype)){
8ba39da9 634 clf = new AliITSClusterFinderV2SPD(this);
7d62fb64 635 clf->InitGeometry();
3a7c3e6d 636 if(!rawdata) clf->SetDigits(DigitsAddress(0));
7d62fb64 637 SetReconstructionModel(dettype,clf);
638
639 }
640 }
641 //SDD
642 if(dettype==1){
643 if(!GetReconstructionModel(dettype)){
8ba39da9 644 clf = new AliITSClusterFinderV2SDD(this);
645 clf->InitGeometry();
3a7c3e6d 646 if(!rawdata) clf->SetDigits(DigitsAddress(1));
7d62fb64 647 SetReconstructionModel(dettype,clf);
648 }
649
650 }
651
652 //SSD
653 if(dettype==2){
654 if(!GetReconstructionModel(dettype)){
8ba39da9 655 clf = new AliITSClusterFinderV2SSD(this);
7d62fb64 656 clf->InitGeometry();
3a7c3e6d 657 if(!rawdata) clf->SetDigits(DigitsAddress(2));
7d62fb64 658 SetReconstructionModel(dettype,clf);
659 }
660 }
661
662 }
663
664}
665//______________________________________________________________________
6cae184e 666void AliITSDetTypeRec::MakeBranch(TTree* tree, Option_t* option){
7d62fb64 667
668 //Creates branches for clusters and recpoints
669 Bool_t cR = (strstr(option,"R")!=0);
670 Bool_t cRF = (strstr(option,"RF")!=0);
7d62fb64 671
672 if(cRF)cR = kFALSE;
673
6cae184e 674 if(cR) MakeBranchR(tree);
675 if(cRF) MakeBranchRF(tree);
7d62fb64 676
677}
678
679//___________________________________________________________________
680void AliITSDetTypeRec::AddCluster(Int_t id, AliITSRawCluster *c){
681
682 // Adds a raw cluster to the list
683 TClonesArray &lc = *((TClonesArray*)fCtype->At(id));
684 switch(id){
685 case 0:
686 new(lc[fNctype[id]++]) AliITSRawClusterSPD(*((AliITSRawClusterSPD*)c));
687 break;
688 case 1:
689 new(lc[fNctype[id]++]) AliITSRawClusterSDD(*((AliITSRawClusterSDD*)c));
690 break;
691 case 2:
692 new(lc[fNctype[id]++]) AliITSRawClusterSSD(*((AliITSRawClusterSSD*)c));
693 break;
694 }
695}
696//___________________________________________________________________
697void AliITSDetTypeRec::ResetDigits(){
698 // Reset number of digits and the digits array for the ITS detector.
699
700 if(!fDigits) return;
701 for(Int_t i=0;i<fgkNdettypes;i++){
702 ResetDigits(i);
703 }
704}
705//___________________________________________________________________
706void AliITSDetTypeRec::ResetDigits(Int_t branch){
707 // Reset number of digits and the digits array for this branch.
708
709 if(fDigits->At(branch)) ((TClonesArray*)fDigits->At(branch))->Clear();
710 if(fNdtype) fNdtype[branch]=0;
711
712}
713
714//__________________________________________________________________
715void AliITSDetTypeRec::ResetClusters(){
716
717 //Resets number of clusters and the cluster array
718 for(Int_t i=0;i<fgkNdettypes;i++){
719 ResetClusters(i);
720 }
721}
722
723//__________________________________________________________________
724void AliITSDetTypeRec::ResetClusters(Int_t i){
725
726 //Resets number of clusters and the cluster array for this branch
727
728 if (fCtype->At(i)) ((TClonesArray*)fCtype->At(i))->Clear();
729 if (fNctype) fNctype[i]=0;
730}
731//__________________________________________________________________
6cae184e 732void AliITSDetTypeRec::MakeBranchR(TTree *treeR, Option_t *opt){
7d62fb64 733
734 //Creates tree branches for recpoints
735 // Inputs:
736 // cont char *file File name where RecPoints branch is to be written
737 // to. If blank it write the SDigits to the same
738 // file in which the Hits were found.
739
7d62fb64 740 Int_t buffsz = 4000;
741 char branchname[30];
742
743 // only one branch for rec points for all detector types
744 Bool_t oFast= (strstr(opt,"Fast")!=0);
7d62fb64 745
746 Char_t detname[10] = "ITS";
747
748
749 if(oFast){
750 sprintf(branchname,"%sRecPointsF",detname);
7d62fb64 751 } else {
752 sprintf(branchname,"%sRecPoints",detname);
753 }
754
00a7cc50 755 if(!fRecPoints)fRecPoints = new TClonesArray("AliITSRecPoint",1000);
6cae184e 756 if (treeR)
757 MakeBranchInTree(treeR,branchname,0,&fRecPoints,buffsz,99);
7d62fb64 758}
759//______________________________________________________________________
760void AliITSDetTypeRec::SetTreeAddressR(TTree *treeR){
761 // Set branch address for the Reconstructed points Trees.
3b9df642 762 // Inputs:
7d62fb64 763 // TTree *treeR Tree containing the RecPoints.
3b9df642 764 // Outputs:
7d62fb64 765 // none.
3b9df642 766 // Return:
7d62fb64 767
768 char branchname[30];
769 Char_t namedet[10]="ITS";
770
771 if(!treeR) return;
772 if(fRecPoints==0x0) fRecPoints = new TClonesArray("AliITSRecPoint",1000);
00a7cc50 773 TBranch *branch;
774 sprintf(branchname,"%sRecPoints",namedet);
775 branch = treeR->GetBranch(branchname);
776 if (branch) {
777 branch->SetAddress(&fRecPoints);
778 }else {
779 sprintf(branchname,"%sRecPointsF",namedet);
7d62fb64 780 branch = treeR->GetBranch(branchname);
781 if (branch) {
00a7cc50 782 branch->SetAddress(&fRecPoints);
7d62fb64 783 }
00a7cc50 784
7d62fb64 785 }
3b9df642 786}
7d62fb64 787//____________________________________________________________________
788void AliITSDetTypeRec::AddRecPoint(const AliITSRecPoint &r){
789 // Add a reconstructed space point to the list
790 // Inputs:
791 // const AliITSRecPoint &r RecPoint class to be added to the tree
792 // of reconstructed points TreeR.
793 // Outputs:
794 // none.
795 // Return:
796 // none.
797
798 TClonesArray &lrecp = *fRecPoints;
799 new(lrecp[fNRecPoints++]) AliITSRecPoint(r);
800}
7d62fb64 801
802//______________________________________________________________________
6cae184e 803void AliITSDetTypeRec::DigitsToRecPoints(TTree *treeD,TTree *treeR,Int_t lastentry,Option_t *opt, Bool_t v2){
7d62fb64 804 // cluster finding and reconstruction of space points
805 // the condition below will disappear when the geom class will be
806 // initialized for all versions - for the moment it is only for v5 !
807 // 7 is the SDD beam test version
808 // Inputs:
6cae184e 809 // TTree *treeD Digits tree
810 // TTree *treeR Clusters tree
7d62fb64 811 // Int_t lastentry Offset for module when not all of the modules
812 // are processed.
813 // Option_t *opt String indicating which ITS sub-detectors should
814 // be processed. If ="All" then all of the ITS
815 // sub detectors are processed.
816
7d62fb64 817 const char *all = strstr(opt,"All");
818 const char *det[3] = {strstr(opt,"SPD"),strstr(opt,"SDD"),
819 strstr(opt,"SSD")};
00a7cc50 820 if(!v2) {
821 SetDefaultClusterFinders();
822 AliInfo("Original cluster finder has been selected\n");
823 }
824 else {
825 SetDefaultClusterFindersV2();
826 AliInfo("V2 cluster finder has been selected \n");
827 }
7d62fb64 828
7d62fb64 829 AliITSClusterFinder *rec = 0;
830 Int_t id,module,first=0;
8e50d897 831 for(module=0;module<GetITSgeom()->GetIndexMax();module++){
832 id = GetITSgeom()->GetModuleType(module);
7d62fb64 833 if (!all && !det[id]) continue;
8e50d897 834 if(det[id]) first = GetITSgeom()->GetStartDet(id);
7d62fb64 835 rec = (AliITSClusterFinder*)GetReconstructionModel(id);
836 TClonesArray *itsDigits = DigitsAddress(id);
6cae184e 837 if (!rec)
838 AliFatal("The reconstruction class was not instanciated!");
5e5bc8f1 839 ResetDigits(); // MvL: Not sure we neeed this when rereading anyways
7d62fb64 840 if (all) {
6cae184e 841 treeD->GetEvent(lastentry+module);
7d62fb64 842 }else {
6cae184e 843 treeD->GetEvent(lastentry+(module-first));
7d62fb64 844 }
845 Int_t ndigits = itsDigits->GetEntriesFast();
846 if(ndigits>0){
847 rec->SetDetTypeRec(this);
7d62fb64 848 rec->SetDigits(DigitsAddress(id));
6cae184e 849 // rec->SetClusters(ClustersAddress(id));
7d62fb64 850 rec->FindRawClusters(module);
851 } // end if
6cae184e 852 treeR->Fill();
7d62fb64 853 ResetRecPoints();
7d62fb64 854 ResetClusters();
855 }
7d62fb64 856}
857//______________________________________________________________________
8484b32d 858void AliITSDetTypeRec::DigitsToRecPoints(AliRawReader* rawReader,TTree *treeR,Option_t *opt){
7d62fb64 859 // cluster finding and reconstruction of space points
860 // the condition below will disappear when the geom class will be
861 // initialized for all versions - for the moment it is only for v5 !
862 // 7 is the SDD beam test version
863 // Inputs:
6cae184e 864 // AliRawReader *rawReader Pointer to the raw-data reader
865 // TTree *treeR Clusters tree
7d62fb64 866 // Outputs:
867 // none.
868 // Return:
869 // none.
8484b32d 870 const char *all = strstr(opt,"All");
871 const char *det[3] = {strstr(opt,"SPD"),strstr(opt,"SDD"),
872 strstr(opt,"SSD")};
7d62fb64 873 AliITSClusterFinderV2 *rec = 0;
874 Int_t id=0;
875
00a7cc50 876 TClonesArray *array=new TClonesArray("AliITSRecPoint",1000);
6cae184e 877 TBranch *branch = treeR->Branch("ITSRecPoints",&array);
7d62fb64 878 delete array;
879
8e50d897 880 TClonesArray** clusters = new TClonesArray*[GetITSgeom()->GetIndexMax()];
881 for (Int_t iModule = 0; iModule < GetITSgeom()->GetIndexMax(); iModule++) {
7d62fb64 882 clusters[iModule] = NULL;
883 }
884 for(id=0;id<3;id++){
8484b32d 885 if (!all && !det[id]) continue;
7d62fb64 886 rec = (AliITSClusterFinderV2*)GetReconstructionModel(id);
c157c94e 887 if (!rec)
888 AliFatal("The reconstruction class was not instanciated");
6cae184e 889 rec->SetDetTypeRec(this);
7d62fb64 890 rec->RawdataToClusters(rawReader,clusters);
891 }
892 Int_t nClusters =0;
c157c94e 893 TClonesArray *emptyArray=new TClonesArray("AliITSRecPoint");
8e50d897 894 for(Int_t iModule=0;iModule<GetITSgeom()->GetIndexMax();iModule++){
8484b32d 895 id = GetITSgeom()->GetModuleType(iModule);
896 if (!all && !det[id]) continue;
7d62fb64 897 array = clusters[iModule];
898 if(!array){
c157c94e 899 AliDebug(1,Form("data for module %d missing!",iModule));
900 array = emptyArray;
7d62fb64 901 }
6cae184e 902 branch->SetAddress(&array);
903 treeR->Fill();
7d62fb64 904 nClusters+=array->GetEntriesFast();
5ef4644f 905
906 if (array != emptyArray) {
907 array->Delete();
908 delete array;
909 }
7d62fb64 910 }
c157c94e 911 delete emptyArray;
912
7d62fb64 913 delete[] clusters;
00a7cc50 914 Info("DigitsToRecPoints", "total number of found recpoints in ITS: %d\n",
7d62fb64 915 nClusters);
916
917}
918
8ba39da9 919