CMS 3D CMS Logo

LocalFieldManager.cc
Go to the documentation of this file.
1 
4 
5 #include "G4ChordFinder.hh"
6 #include "G4Track.hh"
7 
8 #include "CLHEP/Units/SystemOfUnits.h"
9 
10 #include <iostream>
11 
12 using namespace sim;
13 
15  G4FieldManager* priFM,
16  G4FieldManager* altFM)
17  : G4FieldManager(commonField,nullptr,false),
18  fPrimaryFM(priFM), fAlternativeFM(altFM),
19  fCurrentFM(nullptr),
20  fVerbosity(false)
21 {
22  this->CopyValuesAndChordFinder(priFM);
23  fCurrentFM = priFM ;
24 }
25 
26 void LocalFieldManager::ConfigureForTrack(const G4Track* trk)
27 {
28 
29  int PID = trk->GetDynamicParticle()->GetDefinition()->GetPDGEncoding();
30 
31  if ( std::abs(PID)!=13 ) // maybe also high energy pions ?... what else ?
32  {
33  if ( fCurrentFM != fAlternativeFM )
34  {
37  if ( fVerbosity) print(trk);
38  }
39  }
40  else
41  {
42  if ( fCurrentFM != fPrimaryFM )
43  {
46  if ( fVerbosity) print(trk);
47  }
48  }
49 }
50 
51 const G4FieldManager* LocalFieldManager::CopyValuesAndChordFinder(G4FieldManager * fm)
52 {
53 
54  SetDeltaIntersection(fm->GetDeltaIntersection());
55  SetDeltaOneStep(fm->GetDeltaOneStep());
56  G4ChordFinder* cf = fm->GetChordFinder();
57  cf->SetDeltaChord(cf->GetDeltaChord());
58  SetChordFinder(cf);
59 
60  return fm;
61 
62 }
63 
64 void LocalFieldManager::print(const G4Track* trk)
65 {
67  ? "Alternative field manager with"
68  : "Global field manager with";
69 
70  edm::LogInfo("SimG4CoreMagneticField")
71  << ss << " DeltaIntersection= " << G4FieldManager::GetDeltaIntersection()
72  << ", DeltaOneStep= " << G4FieldManager::GetDeltaOneStep()
73  << ", DeltaChord= " << G4FieldManager::GetChordFinder()->GetDeltaChord()
74  << " for " << trk->GetDynamicParticle()->GetDefinition()->GetPDGEncoding()
75  << " with " << trk->GetKineticEnergy()/CLHEP::GeV << " GeV in "
76  << trk->GetVolume()->GetName();
77 }
G4FieldManager * fCurrentFM
G4FieldManager * fAlternativeFM
const double GeV
Definition: MathUtil.h:16
#define nullptr
const G4FieldManager * CopyValuesAndChordFinder(G4FieldManager *fm)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
Definition: RunManager.h:28
void print(const G4Track *trk)
G4FieldManager * fPrimaryFM
void ConfigureForTrack(const G4Track *trk) override