47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: ExN02MagneticField.hh,v 1.1.10.1 1999/12/07 20:47:24 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
// A class for control of the Magnetic Field of the detector.
|
|
// The field is assumed to be uniform.
|
|
//
|
|
// $ Id: $
|
|
|
|
// Should this be a:
|
|
// i) messenger
|
|
// ii) user class that creates the field ?
|
|
// iii) simply a derived class of Uniform field ? <== I have chosen this now.
|
|
// iv) a field manager that creates/updates field (Prefered?)
|
|
#ifndef ExN02MagneticField_H
|
|
#define ExN02MagneticField_H
|
|
|
|
#include "G4UniformMagField.hh"
|
|
class G4FieldManager;
|
|
|
|
class ExN02MagneticField: public G4UniformMagField
|
|
{
|
|
public:
|
|
ExN02MagneticField(G4ThreeVector); // The value of the field
|
|
ExN02MagneticField(); // A zero field
|
|
~ExN02MagneticField();
|
|
|
|
// Set the field to (0, 0, fieldValue)
|
|
void SetFieldValue(G4ThreeVector fieldVector);
|
|
void SetFieldValue(G4double fieldValue);
|
|
G4ThreeVector GetConstantFieldValue();
|
|
|
|
protected:
|
|
|
|
// Find the global Field Manager
|
|
G4FieldManager* GetGlobalFieldManager(); // static
|
|
};
|
|
|
|
#endif
|