X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;ds=sidebyside;f=MUON%2FAliMUONVCalibParam.cxx;h=d8a69affdb39aee62637477ba2f001ac9392ac8b;hb=29b61d4390fa432b3e031aa6cce34337bf0d2f6d;hp=7fa6c393e9e263d54caaf35530ecd166eb33618f;hpb=3d1463c8f7148e36069c24f20cde34e096d5d6a9;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONVCalibParam.cxx b/MUON/AliMUONVCalibParam.cxx index 7fa6c393e9e..d8a69affdb3 100644 --- a/MUON/AliMUONVCalibParam.cxx +++ b/MUON/AliMUONVCalibParam.cxx @@ -31,6 +31,10 @@ /// 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 //----------------------------------------------------------------------------- @@ -122,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 @@ -131,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; +} +