]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONReconstructor.h
AliMUONRecoParam:
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstructor.h
index ca65564fdc2766b555a79c6335bbeb5fd7a1691a..62a7b3aa191c6cc6359ac325237838403465cc35 100644 (file)
@@ -30,13 +30,14 @@ class AliMUONVTriggerStore;
 class AliMUONDigitCalibrator;
 class AliMUONCalibrationData;
 
-class AliMUONClusterReconstructor;
-class AliMUONVClusterStore;
-
 class AliMUONTracker;
 class AliMUONVTrackStore;
 
-class AliMUONStopwatchGroup;
+class AliMUONRecoParam;
+
+class AliMUONVClusterFinder;
+
+class AliMUONVClusterServer;
 
 class AliMUONReconstructor : public AliReconstructor
 {
@@ -48,18 +49,14 @@ public:
 
   virtual void ConvertDigits(AliRawReader* rawReader, TTree* digitsTree) const;
   
-  virtual Bool_t HasLocalReconstruction() const;
-  
-  virtual void Reconstruct(AliRunLoader* runLoader) const;
-  
-  virtual void Reconstruct(AliRunLoader* runLoader, AliRawReader* rawReader) const;
-
   virtual void Reconstruct(AliRawReader* rawReader, TTree* clustersTree) const;
   
   virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
   
-  virtual AliTracker* CreateTracker(AliRunLoader* runLoader) const;
-    
+  virtual AliTracker* CreateTracker() const;
+  
+  static const AliMUONRecoParam* GetRecoParam();
+  
 private:
   /// Not implemented
   AliMUONReconstructor(const AliMUONReconstructor&);
@@ -70,18 +67,16 @@ private:
                      AliMUONVDigitStore* digitStore,
                      AliMUONVTriggerStore* triggerStore) const;
   void Calibrate(AliMUONVDigitStore& digitStore) const;
-  void Clusterize(const AliMUONVDigitStore& digitStore, AliMUONVClusterStore& clusterStore) const;
   AliMUONTriggerCrateStore* CrateManager() const;
   void CreateCalibrator() const;
+  AliMUONVClusterFinder* CreateClusterFinder(const char* clusterFinderType) const;
   void CreateDigitMaker() const;
   void CreateTriggerCircuit() const;
-  void CreateClusterReconstructor() const;
+  void CreateClusterServer() const;
   void FillTreeR(AliMUONVTriggerStore* triggerStore,
-                 AliMUONVClusterStore* clusterStore,
                  TTree& clustersTree) const;
   
   AliMUONVDigitStore* DigitStore() const;
-  AliMUONVClusterStore* ClusterStore() const;
   AliMUONVTriggerStore* TriggerStore() const;
 
 private:
@@ -89,16 +84,16 @@ private:
   mutable AliMUONDigitMaker* fDigitMaker; //!< Raw to Digits converter
   AliMUONGeometryTransformer* fTransformer; //!< Geometry transformer (local<->global)
   mutable AliMUONVDigitStore* fDigitStore; //!< Digit container
-  mutable TClonesArray* fTriggerCircuit; //!< Trigger Circuit
+  mutable AliMUONTriggerCircuit* fTriggerCircuit; //!< Trigger Circuit
   mutable AliMUONCalibrationData* fCalibrationData; //!< Calibration data
   mutable AliMUONDigitCalibrator* fDigitCalibrator; //!<  Digit to calibrate digit converter
-  mutable AliMUONClusterReconstructor* fClusterReconstructor; //!<  Clusterizer
-  mutable AliMUONVClusterStore* fClusterStore; //!< Cluster container
+  mutable AliMUONVClusterServer* fClusterServer; //!<  Clusterizer
   mutable AliMUONVTriggerStore* fTriggerStore; //!< Trigger container
   mutable AliMUONVTrackStore* fTrackStore; //!< Track container
-  AliMUONStopwatchGroup* fTimers; //!< Internal timers
   
-  ClassDef(AliMUONReconstructor,1) // Implementation of AliReconstructor
+  static AliMUONRecoParam* fgRecoParam; //!< parameters used to tune the MUON reconstruction
+  
+  ClassDef(AliMUONReconstructor,5) // Implementation of AliReconstructor
 };
 
 #endif