#ifndef BFIELDMS_H
#define BFIELDMS_H

#include "Rtypes.h"
#include "TVector3.h"

class BField;
class VldContext;

class BFieldMS
{

public:

  BFieldMS(const VldContext *vldc);
  ~BFieldMS();

  TVector3 GetBField(TVector3 &xyz);

private:

  BField *bf;

};


#endif
