]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVCalibParam.cxx
Add Config/HighVoltage directory and entry
[u/mrichter/AliRoot.git] / MUON / AliMUONVCalibParam.cxx
index e1f1a9dcfbcdbaa1606177744d479adc2b00f89a..d8a69affdb39aee62637477ba2f001ac9392ac8b 100644 (file)
@@ -19,7 +19,7 @@
 
 #include "AliLog.h"
 
-//
+//-----------------------------------------------------------------------------
 /// \class AliMUONVCalibParam
 ///  
 /// Defines an interface for a calibration container object.
 /// id1 might be left to zero if not required (e.g. for calibparam which 
 /// can be identified by a single integer)
 ///
+/// Note that the ValueAsXXX methods have 2 versions : with or without bound
+/// checking. The latter is to be used in e.g. loops, where you know for
+/// sure the indices are ok, in order to gain some time.
+///
 /// \author Laurent Aphecetche, Subatech
+//-----------------------------------------------------------------------------
 
 /// \cond CLASSIMP
 ClassImp(AliMUONVCalibParam)
@@ -121,6 +126,14 @@ AliMUONVCalibParam::SetValueAsDouble(Int_t, Int_t, Double_t)
   AliFatal("Not implemented");
 }
 
+//_____________________________________________________________________________
+void 
+AliMUONVCalibParam::SetValueAsDoubleFast(Int_t, Int_t, Double_t)
+{
+  /// By default, this one does not exist
+  AliFatal("Not implemented");
+}
+
 //_____________________________________________________________________________
 Double_t 
 AliMUONVCalibParam::ValueAsDouble(Int_t , Int_t ) const
@@ -130,3 +143,12 @@ AliMUONVCalibParam::ValueAsDouble(Int_t , Int_t ) const
   return 0;
 }
 
+//_____________________________________________________________________________
+Double_t 
+AliMUONVCalibParam::ValueAsDoubleFast(Int_t , Int_t ) const
+{
+  /// By default, this one does not exist
+  AliFatal("Not implemented");
+  return 0;
+}
+