]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONVClusterFinder.cxx
More code clean up.
[u/mrichter/AliRoot.git] / MUON / AliMUONVClusterFinder.cxx
CommitLineData
5e185331 1/**************************************************************************
2* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3* *
4* Author: The ALICE Off-line Project. *
5* Contributors are mentioned in the code where appropriate. *
6* *
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**************************************************************************/
15
16// $Id$
17
18#include "AliMUONVClusterFinder.h"
19#include "AliLog.h"
20
3d1463c8 21//-----------------------------------------------------------------------------
5e185331 22/// \class AliMUONVClusterFinder
23///
24/// Defines an interface for a cluster finder.
25///
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
28/// particular DE)
29///
30/// \author Laurent Aphecetche
3d1463c8 31//-----------------------------------------------------------------------------
5e185331 32
33/// \cond CLASSIMP
34ClassImp(AliMUONVClusterFinder)
35/// \endcond
36
37//_____________________________________________________________________________
38AliMUONVClusterFinder::AliMUONVClusterFinder() : TObject()
39{
71a2d3aa 40/// Default constructor
5e185331 41}
42
43//_____________________________________________________________________________
44AliMUONVClusterFinder::~AliMUONVClusterFinder()
45{
71a2d3aa 46/// Destructor
5e185331 47}
48
24935e58 49//_____________________________________________________________________________
50Bool_t
51AliMUONVClusterFinder::Prepare(Int_t /*detElemId*/,
9e41a340 52 TObjArray* /*pads*/[2],
24935e58 53 const AliMpArea& /*area*/)
54{
55/// Not implemented
56
57 AliError("Not implemented");
58 return kFALSE;
59}
60
61//_____________________________________________________________________________
62Bool_t
63AliMUONVClusterFinder::Prepare(Int_t /*detElemId*/,
9e41a340 64 TObjArray* /*pads*/[2],
24935e58 65 const AliMpArea& /*area*/,
66 const AliMpVSegmentation* /*segmentations*/[2])
67{
68/// Not implemented
69
70 AliError("Not implemented");
71 return kFALSE;
72}
73
5e185331 74//_____________________________________________________________________________
75Bool_t
76AliMUONVClusterFinder::UsePad(const AliMUONPad&)
77{
24935e58 78/// Not implemented
79
5e185331 80 AliError("Not implemented");
81 return kFALSE;
82}