]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONClusterReconstructor.h
- Adding the array of slat segmentation and GetLayerSegmentation(..) method
[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 #include <TObject.h>
14
15 class AliMUONClusterFinderVS;
16 class AliMUONData;
17 class TClonesArray;
18
19 class AliMUONClusterReconstructor : public TObject 
20 {
21  public:
22   AliMUONClusterReconstructor(AliMUONData* data = 0x0); // Constructor
23   virtual ~AliMUONClusterReconstructor(void); // Destructor
24
25  
26   // Cluster Finding & Trigger
27   virtual void   Digits2Clusters(Int_t chBeg = 0);
28   virtual void   Trigger2Trigger() ;
29
30 //  // pointer to data container
31 //  AliMUONData*   GetMUONData() {return fMUONData;}
32   // Reco Model
33   AliMUONClusterFinderVS* GetRecoModel() {return fRecModel;}
34
35   void SetRecoModel(AliMUONClusterFinderVS* rec);
36
37  protected:
38   void ClusterizeOneDE(Int_t detElemId);
39   
40  private:
41   AliMUONClusterReconstructor (const AliMUONClusterReconstructor& rhs); // copy constructor
42   AliMUONClusterReconstructor& operator=(const AliMUONClusterReconstructor& rhs); // assignment operator
43
44   AliMUONData*            fMUONData;           //!< Data container for MUON subsystem 
45   AliMUONClusterFinderVS* fRecModel;           //!< cluster recontruction model
46
47   TClonesArray* fDigitsCath0; //!< digits for cathode 0 of the current DE
48   TClonesArray* fDigitsCath1; //!< digits for cathode 1 of the current DE
49   
50   ClassDef(AliMUONClusterReconstructor,0) // MUON cluster reconstructor in ALICE
51 };
52         
53 #endif