]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALReconstructor.cxx
Bug fix: using the mapping from CDB
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALReconstructor.cxx
CommitLineData
f6019cda 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
18//_________________________________________________________________________
fa42b1f3 19//--
20//-- Yves Schutz (SUBATECH)
f6019cda 21// Reconstruction class. Redesigned from the old AliReconstructionner class and
22// derived from STEER/AliReconstructor.
23//
24// --- ROOT system ---
25
26// --- Standard library ---
27
28// --- AliRoot header files ---
f6019cda 29#include "AliEMCALReconstructor.h"
5dee926e 30
af885e0f 31#include "AliESDEvent.h"
89ffc0b0 32#include "AliESDCaloCluster.h"
0e7c6655 33#include "AliESDCaloCells.h"
6a0cf740 34#include "AliESDtrack.h"
5dee926e 35#include "AliEMCALLoader.h"
98e9578e 36#include "AliEMCALRawUtils.h"
0e7c6655 37#include "AliEMCALDigit.h"
f6019cda 38#include "AliEMCALClusterizerv1.h"
5dee926e 39#include "AliEMCALRecPoint.h"
dc293ae9 40#include "AliEMCALPID.h"
0964c2e9 41#include "AliEMCALTrigger.h"
1d59832c 42#include "AliRawReader.h"
fa42b1f3 43#include "AliCDBEntry.h"
44#include "AliCDBManager.h"
45#include "AliEMCALRecParam.h"
c47157cd 46// to be removed - it is here just because of geom
47#include "AliRun.h"
48#include "AliRunLoader.h"
1d59832c 49
f6019cda 50ClassImp(AliEMCALReconstructor)
51
c47157cd 52AliEMCALRecParam* AliEMCALReconstructor::fgkRecParam = 0; // EMCAL rec. parameters
53
f6019cda 54//____________________________________________________________________________
18a21c7c 55AliEMCALReconstructor::AliEMCALReconstructor()
56 : fDebug(kFALSE)
f6019cda 57{
58 // ctor
0e7c6655 59
f6019cda 60}
61
0a4cb131 62//____________________________________________________________________________
18a21c7c 63AliEMCALReconstructor::AliEMCALReconstructor(const AliEMCALReconstructor & rec)
64 : AliReconstructor(rec),
65 fDebug(rec.fDebug)
0a4cb131 66{
67 //copy ctor
0a4cb131 68}
f6019cda 69
70//____________________________________________________________________________
71AliEMCALReconstructor::~AliEMCALReconstructor()
72{
73 // dtor
74}
75
fa42b1f3 76//____________________________________________________________________________
77void AliEMCALReconstructor::InitRecParam() const
78{
79 // Check if the instance of AliEMCALRecParam exists,
80 // if not, get it from OCDB if available, otherwise create a default one
81
82 if (!fgkRecParam && (AliCDBManager::Instance()->IsDefaultStorageSet())) {
83 AliCDBEntry *entry = (AliCDBEntry*)
84 AliCDBManager::Instance()->Get("EMCAL/Config/RecParam");
85 if (entry) fgkRecParam = (AliEMCALRecParam*) entry->GetObject();
86 }
87
88 if(!fgkRecParam){
89 AliWarning("The Reconstruction parameters for EMCAL nonitialized - Used default one");
90 fgkRecParam = new AliEMCALRecParam;
91 }
92}
93
f6019cda 94//____________________________________________________________________________
c47157cd 95void AliEMCALReconstructor::Reconstruct(TTree* digitsTree, TTree* clustersTree) const
f6019cda 96{
97 // method called by AliReconstruction;
98 // Only the clusterization is performed,; the rest of the reconstruction is done in FillESD because the track
99 // segment maker needs access to the AliESD object to retrieve the tracks reconstructed by
100 // the global tracking.
c47157cd 101 // Works on the current event.
fa42b1f3 102
103 InitRecParam();
c47157cd 104 AliEMCALClusterizerv1 clu;
105 clu.SetInput(digitsTree);
106 clu.SetOutput(clustersTree);
0e7c6655 107 if(Debug())
108 clu.Digits2Clusters("deb all") ;
109 else
110 clu.Digits2Clusters("") ;
111
f6019cda 112}
113
a68156e6 114//____________________________________________________________________________
c47157cd 115void AliEMCALReconstructor::ConvertDigits(AliRawReader* rawReader, TTree* digitsTree) const
98e9578e 116
a68156e6 117{
c47157cd 118 // Conversion from raw data to
119 // EMCAL digits.
120 // Works on a single-event basis
85c60a8e 121
98e9578e 122 rawReader->Reset() ;
98e9578e 123
c47157cd 124 TClonesArray *digitsArr = new TClonesArray("AliEMCALDigit",100);
125 Int_t bufsize = 32000;
126 digitsTree->Branch("EMCAL", &digitsArr, bufsize);
98e9578e 127
feedcab9 128 //Get Mapping RCU files from the AliEMCALRecParam
129 const TObjArray* maps = AliEMCALRecParam::GetMappings();
130 if(!maps) AliFatal("Cannot retrieve ALTRO mappings!!");
131
132 AliAltroMapping * mapping[2] ; // For the moment only 2
133 for(Int_t i = 0; i < 2; i++) {
134 mapping[i] = (AliAltroMapping*)maps->At(i);
135 }
136
c47157cd 137 static AliEMCALRawUtils rawUtils;
feedcab9 138 rawUtils.SetOption(GetOption());
139 rawUtils.Raw2Digits(rawReader,digitsArr,mapping);
c615db53 140
141 digitsTree->Fill();
142 digitsArr->Delete();
143 delete digitsArr;
144
a68156e6 145}
146
f6019cda 147//____________________________________________________________________________
0e7c6655 148void AliEMCALReconstructor::FillESD(TTree* digitsTree, TTree* clustersTree,
c47157cd 149 AliESDEvent* esd) const
f6019cda 150{
98e9578e 151 // Called by AliReconstruct after Reconstruct() and global tracking and vertexing
c47157cd 152 // Works on the current event
85c60a8e 153 // Creates AliESDCaloCluster from AliEMCALRecPoints
0e7c6655 154 // and AliESDCaloCells from AliEMCALDigits
155 // Also, fills ESD with calorimeter trigger information
92da3372 156
6a0cf740 157 //######################################################
0964c2e9 158 //#########Calculate trigger and set trigger info###########
6a0cf740 159 //######################################################
0964c2e9 160
161 AliEMCALTrigger tr ;
162 // tr.SetPatchSize(1);//create 4x4 patches
163 tr.Trigger();
164
165 Float_t maxAmp2x2 = tr.Get2x2MaxAmplitude();
166 Float_t maxAmpnxn = tr.GetnxnMaxAmplitude();
167 Float_t ampOutOfPatch2x2 = tr.Get2x2AmpOutOfPatch() ;
168 Float_t ampOutOfPatchnxn = tr.GetnxnAmpOutOfPatch() ;
169
98e9578e 170 AliEMCALGeometry * geom = 0;
c47157cd 171 AliRunLoader *runLoader = AliRunLoader::GetRunLoader();
98e9578e 172 if (runLoader->GetAliRun() && runLoader->GetAliRun()->GetDetector("EMCAL"))
173 geom = dynamic_cast<AliEMCAL*>(runLoader->GetAliRun()->GetDetector("EMCAL"))->GetGeometry();
174 if (geom == 0)
175 geom = AliEMCALGeometry::GetInstance(AliEMCALGeometry::GetDefaulGeometryName());
176
0964c2e9 177 Int_t iSM2x2 = tr.Get2x2SuperModule();
178 Int_t iSMnxn = tr.GetnxnSuperModule();
179 Int_t iCellPhi2x2 = tr.Get2x2CellPhi();
180 Int_t iCellPhinxn = tr.GetnxnCellPhi();
181 Int_t iCellEta2x2 = tr.Get2x2CellEta();
182 Int_t iCellEtanxn = tr.GetnxnCellEta();
183
184 AliDebug(2, Form("Trigger 2x2 max amp %f, out amp %f, SM %d, iphi %d ieta %d", maxAmp2x2, ampOutOfPatch2x2, iSM2x2,iCellPhi2x2, iCellEta2x2));
185 AliDebug(2, Form("Trigger 4x4 max amp %f , out amp %f, SM %d, iphi %d, ieta %d", maxAmpnxn, ampOutOfPatchnxn, iSMnxn,iCellPhinxn, iCellEtanxn));
186
187 TVector3 pos2x2(-1,-1,-1);
188 TVector3 posnxn(-1,-1,-1);
189
190 Int_t iAbsId2x2 = geom->GetAbsCellIdFromCellIndexes( iSM2x2, iCellPhi2x2, iCellEta2x2) ;
191 Int_t iAbsIdnxn = geom->GetAbsCellIdFromCellIndexes( iSMnxn, iCellPhinxn, iCellEtanxn) ;
192 geom->GetGlobal(iAbsId2x2, pos2x2);
193 geom->GetGlobal(iAbsIdnxn, posnxn);
194
195 TArrayF triggerPosition(6);
196 triggerPosition[0] = pos2x2(0) ;
197 triggerPosition[1] = pos2x2(1) ;
198 triggerPosition[2] = pos2x2(2) ;
199 triggerPosition[3] = posnxn(0) ;
200 triggerPosition[4] = posnxn(1) ;
201 triggerPosition[5] = posnxn(2) ;
202
203 TArrayF triggerAmplitudes(4);
204 triggerAmplitudes[0] = maxAmp2x2 ;
205 triggerAmplitudes[1] = ampOutOfPatch2x2 ;
206 triggerAmplitudes[2] = maxAmpnxn ;
207 triggerAmplitudes[3] = ampOutOfPatchnxn ;
208
209 esd->AddEMCALTriggerPosition(triggerPosition);
210 esd->AddEMCALTriggerAmplitudes(triggerAmplitudes);
211
0e7c6655 212 //########################################
213 //##############Fill CaloCells###############
214 //########################################
215
216 TClonesArray *digits = new TClonesArray("AliEMCALDigit",1000);
217 TBranch *branchdig = digitsTree->GetBranch("EMCAL");
218 if (!branchdig) {
219 AliError("can't get the branch with the PHOS digits !");
220 return;
221 }
222 branchdig->SetAddress(&digits);
223 digitsTree->GetEvent(0);
224 Int_t nDigits = digits->GetEntries(), idignew = 0 ;
225 AliDebug(1,Form("%d digits",nDigits));
226
227 AliESDCaloCells &emcCells = *(esd->GetEMCALCells());
228 emcCells.CreateContainer(nDigits);
229 emcCells.SetType(AliESDCaloCells::kEMCALCell);
230 for (Int_t idig = 0 ; idig < nDigits ; idig++) {
231 const AliEMCALDigit * dig = (const AliEMCALDigit*)digits->At(idig);
232 if(dig->GetAmp() > 0 ){
233 emcCells.SetCell(idignew,dig->GetId(),dig->GetAmp(), dig->GetTime());
234 idignew++;
235 }
236 }
237 emcCells.SetNumberOfCells(idignew);
238 emcCells.Sort();
239
240 //------------------------------------------------------------
241 //-----------------CLUSTERS-----------------------------
242 //------------------------------------------------------------
243 TObjArray *clusters = new TObjArray(100);
244 TBranch *branch = clustersTree->GetBranch("EMCALECARP");
245 branch->SetAddress(&clusters);
246 clustersTree->GetEvent(0);
247
248 Int_t nClusters = clusters->GetEntries(), nClustersNew=0;
249 AliDebug(1,Form("%d clusters",nClusters));
250 esd->SetFirstEMCALCluster(esd->GetNumberOfCaloClusters()); // Put after Phos clusters
251
6a0cf740 252 //######################################################
253 //#######################TRACK MATCHING###############
254 //######################################################
255 //Fill list of integers, each one is index of track to which the cluster belongs.
256
257 // step 1 - initialize array of matched track indexes
258 Int_t *matchedTrack = new Int_t[nClusters];
259 for (Int_t iclus = 0; iclus < nClusters; iclus++)
260 matchedTrack[iclus] = -1; // neg. index --> no matched track
261
262 // step 2, change the flag for all matched clusters found in tracks
263 Int_t iemcalMatch = -1;
264 Int_t endtpc = esd->GetNumberOfTracks();
265 for (Int_t itrack = 0; itrack < endtpc; itrack++) {
266 AliESDtrack * track = esd->GetTrack(itrack) ; // retrieve track
267 iemcalMatch = track->GetEMCALcluster();
65f4a419 268 if(iemcalMatch >= 0) matchedTrack[iemcalMatch] = itrack;
6a0cf740 269 }
0e7c6655 270
6a0cf740 271 //########################################
0e7c6655 272 //##############Fill CaloClusters############
6a0cf740 273 //########################################
0964c2e9 274
0e7c6655 275 esd->SetNumberOfEMCALClusters(nClusters);
5dee926e 276 for (Int_t iClust = 0 ; iClust < nClusters ; iClust++) {
c47157cd 277 const AliEMCALRecPoint * clust = (const AliEMCALRecPoint*)clusters->At(iClust);
8ada0ffe 278 //if(clust->GetClusterType()== AliESDCaloCluster::kEMCALClusterv1) nRP++; else nPC++;
85c60a8e 279 if (Debug()) clust->Print();
a7a5421e 280 // Get information from EMCAL reconstruction points
85c60a8e 281 Float_t xyz[3];
5dee926e 282 TVector3 gpos;
283 clust->GetGlobalPosition(gpos);
f6019cda 284 for (Int_t ixyz=0; ixyz<3; ixyz++)
5dee926e 285 xyz[ixyz] = gpos[ixyz];
8a11aef1 286 Float_t elipAxis[2];
92da3372 287 clust->GetElipsAxis(elipAxis);
7592dfc4 288
0e7c6655 289 //Create digits lists
290 Int_t cellMult = clust->GetMultiplicity();
291 //TArrayS digiList(digitMult);
292 Float_t *amplFloat = clust->GetEnergiesList();
293 Int_t *digitInts = clust->GetAbsId();
294 TArrayS absIdList(cellMult);
295 //Uncomment when unfolding is done
296 //TArrayD fracList(cellMult);
297
298 Int_t newCellMult = 0;
299 for (Int_t iCell=0; iCell<cellMult; iCell++) {
300 if (amplFloat[iCell] > 0) {
301 absIdList[newCellMult] = (UShort_t)(digitInts[iCell]);
302 //Uncomment when unfolding is done
303 //fracList[newCellMult] = amplFloat[iCell]/emcCells.GetCellAmplitude(digitInts[iCell]);
304 newCellMult++;
92da3372 305 }
92da3372 306 }
0e7c6655 307 absIdList.Set(newCellMult);
308 //Uncomment when unfolding is done
309 //fracList.Set(newCellMult);
310
311 if(newCellMult > 0) { // accept cluster if it has some digit
a7a5421e 312 nClustersNew++;
65721814 313 //Primaries
7592dfc4 314 Int_t parentMult = 0;
fa42b1f3 315 Int_t *parentList = clust->GetParents(parentMult);
0e7c6655 316
a7a5421e 317 // fills the ESDCaloCluster
318 AliESDCaloCluster * ec = new AliESDCaloCluster() ;
0e7c6655 319 ec->SetClusterType(AliESDCaloCluster::kEMCALClusterv1);
7592dfc4 320 ec->SetPosition(xyz);
321 ec->SetE(clust->GetEnergy());
0e7c6655 322 ec->SetNCells(newCellMult);
323 //Change type of list from short to ushort
324 UShort_t *newAbsIdList = new UShort_t[newCellMult];
325 //Uncomment when unfolding is done
326 //Double_t *newFracList = new Double_t[newCellMult];
327 for(Int_t i = 0; i < newCellMult ; i++) {
328 newAbsIdList[i]=absIdList[i];
329 //Uncomment when unfolding is done
330 //newFracList[i]=fracList[i];
331 }
332 ec->SetCellsAbsId(newAbsIdList);
333 //Uncomment when unfolding is done
334 //ec->SetCellsAmplitudeFraction(newFracList);
335
336 ec->SetClusterDisp(clust->GetDispersion());
337 ec->SetClusterChi2(-1); //not yet implemented
338 ec->SetM02(elipAxis[0]*elipAxis[0]) ;
339 ec->SetM20(elipAxis[1]*elipAxis[1]) ;
340 ec->SetM11(-1) ; //not yet implemented
341
342 TArrayI arrayTrackMatched(1);// Only one track, temporal solution.
343 arrayTrackMatched[0]= matchedTrack[iClust];
344 ec->AddTracksMatched(arrayTrackMatched);
345
346 TArrayI arrayParents(parentMult,parentList);
347 ec->AddLabels(arrayParents);
348
7592dfc4 349
6a0cf740 350 // add the cluster to the esd object
a7a5421e 351 esd->AddCaloCluster(ec);
352 delete ec;
0e7c6655 353 //delete [] newAbsIdList ;
354 //delete [] newFracList ;
a7a5421e 355 }
356 } // cycle on clusters
0e7c6655 357
17773e2e 358 delete [] matchedTrack;
0e7c6655 359
a7a5421e 360 esd->SetNumberOfEMCALClusters(nClustersNew);
5d9e7bd7 361 //if(nClustersNew != nClusters)
362 //printf(" ##### nClusters %i -> new %i ##### \n", nClusters, nClustersNew );
7592dfc4 363
dc293ae9 364 //Fill ESDCaloCluster with PID weights
0e7c6655 365 AliEMCALPID *pid = new AliEMCALPID;
366 //pid->SetPrintInfo(kTRUE);
367 pid->SetReconstructor(kTRUE);
368 pid->RunPID(esd);
369 delete pid;
370
f6019cda 371}
dc293ae9 372
98e9578e 373