]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVClusterFinder.cxx
- Adding check and flagging for HG present
[u/mrichter/AliRoot.git] / MUON / AliMUONVClusterFinder.cxx
index 3e127a32fd30da574231def9bd2928794adfe154..73791085d99f5f1fda427fc9aeba0db4e3662bf3 100644 (file)
@@ -18,6 +18,7 @@
 #include "AliMUONVClusterFinder.h"
 #include "AliLog.h"
 
+//-----------------------------------------------------------------------------
 /// \class AliMUONVClusterFinder
 ///
 /// Defines an interface for a cluster finder.
@@ -27,6 +28,7 @@
 /// particular DE)
 ///
 /// \author Laurent Aphecetche
+//-----------------------------------------------------------------------------
 
 /// \cond CLASSIMP
 ClassImp(AliMUONVClusterFinder)
@@ -44,10 +46,37 @@ AliMUONVClusterFinder::~AliMUONVClusterFinder()
 /// Destructor
 }
 
+//_____________________________________________________________________________
+Bool_t 
+AliMUONVClusterFinder::Prepare(Int_t /*detElemId*/,
+                               TClonesArray* /*pads*/[2],
+                               const AliMpArea& /*area*/)
+{
+/// Not implemented
+
+  AliError("Not implemented");
+  return kFALSE;
+}
+
+//_____________________________________________________________________________
+Bool_t 
+AliMUONVClusterFinder::Prepare(Int_t /*detElemId*/,
+                               TClonesArray* /*pads*/[2],
+                               const AliMpArea& /*area*/,
+                               const AliMpVSegmentation* /*segmentations*/[2])
+{
+/// Not implemented
+
+  AliError("Not implemented");
+  return kFALSE;
+}
+
 //_____________________________________________________________________________
 Bool_t
 AliMUONVClusterFinder::UsePad(const AliMUONPad&)
 {
+/// Not implemented
+
   AliError("Not implemented");
   return kFALSE;
 }