BDSIM
BDSIM is a Geant4 extension toolkit for simulation of particle transport in accelerator beamlines.
Loading...
Searching...
No Matches
BDSFieldMagDipoleHardEdgeMuonCooler.cc
1/*
2Beam Delivery Simulation (BDSIM) Copyright (C) Royal Holloway,
3University of London 2001 - 2024.
4
5This file is part of BDSIM.
6
7BDSIM is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published
9by the Free Software Foundation version 3 of the License.
10
11BDSIM is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with BDSIM. If not, see <http://www.gnu.org/licenses/>.
18*/
19#include "BDSDebug.hh"
20#include "BDSFieldMagDipoleHardEdgeMuonCooler.hh"
21#include "BDSMagnetStrength.hh"
22#include "BDSUtilities.hh"
23
24#include "globals.hh"
25#include "G4ThreeVector.hh"
26#include "G4Types.hh"
27
28#include "CLHEP/Units/PhysicalConstants.h"
29#include "CLHEP/Units/SystemOfUnits.h"
30
31#include <algorithm>
32#include <cmath>
33
34BDSFieldMagDipoleHardEdgeMuonCooler::BDSFieldMagDipoleHardEdgeMuonCooler(G4double strength,
35 G4double apertureRadius,
36 G4double coilLength
37 ):
38 D(2*apertureRadius),
39 halfLength(0.5*coilLength),
40 B0(strength)
41 {;}
42
43G4ThreeVector BDSFieldMagDipoleHardEdgeMuonCooler::GetField(const G4ThreeVector& position,
44 const G4double /*t*/) const
45{
46 G4double z = position.z();
47 G4double rho = position.perp();
48
49 G4double By = 0;
50
51 if (rho > D*0.5 || std::abs(z) > halfLength)
52 { return G4ThreeVector();}
53 else
54 { By = B0;}
55
56 G4ThreeVector result = G4ThreeVector(0,By,0);
57 return result;
58}
59
60
G4double D
Private default constructor to ensure use of supplied constructor.
virtual G4ThreeVector GetField(const G4ThreeVector &position, const G4double t=0) const
Calculate the field value.