]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVClusterFinder.cxx
DQM configure file
[u/mrichter/AliRoot.git] / MUON / AliMUONVClusterFinder.cxx
index b24e0ac3d7b8d70f0bc4af499196ea8608f42992..d585157804893f4420c88afc7078074b04207e09 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)
@@ -35,17 +37,46 @@ ClassImp(AliMUONVClusterFinder)
 //_____________________________________________________________________________
 AliMUONVClusterFinder::AliMUONVClusterFinder() : TObject()
 {
+/// Default constructor
 }
 
 //_____________________________________________________________________________
 AliMUONVClusterFinder::~AliMUONVClusterFinder()
 {
+/// Destructor
+}
+
+//_____________________________________________________________________________
+Bool_t 
+AliMUONVClusterFinder::Prepare(Int_t /*detElemId*/,
+                               TObjArray* /*pads*/[2],
+                               const AliMpArea& /*area*/)
+{
+/// Not implemented
+
+  AliError("Not implemented");
+  return kFALSE;
+}
+
+//_____________________________________________________________________________
+Bool_t 
+AliMUONVClusterFinder::Prepare(Int_t /*detElemId*/,
+                               TObjArray* /*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;
 }