// Description: // Abstract interface to a BField // User has to inherit his adaptor from this class /** * @author Christian Höppner (Technische Universität München, original author) * @author Sebastian Neubert (Technische Universität München, original author) * */ #ifndef ABSBFIELDIFC_H #define ABSBFIELDIFC_H #include "TVector3.h" class AbsBFieldIfc { public: // Constructors/Destructors --------- AbsBFieldIfc(){;} virtual ~AbsBFieldIfc(){;} // Accessors ----------------------- virtual TVector3 get(const TVector3&) const =0; }; #endif