]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDReconstructor.cxx
added protection
[u/mrichter/AliRoot.git] / TRD / AliTRDReconstructor.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 /* $Id$ */
17
18 ///////////////////////////////////////////////////////////////////////////////
19 //                                                                           //
20 // Class for TRD reconstruction                                              //
21 //                                                                           //
22 ///////////////////////////////////////////////////////////////////////////////
23
24 #include <TFile.h>
25
26 #include "AliRunLoader.h"
27 #include "AliRawReader.h"
28 #include "AliLog.h"
29 #include "AliESDTrdTrack.h"
30 #include "AliESDEvent.h"
31
32 #include "AliTRDReconstructor.h"
33 #include "AliTRDclusterizer.h"
34 #include "AliTRDtracker.h"
35 #include "AliTRDpidESD.h"
36 #include "AliTRDgtuTrack.h"
37 #include "AliTRDrawData.h"
38 #include "AliTRDdigitsManager.h"
39 #include "AliTRDtrackerV1.h"
40 #include "AliTRDrecoParam.h"
41
42 ClassImp(AliTRDReconstructor)
43
44 Bool_t AliTRDReconstructor::fgkSeedingOn  = kFALSE;
45 Int_t  AliTRDReconstructor::fgStreamLevel = 0;      // Stream (debug) level
46
47 //_____________________________________________________________________________
48 void AliTRDReconstructor::ConvertDigits(AliRawReader *rawReader
49                                       , TTree *digitsTree) const
50 {
51   //
52   // Convert raw data digits into digit objects in a root tree
53   //
54
55   AliInfo("Convert raw data digits into digit objects [RawReader -> Digit TTree]");
56
57   AliTRDrawData rawData;
58   rawReader->Reset();
59   rawReader->Select("TRD");
60   AliTRDdigitsManager *manager = rawData.Raw2Digits(rawReader);
61   manager->MakeBranch(digitsTree);
62   manager->WriteDigits();
63   delete manager;
64
65 }
66
67 //_____________________________________________________________________________
68 void AliTRDReconstructor::Reconstruct(AliRawReader *rawReader
69                                     , TTree *clusterTree) const
70 {
71   //
72   // Reconstruct clusters
73   //
74
75   AliInfo("Reconstruct TRD clusters from RAW data [RawReader -> Cluster TTree]");
76
77   rawReader->Reset();
78   rawReader->Select("TRD");
79
80   // New (fast) cluster finder
81   AliTRDclusterizer clusterer("clusterer","TRD clusterizer");
82   clusterer.OpenOutput(clusterTree);
83   clusterer.SetAddLabels(kFALSE);
84   clusterer.Raw2ClustersChamber(rawReader);
85
86 }
87
88 //_____________________________________________________________________________
89 void AliTRDReconstructor::Reconstruct(TTree *digitsTree
90                                     , TTree *clusterTree) const
91 {
92   //
93   // Reconstruct clusters
94   //
95
96   AliInfo("Reconstruct TRD clusters from Digits [Digit TTree -> Cluster TTree]");
97
98   AliTRDclusterizer clusterer("clusterer","TRD clusterizer");
99   clusterer.OpenOutput(clusterTree);
100   clusterer.ReadDigits(digitsTree);
101   clusterer.MakeClusters();
102
103 }
104
105 //_____________________________________________________________________________
106 AliTracker *AliTRDReconstructor::CreateTracker() const
107 {
108   //
109   // Create a TRD tracker
110   //
111
112   //return new AliTRDtracker(NULL);
113
114   return new AliTRDtrackerV1(NULL, AliTRDrecoParam::GetLowFluxParam());
115
116 }
117
118 //_____________________________________________________________________________
119 void AliTRDReconstructor::FillESD(TTree* /*digitsTree*/
120                                 , TTree* /*clusterTree*/
121                                 , AliESDEvent* /*esd*/) const
122 {
123   //
124   // Fill ESD
125   //
126
127 }