]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONClusterReconstructor.h
Removed - functionality of this class moved to geometry and mapping
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterReconstructor.h
1 #ifndef ALIMUONCLUSTERRECONSTRUCTOR_H
2 #define ALIMUONCLUSTERRECONSTRUCTOR_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /*$Id$*/
7 // Revision of includes 07/05/2004
8
9 /// \ingroup rec
10 /// \class AliMUONClusterReconstructor
11 /// \brief MUON cluster reconstructor in ALICE
12 ///
13 /////////////////////////////////////
14 /// MUON event reconstructor in ALICE
15 /////////////////////////////////////
16
17 #include <TObject.h>
18 #include "AliMUONClusterFinderVS.h" 
19
20 class AliLoader;
21 class AliMUON;
22 class AliMUONRawCluster;
23 class AliMUONData;
24 class AliRawReader;
25
26 class AliMUONClusterReconstructor : public TObject 
27 {
28  public:
29   AliMUONClusterReconstructor(AliLoader* loader, AliMUONData* data = 0x0); // Constructor
30   virtual ~AliMUONClusterReconstructor(void); // Destructor
31
32  
33   // Cluster Finding & Trigger
34   virtual void   Digits2Clusters(Int_t chBeg = 0);
35   virtual void   Trigger2Trigger() ;
36
37   // pointer to data container
38   AliMUONData*   GetMUONData() {return fMUONData;}
39   // Reco Model
40   AliMUONClusterFinderVS* GetRecoModel() {return fRecModel;}
41   //AZ void   SetRecoModel(AliMUONClusterFinderVS* rec) {fRecModel = rec;}
42   void   SetRecoModel(AliMUONClusterFinderVS* rec) {if (fRecModel) delete fRecModel; fRecModel = rec;} //AZ
43
44
45  protected:
46   AliMUONClusterReconstructor();                  // Default constructor
47   AliMUONClusterReconstructor (const AliMUONClusterReconstructor& rhs); // copy constructor
48   AliMUONClusterReconstructor& operator=(const AliMUONClusterReconstructor& rhs); // assignment operator
49
50  private:
51
52   AliMUONData*            fMUONData;           //! Data container for MUON subsystem 
53   AliMUONClusterFinderVS* fRecModel;           //! cluster recontruction model
54
55   // alice loader
56   AliLoader* fLoader;
57
58
59   ClassDef(AliMUONClusterReconstructor,0) // MUON cluster reconstructor in ALICE
60 };
61         
62 #endif