]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVStore.cxx
- Update to read the "new" data format for the TailCancelation Filter Analysis
[u/mrichter/AliRoot.git] / MUON / AliMUONVStore.cxx
index c3441643c6ee0a656a432cd9e8916b801bbd738b..7f1161643b0b0207740ed519e32209a3d6f5e135 100644 (file)
@@ -15,6 +15,7 @@
 
 // $Id$
 
+//-----------------------------------------------------------------------------
 /// \class AliMUONVStore
 ///
 /// A store is a container, which can be searched for (using FindObject methods),
@@ -90,6 +91,7 @@
 ///
 /// In the write case, one *must* specify a concrete class for the container
 ///
+//-----------------------------------------------------------------------------
 
 #include "AliMUONVStore.h"
 
@@ -150,25 +152,7 @@ TObject*
 AliMUONVStore::FindObject(Int_t, Int_t) const
 {
   /// Find an object using 2 identifiers
-  AliError("Not implemented");
-  return 0;
-}
-
-//_____________________________________________________________________________
-TObject*
-AliMUONVStore::FindObject(Int_t,Int_t, Int_t) const
-{
-  /// Find an object using 3 identifiers
-  AliError("Not implemented");
-  return 0;
-}
-
-//_____________________________________________________________________________
-TObject*
-AliMUONVStore::FindObject(Int_t, Int_t, Int_t, Int_t) const
-{
-  /// Find an object using 4 identifiers
-  AliError("Not implemented");
+  AliError("(Int_t,Int_t) : Not implemented");
   return 0;
 }
 
@@ -196,7 +180,7 @@ AliMUONVStore::FindObject(const TObject *obj) const
   // member function. Requires a sequential scan till the object has
   // been found. Returns 0 if object is not found.
   // Typically this function is overridden by a more efficient version
-  // in concrete collection classes (e.g. THashTable).
+  // in concrete collection classes.
   
   TIter next(CreateIterator());
   TObject *ob;