]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUON2DStoreValidator.h
Improving the precision of the calculation of the energy loss in the absorber (Philip...
[u/mrichter/AliRoot.git] / MUON / AliMUON2DStoreValidator.h
index 73ecbbc737e163d565715462ea42add97c8d9ac2..7a78688f5929359f7523dcbd96ff6a369696c63b 100644 (file)
@@ -6,18 +6,18 @@
 
 // $Id$
 
-/// \ingroup shuttle
+/// \ingroup calib
 /// \class AliMUON2DStoreValidator
 /// \brief Determine which channels, manus, DEs, stations are missing
 /// from a 2DStore.
 /// 
-/// \author Laurent Aphecetche
+//  Author Laurent Aphecetche
 
 #ifndef ROOT_TObject
 #  include "TObject.h"
 #endif
 
-class AliMUONV2DStore;
+class AliMUONVStore;
 class TList;
 class TObjArray;
 class AliMUONCheckItem;
@@ -29,22 +29,25 @@ public:
   AliMUON2DStoreValidator();
   virtual ~AliMUON2DStoreValidator();
   
-  TObjArray* Validate(const AliMUONV2DStore& store, Float_t invalidFloatValue);
+  TObjArray* Validate(const AliMUONVStore& store, Float_t invalidFloatValue);
 
-  TObjArray* Validate(const AliMUONV2DStore& store);
+  TObjArray* Validate(const AliMUONVStore& store);
   
-  TObjArray* Validate(const AliMUONV2DStore& store, 
+  TObjArray* Validate(const AliMUONVStore& store, 
                       Bool_t (*check)(const AliMUONVCalibParam&,Int_t));
 
-  AliMUONV2DStore* GetStatus() const { return fStatus; }
+  /// Return statuses
+  AliMUONVStore* GetStatus() const { return fStatus; }
   
+  /// Reports what is missing, trying to be as concise as possible.
   void Report(TList& lines) const;
 
   static void Report(TList& lines, const TObjArray& chambers);
 
 private:
-    
+  /// Not implemented  
   AliMUON2DStoreValidator(const AliMUON2DStoreValidator&);
+  /// Not implemented  
   AliMUON2DStoreValidator& operator=(const AliMUON2DStoreValidator&);
 
   void AddMissingChannel(Int_t detElemId, Int_t manuId, Int_t manuChannel);
@@ -60,9 +63,9 @@ private:
   static void ReportManu(TList& list, AliMUONCheckItem& manu);
   
 private:
-  TList* fManuList; //! List of (DE,manuID) pairs.
-  TObjArray* fChambers; //! Array of AliMUONCheckItem.
-  AliMUONV2DStore* fStatus; //! Statuses
+  TList* fManuList; //!< List of (DE,manuID) pairs.
+  TObjArray* fChambers; //!< Array of AliMUONCheckItem.
+  AliMUONVStore* fStatus; //!< Statuses
   
   ClassDef(AliMUON2DStoreValidator,2) // Validator of 2DStore
 };