Geant4 Cross Reference |
1 // 2 // ******************************************************************** 3 // * License and Disclaimer * 4 // * * 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. * 10 // * * 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitation of liability. * 17 // * * 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************************************** 25 // 26 // 27 // Author: Makoto Asai (JLAB) - 2024 28 // 29 // class description: 30 // 31 // This is a class for run control in GEANT4 for multi-threaded runs 32 // of worker thread running in sub-event parallel mode. 33 // It extends G4RunManager re-implementing multi-threaded behavior in 34 // key methods. See documentation for G4RunManager. User should never 35 // initialize instances of this class, that are usually handled by 36 // G4MTRunManager. There exists one instance of this class for each 37 // worker in a MT application. 38 39 #ifndef G4WorkerSubEvtRunManager_h 40 #define G4WorkerSubEvtRunManager_h 1 41 42 #include "G4WorkerTaskRunManager.hh" 43 44 class G4WorkerThread; 45 class G4WorkerTaskRunManagerKernel; 46 47 // N.B. G4WorkerTaskRunManagerKernel is still used by this G4WorkerSubEvtRunManager 48 // without any modification. -- future work for phase-II developments 49 using G4WorkerSubEvtRunManagerKernel = G4WorkerTaskRunManagerKernel; 50 51 class G4WorkerSubEvtRunManager : public G4WorkerTaskRunManager 52 { 53 public: 54 static G4WorkerSubEvtRunManager* GetWorkerRunManager(); 55 static G4WorkerSubEvtRunManagerKernel* GetWorkerRunManagerKernel(); 56 G4WorkerSubEvtRunManager(G4int subEventType = 0); 57 //G4WorkerSubEvtRunManager() = delete; 58 59 // Modified for worker behavior 60 void RunInitialization() override; 61 void DoEventLoop(G4int n_event, const char* macroFile = nullptr, G4int n_select = -1) override; 62 void ProcessOneEvent(G4int i_event) override; 63 G4Event* GenerateEvent(G4int i_event) override; 64 void RunTermination() override; 65 void TerminateEventLoop() override; 66 void DoWork() override; 67 void RestoreRndmEachEvent(G4bool flag) override { readStatusFromFile = flag; } 68 69 void DoCleanup() override; 70 void ProcessUI() override; 71 72 void SetUserInitialization(G4VUserPhysicsList* userPL) override; 73 void SetUserInitialization(G4VUserDetectorConstruction* userDC) override; 74 void SetUserInitialization(G4UserWorkerInitialization* userInit) override; 75 void SetUserInitialization(G4UserWorkerThreadInitialization* userInit) override; 76 void SetUserInitialization(G4VUserActionInitialization* userInit) override; 77 void SetUserAction(G4UserRunAction* userAction) override; 78 void SetUserAction(G4VUserPrimaryGeneratorAction* userAction) override; 79 void SetUserAction(G4UserEventAction* userAction) override; 80 void SetUserAction(G4UserStackingAction* userAction) override; 81 void SetUserAction(G4UserTrackingAction* userAction) override; 82 void SetUserAction(G4UserSteppingAction* userAction) override; 83 84 protected: 85 void StoreRNGStatus(const G4String& filenamePrefix) override; 86 void SetupDefaultRNGEngine() override; 87 88 private: 89 G4int fSubEventType = -1; 90 91 public: 92 G4int GetSubEventType() const override 93 { return fSubEventType; } 94 void SetSubEventType(G4int) override; 95 }; 96 97 #endif // G4WorkerSubEvtRunManager_h 98