]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALReconstructioner.cxx
Removed the SDigits and Digits steps. Reconstruction starts with Digits and ends...
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALReconstructioner.cxx
CommitLineData
6ddf6724 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//_________________________________________________________________________
19//*--
20//*-- Author: Gines Martinez & Yves Schutz (SUBATECH)
21//*-- Compleetely redesigned by Dmitri Peressounko (SUBATECH & RRC KI) March 2001
22/////////////////////////////////////////////////////////////////////////////////////
23// Wrapping class for reconstruction. Allows to produce reconstruction from
24// different steps: from previously produced hits,sdigits, etc. Each new reconstruction
d018ba66 25// flow (e.g. digits, made from them RecPoints,
6ddf6724 26// subsequently made RecParticles) are distinguished by the title of created branches. One can
27// use this title as a comment, see use case below.
28// Thanks to getters, one can set
29// parameters to reconstruction briks. The full set of parameters is saved in the
30// corresponding branch: e.g. parameters of clusterizer are stored in branch
d018ba66 31// TreeR::AliEMCALClusterizer with the same title as the branch containing the RecPoints. // TTree does not support overwriting, therefore one can not produce several
6ddf6724 32// branches with the same names and titles - use different titles.
33//
34// Use case:
35//
36// root [0] AliEMCALReconstructioner * r = new AliEMCALReconstructioner("galice.root")
37// // Set the header file
38// root [1] r->ExecuteTask()
39// // Make full chain of reconstruction
40//
41// // One can specify the title for each branch
42// root [2] r->SetBranchFileName("RecPoints","RecPoints1") ;
43//
44// // One can change parameters of reconstruction algorithms
45// root [3] r->GetClusterizer()->SetEmcLocalMaxCut(0.02)
46//
47// // One can specify the starting point of the reconstruction and title of all
48// // branches produced in this pass
49// root [4] r->StartFrom("AliEMCALClusterizer","Local max cut 0.02")
50// // means that will use already generated Digits and produce only RecPoints,
d018ba66 51// // and RecParticles
6ddf6724 52//
53// // And finally one can call ExecuteTask() with the following options
54// root [5] r->ExecuteTask("debug all timing")
85ef0957 55// // deb - prints the numbers of RecPoints and RecParticles
56// // deb all - prints in addition list of RecPoints and RecParticles
6ddf6724 57// // timing - prints benchmarking results
58///////////////////////////////////////////////////////////////////////////////////////////////////
59
60// --- ROOT system ---
61
6ddf6724 62// --- Standard library ---
6ddf6724 63
64// --- AliRoot header files ---
d018ba66 65#include "AliESD.h"
66#include "AliESDCaloTrack.h"
6ddf6724 67#include "AliEMCALReconstructioner.h"
68#include "AliEMCALClusterizerv1.h"
d018ba66 69#include "AliEMCALPIDv1.h"
70#include "AliEMCALGetter.h"
71
6ddf6724 72ClassImp(AliEMCALReconstructioner)
73
74//____________________________________________________________________________
75 AliEMCALReconstructioner::AliEMCALReconstructioner():TTask("AliEMCALReconstructioner","")
76{
77 // ctor
6ddf6724 78 fClusterizer = 0 ;
d018ba66 79 fPID = 0 ;
6ddf6724 80
81 fIsInitialized = kFALSE ;
82
83}
84
85//____________________________________________________________________________
d018ba66 86AliEMCALReconstructioner::AliEMCALReconstructioner(const char* evFoldName,const char * branchName):
87TTask("AliEMCALReconstructioner",evFoldName)
6ddf6724 88{
89 // ctor
d018ba66 90
85ef0957 91 AliEMCALGetter::Instance(evFoldName) ;
6ddf6724 92
93 fRecPointBranch=branchName ;
85ef0957 94 Info("ctor", "Creating Clusterizer") ;
95 fClusterizer = new AliEMCALClusterizerv1(evFoldName, GetTitle());
d018ba66 96 Add(fClusterizer);
6ddf6724 97
d018ba66 98 fRecPartBranch=branchName ;
85ef0957 99 Info("ctor", "Creating PID") ;
100 fPID = new AliEMCALPIDv1(evFoldName, GetTitle());
d018ba66 101 Add(fPID);
6ddf6724 102
103 fIsInitialized = kTRUE ;
6ddf6724 104}
105//____________________________________________________________________________
d018ba66 106void AliEMCALReconstructioner::Exec(Option_t *opt)
6ddf6724 107{
85ef0957 108 //check, if the names of branches, which should be made coincide with already
6ddf6724 109 //existing
d018ba66 110 if (!opt)
111 return ;
6ddf6724 112 if(!fIsInitialized)
113 Init() ;
114}
d018ba66 115//____________________________________________________________________________
116void AliEMCALReconstructioner:: Clusters2Tracks(Int_t ievent, AliESD *event)
117{
118 // Convert EMCAL reconstructed particles into ESD object for event# ievent.
119 // ESD object is returned as an argument event
120
121 if(!fIsInitialized) Init() ;
6ddf6724 122
d018ba66 123 fClusterizer->SetEventRange(ievent,ievent);
124 fClusterizer->ExecuteTask();
125
126 fPID ->SetEventRange(ievent,ievent);
127 fPID ->ExecuteTask();
128
129 AliEMCALGetter *gime = AliEMCALGetter::Instance();
130 TClonesArray *recParticles = gime->RecParticles();
131 Int_t nOfRecParticles = recParticles->GetEntries();
132 for (Int_t recpart=0; recpart<nOfRecParticles; recpart++) {
133 AliESDCaloTrack *ct = new AliESDCaloTrack((AliEMCALRecParticle*)recParticles->At(recpart));
134 event->AddCaloTrack(ct);
135 }
136
137}
6ddf6724 138//____________________________________________________________________________
139 void AliEMCALReconstructioner::Init()
140{
141 // initiliaze Reconstructioner if necessary: we can not do this in default constructor
142
143 if(!fIsInitialized){
6ddf6724 144
145 fRecPointBranch="Default" ;
d018ba66 146 fClusterizer = new AliEMCALClusterizerv1(GetTitle(),fRecPointBranch.Data());
6ddf6724 147 Add(fClusterizer) ;
148
d018ba66 149 fRecPartBranch="Default";
150 fPID = new AliEMCALPIDv1(GetTitle(),fRecPartBranch.Data()) ;
151 Add(fPID) ;
6ddf6724 152
153 fIsInitialized = kTRUE ;
d018ba66 154
6ddf6724 155 }
156}
157//____________________________________________________________________________
158AliEMCALReconstructioner::~AliEMCALReconstructioner()
159{
160 // Delete data members if any
6ddf6724 161}
162
85ef0957 163//____________________________________________________________________________
d018ba66 164void AliEMCALReconstructioner::Print()const {
6ddf6724 165 // Print reconstructioner data
166
d018ba66 167 TString message ;
168 message = "-----------------AliEMCALReconstructioner---------------\n" ;
169 message += " Reconstruction of the header file %s\n" ;
170 message += " with the following modules:\n" ;
6ddf6724 171
172 if(fClusterizer->IsActive()){
d018ba66 173 message += " (+) %s to branch %s\n" ;
174 }
175
176 if(fPID->IsActive()){
177 message += " (+) %s to branch %s\n" ;
178 }
179 Info("Print", message.Data(),
180 GetTitle(),
d018ba66 181 fClusterizer->GetName(), fRecPointBranch.Data(),
182 fPID->GetName(), fRecPartBranch.Data() ) ;
6ddf6724 183}