BDSIM
BDSIM is a Geant4 extension toolkit for simulation of particle transport in accelerator beamlines.
Loading...
Searching...
No Matches
BDSFieldMagMuonSpoiler.cc
1/*
2Beam Delivery Simulation (BDSIM) Copyright (C) Royal Holloway,
3University of London 2001 - 2023.
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 "BDSFieldMagMuonSpoiler.hh"
21#include "BDSMagnetStrength.hh"
22#include "BDSUtilities.hh"
23
24#include "globals.hh"
25#include "G4ThreeVector.hh"
26
27#include <cmath>
28
29BDSFieldMagMuonSpoiler::BDSFieldMagMuonSpoiler(BDSMagnetStrength const* strength,
30 G4double const /*brho*/)
31{
32 bField = (*strength)["field"];
34#ifdef BDSDEBUG
35 G4cout << __METHOD_NAME__ << "B = " << bField << G4endl;
36#endif
37}
38
39G4ThreeVector BDSFieldMagMuonSpoiler::GetField(const G4ThreeVector &position,
40 const G4double /*t*/) const
41{
42 G4double x = position.x();
43 G4double y = position.y();
44 G4double r = std::hypot(x,y);
45
46 G4ThreeVector localField;
47 localField[0] = y/r * bField;
48 localField[1] = -x/r * bField;
49 localField[2] = 0;
50
51 return localField;
52}
virtual G4ThreeVector GetField(const G4ThreeVector &position, const G4double t=0) const
Access the field value.
G4bool finiteStrength
Flag to cache whether finite nor not.
Definition: BDSFieldMag.hh:83
Efficient storage of magnet strengths.
G4bool IsFinite(G4double value, G4double tolerance=std::numeric_limits< double >::epsilon())