Geant4-11
G4UniformElectricField.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4UniformElectricField implementation
27//
28// Created: V.Grichine, 30.01.1997
29// -------------------------------------------------------------------
30
33
35G4UniformElectricField(const G4ThreeVector& FieldVector)
36{
37 fFieldComponents[0] = 0.0;
38 fFieldComponents[1] = 0.0;
39 fFieldComponents[2] = 0.0;
40 fFieldComponents[3] = FieldVector.x();
41 fFieldComponents[4] = FieldVector.y();
42 fFieldComponents[5] = FieldVector.z();
43}
44
46 G4double vTheta,
47 G4double vPhi)
48{
49 if ( (vField<0) || (vTheta<0) || (vTheta>pi) || (vPhi<0) || (vPhi>twopi) )
50 {
51 G4Exception("G4UniformElectricField::G4UniformElectricField()",
52 "GeomField0002", FatalException, "Invalid parameters.");
53 }
54
55 fFieldComponents[0] = 0.0;
56 fFieldComponents[1] = 0.0;
57 fFieldComponents[2] = 0.0;
58 fFieldComponents[3] = vField*std::sin(vTheta)*std::cos(vPhi) ;
59 fFieldComponents[4] = vField*std::sin(vTheta)*std::sin(vPhi) ;
60 fFieldComponents[5] = vField*std::cos(vTheta) ;
61}
62
64{
65}
66
70{
71 for (auto i=0; i<6; ++i)
72 {
74 }
75}
76
79{
80 if (&p == this) return *this;
82 for (auto i=0; i<6; ++i)
83 {
85 }
86 return *this;
87}
88
90{
94}
95
96// ------------------------------------------------------------------------
97
99 G4double* fieldBandE) const
100{
101 fieldBandE[0] = 0.0;
102 fieldBandE[1] = 0.0;
103 fieldBandE[2] = 0.0;
104 fieldBandE[3] = fFieldComponents[3];
105 fieldBandE[4] = fFieldComponents[4];
106 fieldBandE[5] = fFieldComponents[5];
107}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
static constexpr double twopi
Definition: G4SIunits.hh:56
static constexpr double pi
Definition: G4SIunits.hh:55
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition: G4Types.hh:83
double z() const
double x() const
double y() const
G4ElectricField & operator=(const G4ElectricField &p)
G4UniformElectricField & operator=(const G4UniformElectricField &p)
virtual void GetFieldValue(const G4double pos[4], G4double *field) const
G4UniformElectricField(const G4ThreeVector &FieldVector)
virtual G4Field * Clone() const