]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONClusterFinderSimpleFit.h
Fixing bug in generating error messages, where the wrong DDL was being indicated.
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterFinderSimpleFit.h
1 #ifndef ALIMUONCLUSTERFINDERSIMPLEFIT_H
2 #define ALIMUONCLUSTERFINDERSIMPLEFIT_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 AliMUONClusterFinderSimpleFit
11 /// \brief Basic cluster finder 
12 /// 
13 // Author Laurent Aphecetche, Subatech
14
15 #ifndef AliMUONVCLUSTERFINDER_H
16 #  include "AliMUONVClusterFinder.h"
17 #endif
18
19 class AliMUONMathieson;
20
21 class AliMUONClusterFinderSimpleFit : public AliMUONVClusterFinder
22 {
23 public:
24   AliMUONClusterFinderSimpleFit(AliMUONVClusterFinder* clusterFinder);
25   virtual ~AliMUONClusterFinderSimpleFit();
26   
27   using AliMUONVClusterFinder::Prepare;
28
29   virtual Bool_t Prepare(Int_t detElemId,
30                          TClonesArray* pads[2],
31                          const AliMpArea& area);
32   
33   virtual AliMUONCluster* NextCluster();
34   
35 private:
36   /// Not implemented
37   AliMUONClusterFinderSimpleFit(const AliMUONClusterFinderSimpleFit& rhs);
38   /// Not implemented
39   AliMUONClusterFinderSimpleFit& operator=(const AliMUONClusterFinderSimpleFit& rhs);
40
41   void ComputePosition(AliMUONCluster& cluster);
42
43 private:
44     AliMUONVClusterFinder* fClusterFinder; //!< the preclustering we use
45   AliMUONMathieson* fMathieson; //!< Mathieson to compute the charge repartition
46   
47   ClassDef(AliMUONClusterFinderSimpleFit,1) // Basic cluster finder
48 };
49
50 #endif