]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDReconstructor.cxx
No optimization with gcc 4.3.0
[u/mrichter/AliRoot.git] / PMD / AliPMDReconstructor.cxx
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 ///////////////////////////////////////////////////////////////////////////////
17 //                                                                           //
18 // class for PMD reconstruction                                              //
19 //                                                                           //
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #include "Riostream.h"
23 #include "AliPMDReconstructor.h"
24 #include "AliRun.h"
25 #include "AliPMDClusterFinder.h"
26 #include "AliPMDtracker.h"
27 #include "AliRawReader.h"
28 #include "AliESDPmdTrack.h"
29 #include "AliESDEvent.h"
30 #include "AliLog.h"
31
32 ClassImp(AliPMDReconstructor)
33
34 // ------------------------------------------------------------------------ //
35
36 void AliPMDReconstructor::Reconstruct(AliRawReader *rawReader,
37                                       TTree *clustersTree) const
38 {
39 // reconstruct clusters from Raw Data
40
41   AliPMDClusterFinder pmdClus;
42   pmdClus.Digits2RecPoints(rawReader, clustersTree);
43
44 }
45
46 // ------------------------------------------------------------------------ //
47 void AliPMDReconstructor::Reconstruct(TTree *digitsTree,
48                                       TTree *clustersTree) const
49 {
50 // reconstruct clusters from Raw Data
51
52   AliPMDClusterFinder pmdClus;
53   pmdClus.Digits2RecPoints(digitsTree, clustersTree);
54
55 }
56
57 // ------------------------------------------------------------------------ //
58 void AliPMDReconstructor::FillESD(AliRawReader* /*rawReader*/,
59                                   TTree* clustersTree, AliESDEvent* esd) const
60 {
61   AliPMDtracker pmdtracker;
62   pmdtracker.LoadClusters(clustersTree);
63   pmdtracker.Clusters2Tracks(esd);
64 }
65 // ------------------------------------------------------------------------ //
66 void AliPMDReconstructor::FillESD(TTree * /*digitsTree*/,
67                                   TTree* clustersTree, AliESDEvent* esd) const
68 {
69   AliPMDtracker pmdtracker;
70   pmdtracker.LoadClusters(clustersTree);
71   pmdtracker.Clusters2Tracks(esd);
72 }
73
74