CMS 3D CMS Logo

FieldBuilder.cc
Go to the documentation of this file.
3 
6 
12 
13 #include "CLHEP/Units/GlobalSystemOfUnits.h"
14 #include "G4ChordFinder.hh"
15 #include "G4ClassicalRK4.hh"
16 #include "G4FieldManager.hh"
17 #include "G4LogicalVolumeStore.hh"
18 #include "G4Mag_UsualEqRhs.hh"
19 #include "G4TMagFieldEquation.hh"
20 #include "G4PropagatorInField.hh"
21 
22 using namespace sim;
23 
24 FieldBuilder::FieldBuilder(const MagneticField *f, const edm::ParameterSet &p) : theTopVolume(nullptr), thePSet(p) {
25  theDelta = p.getParameter<double>("delta") * CLHEP::mm;
26  theField = new Field(f, theDelta);
27  theFieldEquation = nullptr;
28 }
29 
31 
32 void FieldBuilder::build(CMSFieldManager *fM, G4PropagatorInField *fP) {
33  edm::ParameterSet thePSetForGMFM = thePSet.getParameter<edm::ParameterSet>("ConfGlobalMFM");
34  std::string volName = thePSetForGMFM.getParameter<std::string>("Volume");
35  edm::ParameterSet volPSet = thePSetForGMFM.getParameter<edm::ParameterSet>(volName);
36 
37  configureForVolume(volName, volPSet, fM, fP);
38 
39  edm::LogVerbatim("SimG4CoreMagneticField") << " FieldBuilder::build: Global magnetic field is used";
40 }
41 
43  edm::ParameterSet &volPSet,
44  CMSFieldManager *fM,
45  G4PropagatorInField *fP) {
46  G4LogicalVolumeStore *theStore = G4LogicalVolumeStore::GetInstance();
47  for (auto vol : *theStore) {
48  if ((std::string)vol->GetName() == volName) {
49  theTopVolume = vol;
50  break;
51  }
52  }
53 
54  std::string fieldType = volPSet.getParameter<std::string>("Type");
55  std::string stepper = volPSet.getParameter<std::string>("Stepper");
56 
57  edm::ParameterSet stpPSet = volPSet.getParameter<edm::ParameterSet>("StepperParam");
58  double minStep = stpPSet.getParameter<double>("MinStep") * CLHEP::mm;
59 
60  if (stepper == "G4TDormandPrince45") {
61  theFieldEquation = new G4TMagFieldEquation<Field>(theField);
62  } else {
63  theFieldEquation = new G4Mag_UsualEqRhs(theField);
64  }
65 
66  FieldStepper *dStepper = new FieldStepper(theFieldEquation, theDelta, stepper);
67  G4ChordFinder *cf = new G4ChordFinder(theField, minStep, dStepper);
68 
69  MonopoleEquation *monopoleEquation = new MonopoleEquation(theField);
70  G4MagIntegratorStepper *mStepper = new G4ClassicalRK4(monopoleEquation, 8);
71  G4ChordFinder *cfmon = new G4ChordFinder(theField, minStep, mStepper);
72 
73  fM->InitialiseForVolume(stpPSet, theField, cf, cfmon, volName, fieldType, stepper, theDelta, fP);
74 }
FieldBuilder.h
sim::FieldBuilder::~FieldBuilder
~FieldBuilder()
Definition: FieldBuilder.cc:30
sim::FieldBuilder::theField
Field * theField
Definition: FieldBuilder.h:29
MessageLogger.h
ESHandle.h
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
sim::FieldBuilder::build
void build(CMSFieldManager *fM, G4PropagatorInField *fP)
Definition: FieldBuilder.cc:32
CMSFieldManager.h
CMSFieldManager::InitialiseForVolume
void InitialiseForVolume(const edm::ParameterSet &, sim::Field *, G4ChordFinder *cfDefault, G4ChordFinder *cfMonopole, const std::string &vol, const std::string &fieldType, const std::string &stepperName, double delta, G4PropagatorInField *)
Definition: CMSFieldManager.cc:46
CMSFieldManager
Definition: CMSFieldManager.h:24
FieldStepper.h
sim::FieldBuilder::theTopVolume
G4LogicalVolume * theTopVolume
Definition: FieldBuilder.h:31
FieldStepper
Definition: FieldStepper.h:8
sim::FieldBuilder::theFieldEquation
G4Mag_UsualEqRhs * theFieldEquation
Definition: FieldBuilder.h:30
sim::Field
Definition: Field.h:9
sim::FieldBuilder::thePSet
edm::ParameterSet thePSet
Definition: FieldBuilder.h:32
IdealMagneticFieldRecord.h
sim::FieldBuilder::configureForVolume
void configureForVolume(const std::string &volName, edm::ParameterSet &volPSet, CMSFieldManager *fM, G4PropagatorInField *fP)
Definition: FieldBuilder.cc:42
edm::ParameterSet
Definition: ParameterSet.h:47
AlCaHLTBitMon_ParallelJobs.p
def p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
sim
Definition: GeometryProducer.h:20
Field.h
MagneticField.h
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
sim::FieldBuilder::theDelta
double theDelta
Definition: FieldBuilder.h:33
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
MonopoleEquation.h
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
MonopoleEquation
Definition: MonopoleEquation.h:28
sim::FieldBuilder::FieldBuilder
FieldBuilder(const MagneticField *, const edm::ParameterSet &)
Definition: FieldBuilder.cc:24
MagneticField
Definition: MagneticField.h:19