1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
18 #include "AliMUONVClusterFinder.h"
21 //-----------------------------------------------------------------------------
22 /// \class AliMUONVClusterFinder
24 /// Defines an interface for a cluster finder.
26 /// A cluster finder is supposed to work on a single detection element at a
27 /// time, thus the Prepare function (which sets up the cluster finder for a
30 /// \author Laurent Aphecetche
31 //-----------------------------------------------------------------------------
34 ClassImp(AliMUONVClusterFinder)
37 //_____________________________________________________________________________
38 AliMUONVClusterFinder::AliMUONVClusterFinder() : TObject()
40 /// Default constructor
43 //_____________________________________________________________________________
44 AliMUONVClusterFinder::~AliMUONVClusterFinder()
49 //_____________________________________________________________________________
51 AliMUONVClusterFinder::Prepare(Int_t /*detElemId*/,
52 TObjArray* /*pads*/[2],
53 const AliMpArea& /*area*/)
57 AliError("Not implemented");
61 //_____________________________________________________________________________
63 AliMUONVClusterFinder::Prepare(Int_t /*detElemId*/,
64 TObjArray* /*pads*/[2],
65 const AliMpArea& /*area*/,
66 const AliMpVSegmentation* /*segmentations*/[2])
70 AliError("Not implemented");
74 //_____________________________________________________________________________
76 AliMUONVClusterFinder::UsePad(const AliMUONPad&)
80 AliError("Not implemented");