00001 #ifndef BFIELDMS_H 00002 #define BFIELDMS_H 00003 00004 #include "Rtypes.h" 00005 #include "TVector3.h" 00006 00007 class BField; 00008 class VldContext; 00009 00010 class BFieldMS 00011 { 00012 00013 public: 00014 00015 BFieldMS(const VldContext *vldc); 00016 ~BFieldMS(); 00017 00018 TVector3 GetBField(TVector3 &xyz); 00019 00020 private: 00021 00022 BField *bf; 00023 00024 }; 00025 00026 00027 #endif
1.3.9.1