This commit is contained in:
shiroka
2008-06-16 14:05:29 +00:00
parent b8cb746e20
commit e09fc2f057
38 changed files with 2691 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#include "globals.hh"
#include "G4MagneticField.hh"
class lem4GaussianField
#ifndef STANDALONE
: public G4MagneticField
#endif
{
private:
G4double ffieldValue;
G4double fieldMagnitude,RMS;
public:
lem4GaussianField(double fieldValue, double sigma);
void GetFieldValue( const double point[4], double *Bfield ) const;
G4double GetFieldSetValue();
};