Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-23 09:21:19

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 //
0027 /// \file field/field05/src/F05Field.cc
0028 /// \brief Implementation of the F05Field class
0029 //
0030 
0031 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0032 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0033 
0034 #include "F05Field.hh"
0035 
0036 #include "G4SystemOfUnits.hh"
0037 
0038 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0039 
0040 void F05Field::GetFieldValue(const G4double Point[4], G4double* Bfield) const
0041 {
0042   // Point[0],Point[1],Point[2] are x-, y-, z-cordinates, Point[3] is time
0043 
0044   const G4double Bz = 0.24 * tesla;
0045   const G4double Er = 2.113987E+6 * volt / m;
0046 
0047   G4double Ex, Ey;
0048 
0049   G4double posR = std::sqrt(std::pow(Point[0], 2) + std::pow(Point[1], 2));
0050   G4double cos_theta, sin_theta;
0051 
0052   if (posR > 0) {
0053     cos_theta = Point[0] / (G4double)posR;
0054     sin_theta = Point[1] / (G4double)posR;
0055     Ex = -1 * Er * cos_theta;  // apply radial electric field
0056     Ey = -1 * Er * sin_theta;
0057   }
0058   else {
0059     Ex = 0;
0060     Ey = 0;
0061   }
0062 
0063   Bfield[0] = 0;
0064   Bfield[1] = 0;
0065   Bfield[2] = Bz;
0066 
0067   Bfield[3] = Ex;
0068   Bfield[4] = Ey;
0069   Bfield[5] = 0;
0070 
0071   return;
0072 }