]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONReconstructor.h
Removal of calls to static AliMUONReconstructor::GetRecoParam(). Thanks to Laurent...
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstructor.h
1 #ifndef ALIMUONRECONSTRUCTOR_H
2 #define ALIMUONRECONSTRUCTOR_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice                               */
6
7 // $Id$
8
9 /// \ingroup rec
10 /// \class AliMUONReconstructor
11 /// \brief Implementation of AliReconstructor for MUON (both tracker and trigger)
12 /// 
13 // Author Laurent Aphecetche, Subatech
14
15 #ifndef ALIRECONSTRUCTOR_H
16 #  include "AliReconstructor.h"
17 #endif
18
19 class AliMUONCalibrationData;
20 class AliMUONDigitCalibrator;
21 class AliMUONDigitMaker;
22 class AliMUONGeometryTransformer;
23 class AliMUONTracker;
24 class AliMUONTriggerCircuit;
25 class AliMUONVClusterFinder;
26 class AliMUONVClusterServer;
27 class AliMUONVClusterStore;
28 class AliMUONVDigitStore;
29 class AliMUONVTrackStore;
30 class AliMUONVTriggerStore;
31 class AliMUONVTriggerStore;
32 class TClonesArray;
33
34 #include "AliMUONRecoParam.h"
35
36 class AliMUONReconstructor : public AliReconstructor
37 {
38 public:
39   AliMUONReconstructor();
40   virtual ~AliMUONReconstructor();
41   
42   virtual Bool_t HasDigitConversion() const;
43
44   virtual void ConvertDigits(AliRawReader* rawReader, TTree* digitsTree) const;
45   
46   virtual void Reconstruct(AliRawReader* rawReader, TTree* clustersTree) const;
47   
48   virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
49   
50   virtual AliTracker* CreateTracker() const;
51   
52   static const AliMUONRecoParam* GetRecoParam() { return dynamic_cast<const AliMUONRecoParam*>(AliReconstructor::GetRecoParam(7)); }
53   
54   static AliMUONVClusterFinder* CreateClusterFinder(const char* clusterFinderType);
55
56 private:
57   /// Not implemented
58   AliMUONReconstructor(const AliMUONReconstructor&);
59   /// Not implemented
60   AliMUONReconstructor& operator=(const AliMUONReconstructor&);
61   
62   void ConvertDigits(AliRawReader* rawReader, 
63                      AliMUONVDigitStore* digitStore,
64                      AliMUONVTriggerStore* triggerStore) const;
65   void Calibrate(AliMUONVDigitStore& digitStore) const;
66   void CreateCalibrator() const;
67   void CreateDigitMaker() const;
68   void CreateTriggerCircuit() const;
69   void CreateClusterServer() const;
70   void FillTreeR(AliMUONVTriggerStore* triggerStore,
71                  TTree& clustersTree) const;
72   
73   AliMUONVDigitStore* DigitStore() const;
74   AliMUONVTriggerStore* TriggerStore() const;
75   
76 private:
77
78   mutable AliMUONDigitMaker* fDigitMaker; //!< Raw to Digits converter
79   AliMUONGeometryTransformer* fTransformer; //!< Geometry transformer (local<->global)
80   mutable AliMUONVDigitStore* fDigitStore; //!< Digit container
81   mutable AliMUONTriggerCircuit* fTriggerCircuit; //!< Trigger Circuit
82   mutable AliMUONCalibrationData* fCalibrationData; //!< Calibration data
83   mutable AliMUONDigitCalibrator* fDigitCalibrator; //!<  Digit to calibrate digit converter
84   mutable AliMUONVClusterServer* fClusterServer; //!<  Clusterizer
85   mutable AliMUONVTriggerStore* fTriggerStore; //!< Trigger container
86   mutable AliMUONVTrackStore* fTrackStore; //!< Track container
87   mutable AliMUONVClusterStore* fClusterStore; //!< cluster store (when not in combined tracking mode)
88   
89   ClassDef(AliMUONReconstructor,8) // Implementation of AliReconstructor
90 };
91
92 #endif