]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONClusterFinderCOG.h
Main changes:
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterFinderCOG.h
CommitLineData
a224d738 1#ifndef ALIMUONCLUSTERFINDERCOG_H
2#define ALIMUONCLUSTERFINDERCOG_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 AliMUONClusterFinderCOG
11/// \brief A very basic (and mostly useless, probably) cluster finder
12///
13// Author Laurent Aphecetche, Subatech
14
15#ifndef AliMUONVCLUSTERFINDER_H
16# include "AliMUONVClusterFinder.h"
17#endif
18
a224d738 19class AliMUONClusterFinderCOG : public AliMUONVClusterFinder
20{
21public:
b1a19e07 22 AliMUONClusterFinderCOG(AliMUONVClusterFinder* clusterFinder);
a224d738 23 virtual ~AliMUONClusterFinderCOG();
24
25 virtual Bool_t Prepare(const AliMpVSegmentation* segmentations[2],
3887d11e 26 const AliMUONVDigitStore& digitStore);
a224d738 27
28 virtual AliMUONCluster* NextCluster();
29
30private:
71a2d3aa 31 /// Not implemented
a224d738 32 AliMUONClusterFinderCOG(const AliMUONClusterFinderCOG& rhs);
71a2d3aa 33 /// Not implemented
a224d738 34 AliMUONClusterFinderCOG& operator=(const AliMUONClusterFinderCOG& rhs);
71a2d3aa 35
a224d738 36 void ComputePosition(AliMUONCluster& cluster);
37
38private:
39 AliMUONVClusterFinder* fPreClusterFinder; ///< the preclustering we use
40
69d7ac2e 41 ClassDef(AliMUONClusterFinderCOG,1) // A very basic (and mostly useless, probably) cluster finder
a224d738 42};
43
44#endif