How to use G4GlobalMagFieldMessenger?

According to Electromagnetic Field — Book For Application Developers 11.3 documentation, I can use G4GlobalMagFieldMessenger to enable macro cmds /globalField/. Here is what I did:

#include <G4VUserDetectorConstruction.hh>
#include <G4GlobalMagFieldMessenger.hh>
#include <G4tgbVolumeMgr.hh>

class Detector : public G4VUserDetectorConstruction, G4GlobalMagFieldMessenger
{
  public:
    G4VPhysicalVolume* Construct() {
      G4tgbVolumeMgr::GetInstance()->AddTextFile("detector.tg");
      return G4tgbVolumeMgr::GetInstance()->ReadAndConstructDetector();
    } ///< load detector definition from a text file "detector.tg"
};

Since G4GlobalMagFieldMessenger is initiated before Detector, /globalField is indeed created. I can use it to set field values and to change output verbosity. I can also use /vis/scene/add/MagneticField to draw the field.

However, no particle can be bent in the field. I’ve tried e-, proton, with different energies, (from MeV to GeV), even though /globalField/verbose 2 shows

G4ChordFinder: stepperDriverId: 2
Magnetic field is active, fieldValue = (0 0 0.1 T ).

What am I missing?

Thanks,

Jing

Geant4 Version: 11.3.0
Operating System: Mac
Compiler/Version: Clang 16.0.0
CMake Version: 3.31.6


Hi Jing Lui

To see the curvature of tracks in a field you have to ask for smooth (or rich) trajectories:

/vis/scene/add/trajectories smooth

Otherwise the trajectory contains only the start point and end point (when it reaches a boundary or interacts). Even if the track spirals, you might only see the start and end of the spiral.

Is this the issue? Let us know. Otherwise, there’s something wrong with your field setup, and we would have to investigate further.

John

John,

thanks for the quick reply. I tried

/vis/scene/add/axes
/vis/scene/add/magneticField
/vis/scene/add/trajectories smooth
/vis/modeling/trajectories/create/drawByParticleID
/vis/modeling/trajectories/drawByParticleID-0/default/setDrawStepPts true

And below is what I got. I can see step points of an e- trajectory when it goes through boundaries. It starts from somewhere on the negative x-axis and goes to the positive direction of x. The field is along the z axis. I expect the trajectory to bend to negative y direction. But it simply follows the x axis. The material of all volumes is set to G4_Galactic.

I also tried to new G4GlobalMagFieldMessenger in the main function more explicitly. The result is the same. The code I modified is a simple file with 60-ish lines of C++: https://github.com/jintonic/mingle.

Just in case you need more information, I used

/globalField/setValue 0 0 0.1 tesla
/globalField/verbose 2

/run/numberOfThreads 2

/run/initialize

/geometry/test/run

to set up the field. There is no overlapping detected in my geometry.

Thanks,

Jing

Mmm. OK. I think this needs a look from someone with experience in field set up.

Hi, @ivana, as the author of G4GlobalMagFieldMessenger, do you see something I did wrong? Thanks, Jing

Hi @Jing_Liu ,

The G4GlobalMagFieldMessenger must be created in UserDetectorConstruction::CreateSDandField, see e.g. basic/B2 examples.

You need to remove it from inheritance, as while the UserDetectorConstruction is instantiated only on master, the field messenger has to be created on thread workers, that’s why it should go in the :CreateSDandField method, that was added to G4VUserDetectorConstruction for this purpose.

Best regards,