Linking Root to Geant 4

Geant 4 version 11.3.0
Root Version: 6.34.02
Ubuntu version 22.04

Hello

I’m very new to Linux, Geant 4 and root. I have installed root but I’m unsure how to link the two. I’m using wsl to run it.

The folder installed is called “root-framework”, do I need to unpack/extract this somehow before I can link applications to root?


Hello,

We demonstrate usage of ROOT with Geant4 application in the extended example analysis/AnaEx02.

You can also use Geant4 analysis, which can produce the ROOT output without linking with ROOT. This way is used in most Geant4 examples and is demonstrated in basic examples B4 and B5, and also extended/analysis/AnaEx01.

Best regards,

The Ana examples are single threaded though :confused:

The examples with Geant4 analysis (AnaEx01,03) are multi-threaded, AnaEx02 with ROOT IO is single threaded, as we do not develop and maintain MT for ROOT.

ROOT itself is not thread-safe with respect to external applications. They have a “multithread mode”, but only if you’re running a native ROOT application, and let it control the threads etc.

For the CDMS experiment, we wrote a singleton OutputManager, which is protected by mutexes in our RunAction wherever it is called (BeginOfRunAction, our local transferEvent, EndOfRunAction). This way, all of the ROOT activity is forced to be “single threaded.”

If you want to go this route, @Jason_Jonson, we found the Toolkit Guide documentation (Parallelism in Geant4: multi-threading capabilities — Geant4 Documentation 11.3 documentation) and the TWiki links there quite helpful. The ROOT documentation less so.

1 Like

Thanks Michael I will look into this. Danilo on the root forum mentioned some updates on thread safety have taken place in the root framework and hopefully he will be able to help.

In the context of the VMC project, we also developed a Root Manager class, that provides thread-safe output and writes the tree in files per thread.

1 Like

I have root installed and it works by itself, however the issue is I cant seem to get the application (and AnaEx02) to recognise I have root installed. What part of the root installation should I direct it too? Just root-framework?

You can either set the ROOT environment by sourcing thisroot.sh before running cmake:

. /my_path_to_root_installation/bin/thisroot.sh

or provide the path to your ROOT installation by the CMake variable when running cmake:

-DROOT_DIR=/my_path_to_root_installation/cmake

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.