]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONVClusterFinder.cxx
Updated list of MUON libraries
[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
21/// \class AliMUONVClusterFinder
22///
23/// Defines an interface for a cluster finder.
24///
25/// A cluster finder is supposed to work on a single detection element at a
26/// time, thus the Prepare function (which sets up the cluster finder for a
27/// particular DE)
28///
29/// \author Laurent Aphecetche
30
31/// \cond CLASSIMP
32ClassImp(AliMUONVClusterFinder)
33/// \endcond
34
35//_____________________________________________________________________________
36AliMUONVClusterFinder::AliMUONVClusterFinder() : TObject()
37{
71a2d3aa 38/// Default constructor
5e185331 39}
40
41//_____________________________________________________________________________
42AliMUONVClusterFinder::~AliMUONVClusterFinder()
43{
71a2d3aa 44/// Destructor
5e185331 45}
46
47//_____________________________________________________________________________
48Bool_t
49AliMUONVClusterFinder::UsePad(const AliMUONPad&)
50{
51 AliError("Not implemented");
52 return kFALSE;
53}