File indexing completed on 2024-09-07 04:37:11
0001 #ifndef FakeInterpolator_h
0002 #define FakeInterpolator_h
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include "MagneticField/Interpolation/interface/MagProviderInterpol.h"
0012
0013 namespace magneticfield {
0014 class FakeInterpolator : public MagProviderInterpol {
0015 public:
0016
0017 FakeInterpolator() {}
0018
0019
0020 LocalVectorType valueInTesla(const LocalPointType& p) const override { return LocalVectorType(0., 0., 0.); }
0021 };
0022 }
0023 #endif