I am facing problem while processing the opticalphoton info into a ROOT file when I am processing the events in multi thread mode. Here is a situation: I am shooting gamma rays over a scintillator bar, and the resulting optical photons attributes I am storing into a ROOT file. The situation is fine with a single thread, but when I am running in multi-thread, then, the output file is not reproduced as that of a single thread case for the same no. of gamma-ray shoots. I have the feeling that in multi-thread mode, the gamma-ray energy deposition is catered by one thread while the optical photon processing is done by another thread, so when I am creating the ROOT file, it leaves the useful events. I don’t know how to tackle this situation. I came to know the example OpNovice but I don’t exactly got the concept of G4Run::Merge(run).
I also notices that no. of event starts and stop print outputs are not equal in single and multi thread?
I am attaching the output files (for 190 gamma-ray shoots) of my terminal in case of single and two thread runs files for closer inspection to the experts.
Please tell me the relevant files of my geant4 code I will upload that.
Are you doing all of the ROOT I/O stuff yourself? TFile, TTree, AddBranch, blah blah blah? Or are you using G4AnalysisManager to produce a ROOT-format output file? ROOT is quite thread-unsafe when used by non-ROOT applications; for CDMS, we had to make our ROOT output manager a singleton, and wrap all of the ROOT calls in mutexes (G4AutoLock).
G4AnalysisManager handles everything in a natively Geant4 way, and produces an output file that ROOT can read, without using any ROOT libraries. It may be a better option for you.
You asked,
Nope! Each whole event is handled by a single thread. You are most likely seeing the cross-thread collisions that we saw, and which required mutexing to avoid.
Yes all the ROOT I/O I am doing by myself and not using the G4AnalysisManager, can you please help me how to wrap all the ROOT calls in mutex (G4AutoLock)? and how do I avoid the cross-thread collisions. I am attaching my EventAction and RunAction files. Please help me out.
This is a old piece of code which I edited for another detector configuration, initially I was not using multi-thread, but now I seriously required.
Also provide the Geant4 directory example to understand G4AnalysisManager further.