Pandora
Pandora source code navigator
Loading...
Searching...
No Matches
BFieldPlugin.h
Go to the documentation of this file.
1
8#ifndef PANDORA_BFIELD_PLUGIN_H
9#define PANDORA_BFIELD_PLUGIN_H 1
10
12#include "Pandora/Process.h"
13
14namespace pandora
15{
16
20class BFieldPlugin : public Process
21{
22public:
30 virtual float GetBField(const CartesianVector &positionVector) const = 0;
31
32protected:
33 friend class PluginManager;
34};
35
36} // namespace pandora
37
38#endif // #ifndef PANDORA_BFIELD_PLUGIN_H
Header file defining relevant internal typedefs, sort and string conversion functions.
Header file for the process class.
BFieldPlugin class.
virtual float GetBField(const CartesianVector &positionVector) const =0
Get the bfield value for a specified position vector.
CartesianVector class.
PluginManager class.
Process class.
Definition Process.h:27