]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/doc/reconstruction.tex
Federico's contribution : introduction mecanics and hlt description
[u/mrichter/AliRoot.git] / EMCAL / doc / reconstruction.tex
CommitLineData
02582a78 1
2
3\section{Reconstruction code}
4
5
0eb9d398 6The energy deposited by the particles in the towers produces scintillating light that is propagated with optic fibers through the different layers to APD placed at the base of the cells. The APDs amplify the signal and generate an electronic pulse shape that is stored in the raw data format. From this pulse shape, we extract the signal amplitude and the arrival time. The pulse shape is fitted during the reconstruction via a parametrized function and TMinuit, and those 2 values are extracted.
02582a78 7
0eb9d398 8A particle produces signals in different towers (electromagnetic shower expands more than its Moli\`ere radius which is a cell size). The next step is the formation of clusters of cells that belong to the same particle, although depending on the energy, granularity, clusterization algorithm or event type, those clusters might have contributions from different particles. The default algorithm in pp collisions is a simple aggregation of neighboring cells until there is no more cells above a certain energy threshold (named {\it clusterizer V1}). In case of Pb-Pb collisions environment, where particle showers merge quite often, we apply another algorithm that aggregates cells to the clusters until reaching a cell with more energy than the precedent (named {\it clusterizer V2}). Depending on the analysis type, one might want to use one or the other clusterization type. For this reason, a re-clusterization is also possible at the analysis level. A last clusterizer is implemented, which makes 3x3 clusters. It has been used in jet analysis for instance in order to avoid biasing jet reconstruction where one is interested in the energy flow over a large area without explicit reconstruction of photon showers and where the driving consideration is that the wide clusterizer does not interfere with the jet finder. For $\pi^{0}$, $\eta$, and direct $\gamma$ analyses, {\it V2} is most likely preferable).
02582a78 9
0eb9d398 10Once the cluster is defined, we calculate cluster parameters, shower shape parameters, that will help at the analysis level to identify each cluster as one particle type. Also, we compare the cluster position information with the propagation of tracks measured in the central barrel to the EMCAL surface, to identify the clusters generated by charged particles.
02582a78 11
12The final analysis objects, ESDs and AODs, contain all the cluster and cell basic informations allowing to redo the clusterization if needed at the analysis level.
13
14%The class AliReconstruction manages this part. This step can
15%begin either from the Digits or from the Raw data. We can distinguish
16%different steps described in the following sections.
17
18
19\subsection{Offline data base access}
20
21How to create explained OCDB/OADB section.
22
23\subsubsection{Energy calibration}
24
25\subsubsection{Bad channels - Marie, Alexis}
26
27\subsubsection{Alignment - Marco}
28
29\subsection{Raw data fitting: from ADC sample to digits - David}
30
0eb9d398 31\begin{lstlisting}
02582a78 32AliEMCALRawUtils, AliCaloRawAnalyzer*, AliCalo*, AliEMCALDigit.
0eb9d398 33\end{lstlisting}
02582a78 34
35\subsection{Clusterization: From digits to clusters - Constantin, Adam}
36
0eb9d398 37\begin{lstlisting}
02582a78 38AliEMCALClusterizer*, AliEMCALRecPoint
0eb9d398 39\end{lstlisting}
02582a78 40
41\subsection{Cluster-Track matching - Rongrong, Shingo, Michael}
42
43Propagation of TPC tracks to EMCAL and selection of clusters as belonging to a track or not.
44
45\subsection{How to execute the reconstruction}
46
0eb9d398 47Executing the reconstruction is very similar to the simulation case, see the macro TestEMCALReconstruction.C (a bit more detailed than the one in \$ALICE\_ROOT/EMCAL/macros) :
02582a78 48
0eb9d398 49\begin{DDbox}{\linewidth}
50\begin{lstlisting}
51void TestEMCALReconstruction() {
02582a78 52
0eb9d398 53TString detector=``EMCAL TPC'';//Same function as in Simulation.C
02582a78 54
0eb9d398 55AliReconstruction rec; //Create reconstruction object
02582a78 56
0eb9d398 57//Making Tracking
58rec.SetRunTracking(detector) ;
02582a78 59
0eb9d398 60//Particle Reconstruction. Make Rec Points
61rec.SetRunReconstruction(detector);
02582a78 62
0eb9d398 63//read RAW data. Give directory where raw data is stored
64//rec.SetInput(``RawDataDirectory/raw.root");
02582a78 65
0eb9d398 66//Make vertex finder
67rec.SetRunVertexFinder(kFALSE) ; // false only if the tracking detectors are not included.
02582a78 68
0eb9d398 69//Fill ESD file with RecPoints information.
70rec.SetFillESD(detector) ;
02582a78 71
0eb9d398 72//Run Reconstruction
73rec.Run() ;
74}
75\end{lstlisting}
76\end{DDbox}
02582a78 77
78