CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/MagneticField/GeomBuilder/src/FakeInterpolator.h

Go to the documentation of this file.
00001 #ifndef FakeInterpolator_h
00002 #define FakeInterpolator_h
00003 
00013   #include "MagneticField/Interpolation/interface/MagProviderInterpol.h"
00014 
00015 namespace magneticfield {
00016 class FakeInterpolator : public MagProviderInterpol {
00017  public:
00019   FakeInterpolator() {};
00020   
00021   // Operations
00022   virtual LocalVectorType valueInTesla( const LocalPointType& p) const {
00023     return LocalVectorType(0.,0.,0.);
00024   }
00025 };
00026 }
00027 #endif