Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4UniformElectricField implementation << 27 // 26 // 28 // Created: V.Grichine, 30.01.1997 << 27 // $Id: G4UniformElectricField.cc 68055 2013-03-13 14:43:28Z gcosmo $ >> 28 // >> 29 // >> 30 // >> 31 // Class for creation of uniform Electric Field >> 32 // >> 33 // 30.1.97 V.Grichine >> 34 // 29 // ------------------------------------------- 35 // ------------------------------------------------------------------- 30 36 31 #include "G4UniformElectricField.hh" 37 #include "G4UniformElectricField.hh" 32 #include "G4PhysicalConstants.hh" 38 #include "G4PhysicalConstants.hh" 33 39 34 G4UniformElectricField:: << 40 G4UniformElectricField::G4UniformElectricField(const G4ThreeVector FieldVector ) 35 G4UniformElectricField(const G4ThreeVector& Fi << 36 { 41 { 37 fFieldComponents[0] = 0.0; << 42 fFieldComponents[0] = 0.0; 38 fFieldComponents[1] = 0.0; << 43 fFieldComponents[1] = 0.0; 39 fFieldComponents[2] = 0.0; << 44 fFieldComponents[2] = 0.0; 40 fFieldComponents[3] = FieldVector.x(); << 45 fFieldComponents[3] = FieldVector.x(); 41 fFieldComponents[4] = FieldVector.y(); << 46 fFieldComponents[4] = FieldVector.y(); 42 fFieldComponents[5] = FieldVector.z(); << 47 fFieldComponents[5] = FieldVector.z(); 43 } 48 } 44 49 45 G4UniformElectricField::G4UniformElectricField 50 G4UniformElectricField::G4UniformElectricField(G4double vField, 46 51 G4double vTheta, 47 << 52 G4double vPhi ) 48 { 53 { 49 if ( (vField<0) || (vTheta<0) || (vTheta>pi 54 if ( (vField<0) || (vTheta<0) || (vTheta>pi) || (vPhi<0) || (vPhi>twopi) ) 50 { 55 { 51 G4Exception("G4UniformElectricField::G4U 56 G4Exception("G4UniformElectricField::G4UniformElectricField()", 52 "GeomField0002", FatalExcept 57 "GeomField0002", FatalException, "Invalid parameters."); 53 } 58 } 54 59 55 fFieldComponents[0] = 0.0; 60 fFieldComponents[0] = 0.0; 56 fFieldComponents[1] = 0.0; 61 fFieldComponents[1] = 0.0; 57 fFieldComponents[2] = 0.0; 62 fFieldComponents[2] = 0.0; 58 fFieldComponents[3] = vField*std::sin(vThet 63 fFieldComponents[3] = vField*std::sin(vTheta)*std::cos(vPhi) ; 59 fFieldComponents[4] = vField*std::sin(vThet 64 fFieldComponents[4] = vField*std::sin(vTheta)*std::sin(vPhi) ; 60 fFieldComponents[5] = vField*std::cos(vThet 65 fFieldComponents[5] = vField*std::cos(vTheta) ; 61 } 66 } 62 67 63 G4UniformElectricField::~G4UniformElectricFiel << 68 G4UniformElectricField* G4UniformElectricField::Clone() const >> 69 { >> 70 return new G4UniformElectricField( G4ThreeVector(this->fFieldComponents[3],this->fFieldComponents[4],this->fFieldComponents[5]) ); >> 71 } 64 72 65 G4UniformElectricField:: << 73 G4UniformElectricField::~G4UniformElectricField() 66 G4UniformElectricField (const G4UniformElectri << 74 { >> 75 } >> 76 >> 77 G4UniformElectricField::G4UniformElectricField (const G4UniformElectricField &p) 67 : G4ElectricField(p) 78 : G4ElectricField(p) 68 { 79 { 69 for (auto i=0; i<6; ++i) << 80 for (G4int i=0; i<6; i++) 70 { << 81 fFieldComponents[i] = p.fFieldComponents[i]; 71 fFieldComponents[i] = p.fFieldComponents[ << 72 } << 73 } 82 } 74 83 75 G4UniformElectricField& 84 G4UniformElectricField& 76 G4UniformElectricField::operator = (const G4Un << 85 G4UniformElectricField::operator = (const G4UniformElectricField &p) 77 { 86 { 78 if (&p == this) { return *this; } << 87 for (G4int i=0; i<6; i++) 79 G4ElectricField::operator=(p); << 88 fFieldComponents[i] = p.fFieldComponents[i]; 80 for (auto i=0; i<6; ++i) << 89 return *this; 81 { << 82 fFieldComponents[i] = p.fFieldComponents[i << 83 } << 84 return *this; << 85 } << 86 << 87 G4Field* G4UniformElectricField::Clone() const << 88 { << 89 return new G4UniformElectricField( G4ThreeV << 90 << 91 << 92 } 90 } 93 91 94 // ------------------------------------------- 92 // ------------------------------------------------------------------------ 95 93 96 void G4UniformElectricField::GetFieldValue (co 94 void G4UniformElectricField::GetFieldValue (const G4double[4], 97 G4 << 95 G4double *fieldBandE ) const 98 { 96 { 99 fieldBandE[0] = 0.0; << 97 fieldBandE[0]= 0.0; 100 fieldBandE[1] = 0.0; << 98 fieldBandE[1]= 0.0; 101 fieldBandE[2] = 0.0; << 99 fieldBandE[2]= 0.0; 102 fieldBandE[3] = fFieldComponents[3]; << 100 fieldBandE[3]= fFieldComponents[3] ; 103 fieldBandE[4] = fFieldComponents[4]; << 101 fieldBandE[4]= fFieldComponents[4] ; 104 fieldBandE[5] = fFieldComponents[5]; << 102 fieldBandE[5]= fFieldComponents[5] ; 105 } 103 } 106 104