]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Adding one more Validate method, which does not care about the values, but just about...
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 9 Mar 2007 17:16:48 +0000 (17:16 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 9 Mar 2007 17:16:48 +0000 (17:16 +0000)
MUON/AliMUON2DStoreValidator.cxx
MUON/AliMUON2DStoreValidator.h

index 81f57d60bf147fdc8c1b482da87fe4fa9ccbf715..f4a4f928d89db031659be7cf45e662156aeb9e1a 100644 (file)
@@ -293,6 +293,17 @@ AliMUON2DStoreValidator::Report(TList& lines, const TObjArray& chambers)
   }
 }
 
+//_____________________________________________________________________________
+TObjArray* 
+AliMUON2DStoreValidator::Validate(const AliMUONV2DStore& store)
+{                                  
+  /// Validate the store. Check only the presence of all manus (i.e.
+  /// check nothing about the values themselves)
+  
+  Bool_t (*kCheck)(const AliMUONVCalibParam&,Int_t) = 0x0;
+  return Validate(store,kCheck);
+}
+
 //_____________________________________________________________________________
 TObjArray* 
 AliMUON2DStoreValidator::Validate(const AliMUONV2DStore& store,
index 6f3fbe0bc3ee4f66869e39b7150f2b8db7bf32a4..73ecbbc737e163d565715462ea42add97c8d9ac2 100644 (file)
@@ -31,6 +31,8 @@ public:
   
   TObjArray* Validate(const AliMUONV2DStore& store, Float_t invalidFloatValue);
 
+  TObjArray* Validate(const AliMUONV2DStore& store);
+  
   TObjArray* Validate(const AliMUONV2DStore& store, 
                       Bool_t (*check)(const AliMUONVCalibParam&,Int_t));