]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONClusterReconstructor.h
Removing quick code hack and unnecessary methods. Now have a much cleaner implementat...
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterReconstructor.h
CommitLineData
c0301ce3 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$*/
30178c30 7// Revision of includes 07/05/2004
c0301ce3 8
692de412 9/// \ingroup rec
10/// \class AliMUONClusterReconstructor
3dbff571 11/// \brief Steering class for clusterizing MUON tracking chambers
30178c30 12
13#include <TObject.h>
c0301ce3 14
f9247068 15class AliMUONVClusterFinder;
16class AliMUONGeometryTransformer;
3dbff571 17class AliMUONVClusterStore;
18class AliMUONVDigitStore;
19class AliMUONRawCluster;
c0301ce3 20
30178c30 21class AliMUONClusterReconstructor : public TObject
22{
c0301ce3 23 public:
3dbff571 24 AliMUONClusterReconstructor(AliMUONVClusterFinder* finder = 0x0,
f9247068 25 const AliMUONGeometryTransformer* transformer = 0x0
26 );
3dbff571 27
c0301ce3 28 virtual ~AliMUONClusterReconstructor(void); // Destructor
c0301ce3 29
5ac16716 30
3dbff571 31 // Cluster Finding
32 virtual void Digits2Clusters(const AliMUONVDigitStore& digitStore, AliMUONVClusterStore& clusterStore);
33
c0301ce3 34 protected:
71a2d3aa 35 /// Not implemented
f51d54cb 36 AliMUONClusterReconstructor (const AliMUONClusterReconstructor& rhs); // copy constructor
71a2d3aa 37 /// Not implemented
f51d54cb 38 AliMUONClusterReconstructor& operator=(const AliMUONClusterReconstructor& rhs); // assignment operator
c0301ce3 39
3dbff571 40 void ClusterizeOneDE(Int_t detElemId, const AliMUONVDigitStore& digitStore);
41
f9247068 42private:
3dbff571 43 AliMUONVClusterFinder* fClusterFinder; //!< the object doing the real clustering job (not owner)
c0301ce3 44
f9247068 45 const AliMUONGeometryTransformer* fTransformer; //!< to go from local to global (not owner)
3dbff571 46
47 AliMUONVClusterStore* fClusterStore; //!< not owner
48
49 ClassDef(AliMUONClusterReconstructor,0) // Clustering steering
c0301ce3 50};
51
52#endif