Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4TBMagneticFieldSetup.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4TBMagneticFieldSetup.hh
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
//
27
// $Id: G4TBMagneticFieldSetup.hh,v 1.10 2014/11/14 21:47:38 mccumber Exp $
28
// GEANT4 tag $Name: $
29
//
30
// A class for control of the Electric Field of the detector.
31
// The field for this case is uniform.
32
//
33
// It is simply a 'setup' class that creates the field and necessary other parts
34
//
35
36
#ifndef G4MAIN_G4TBELECTRICFIELDSETUP_H
37
#define G4MAIN_G4TBELECTRICFIELDSETUP_H
38
39
#include <Geant4/G4ThreeVector.hh>
40
#include <Geant4/G4Types.hh>
41
42
class
G4FieldManager;
43
class
G4ChordFinder;
44
class
G4Mag_UsualEqRhs;
45
class
G4MagIntegratorStepper;
46
class
G4MagInt_Driver;
47
class
G4MagneticField;
48
class
G4TBFieldMessenger
;
49
class
PHField
;
50
51
class
G4TBMagneticFieldSetup
52
{
53
public
:
54
G4TBMagneticFieldSetup
(
PHField
* phfield);
55
// G4TBMagneticFieldSetup(const float magfield) ;
56
// G4TBMagneticFieldSetup(const std::string &fieldmapfile, const int mapdim, const float magfield_rescale = 1.0) ;
57
// G4TBMagneticFieldSetup contains pointer to memory
58
// copy ctor and = operator need explicit implementation, do just delete it here
59
G4TBMagneticFieldSetup
(
const
G4TBMagneticFieldSetup
&) =
delete
;
60
G4TBMagneticFieldSetup
&
operator=
(
G4TBMagneticFieldSetup
const
&) =
delete
;
61
62
virtual
~G4TBMagneticFieldSetup
();
63
64
void
Verbosity
(
const
int
verb) {
verbosity
= verb; }
65
66
void
SetStepperType
(
const
G4int
i
) {
fStepperType
=
i
; }
67
68
void
SetStepper
();
69
70
void
SetMinStep
(
const
G4double
s
) {
fMinStep
=
s
; }
71
72
void
UpdateField
();
73
74
void
SetFieldValue
(
const
G4ThreeVector fieldVector);
75
void
SetFieldValue
(
const
G4double fieldValue);
76
77
double
get_magfield_at_000
(
const
int
i
)
const
{
return
magfield_at_000
[
i
]; }
78
79
protected
:
80
// Find the global Field Manager
81
G4FieldManager*
GetGlobalFieldManager
();
82
83
private
:
84
int
verbosity
= 0;
85
86
G4FieldManager*
fFieldManager
=
nullptr
;
87
88
G4ChordFinder*
fChordFinder
=
nullptr
;
89
90
G4Mag_UsualEqRhs*
fEquation
=
nullptr
;
91
92
G4MagneticField*
fEMfield
=
nullptr
;
93
94
G4ThreeVector
fElFieldValue
;
95
96
G4MagIntegratorStepper*
fStepper
=
nullptr
;
97
G4MagInt_Driver*
fIntgrDriver
=
nullptr
;
98
99
G4int
fStepperType
;
100
101
G4double
fMinStep
;
102
103
G4TBFieldMessenger
*
fFieldMessenger
=
nullptr
;
104
105
double
magfield_at_000
[3];
106
};
107
108
#endif
coresoftware
blob
master
simulation
g4simulation
g4main
G4TBMagneticFieldSetup.hh
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:18:15
using
1.8.2 with
sPHENIX GitHub integration