Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4PhysicsListWorkspace implementation << 27 // << 28 // Authors: J.Apostolakis, A.Dotti - 4 October << 29 // ------------------------------------------- << 30 << 31 #include "G4PhysicsListWorkspace.hh" 26 #include "G4PhysicsListWorkspace.hh" 32 27 33 namespace 28 namespace 34 { 29 { 35 G4PhysicsListWorkspace::pool_type thePool; << 30 G4PhysicsListWorkspace::pool_type thePool; 36 } 31 } 37 32 38 // ------------------------------------------- << 33 G4PhysicsListWorkspace::pool_type* 39 G4PhysicsListWorkspace::pool_type* G4PhysicsLi << 34 G4PhysicsListWorkspace::GetPool() { return &thePool; } 40 { << 41 return &thePool; << 42 } << 43 35 44 // ------------------------------------------- << 36 G4PhysicsListWorkspace::G4PhysicsListWorkspace(G4bool verbose) 45 G4PhysicsListWorkspace::G4PhysicsListWorkspace << 37 : fVerbose(verbose) 46 { 38 { 47 fpVUPLSIM = &const_cast<G4VUPLManager&>(G4VU << 39 48 fpVPCSIM = &const_cast<G4VPCManager&>(G4VPhy << 40 fpVUPLSIM = 49 fpVMPLSIM = &const_cast<G4VMPLManager&>(G4VM << 41 &const_cast<G4VUPLManager&>(G4VUserPhysicsList::GetSubInstanceManager()); 50 << 42 fpVPCSIM = >> 43 &const_cast<G4VPCManager&>(G4VPhysicsConstructor::GetSubInstanceManager()); >> 44 fpVMPLSIM = >> 45 &const_cast<G4VMPLManager&>(G4VModularPhysicsList::GetSubInstanceManager()); >> 46 51 // Copy information from master into PolyCon 47 // Copy information from master into PolyCone/Gon Sides in this thread. 52 InitialiseWorkspace(); 48 InitialiseWorkspace(); 53 49 54 // Capture its address of ParticleDefinition 50 // Capture its address of ParticleDefinition split-class in this thread 55 fpVUPLOffset = fpVUPLSIM->GetOffset(); 51 fpVUPLOffset = fpVUPLSIM->GetOffset(); 56 fpVPCOffset = fpVPCSIM->GetOffset(); << 52 fpVPCOffset = fpVPCSIM->GetOffset(); 57 fpVMPLOffset = fpVMPLSIM->GetOffset(); 53 fpVMPLOffset = fpVMPLSIM->GetOffset(); 58 } 54 } 59 55 60 // ------------------------------------------- << 56 G4PhysicsListWorkspace::~G4PhysicsListWorkspace() >> 57 { >> 58 } 61 59 62 // ------------------------------------------- << 60 void 63 void G4PhysicsListWorkspace::UseWorkspace() << 61 G4PhysicsListWorkspace::UseWorkspace() 64 { 62 { 65 if (fVerbose) << 63 if( fVerbose ) 66 G4cout << "G4PhysicsListWorkspace::UseWork << 64 G4cout << "G4PhysicsListWorkspace::UseWorkspace: " 67 << "Copying particles-definition Sp << 65 << "Copying particles-definition Split-Class - Start " << G4endl; 68 66 69 // Physics List related, split classes mecha << 67 // Implementation copied from 70 // instantiate sub-instance for this thread << 68 // G4WorkerThread::BuildGeometryAndPhysicsVector() 71 fpVUPLSIM->UseWorkArea(fpVUPLOffset); << 69 72 fpVPCSIM->UseWorkArea(fpVPCOffset); << 70 // Physics List related, split classes mechanism: 73 fpVMPLSIM->UseWorkArea(fpVMPLOffset); << 71 // instantiate sub-instance for this thread >> 72 fpVUPLSIM->UseWorkArea(fpVUPLOffset); >> 73 fpVPCSIM->UseWorkArea(fpVPCOffset); >> 74 fpVMPLSIM->UseWorkArea(fpVMPLOffset); 74 } 75 } 75 76 76 // ------------------------------------------- << 77 void G4PhysicsListWorkspace::ReleaseWorkspace( 77 void G4PhysicsListWorkspace::ReleaseWorkspace() 78 { 78 { 79 fpVUPLSIM->UseWorkArea(nullptr); << 79 fpVUPLSIM->UseWorkArea(0); 80 fpVPCSIM->UseWorkArea(nullptr); << 80 fpVPCSIM->UseWorkArea(0); 81 fpVMPLSIM->UseWorkArea(nullptr); << 81 fpVMPLSIM->UseWorkArea(0); 82 } << 82 } 83 << 83 84 // ------------------------------------------- << 84 void G4PhysicsListWorkspace::InitialisePhysicsList() 85 void G4PhysicsListWorkspace::InitialisePhysics << 86 << 87 // ------------------------------------------- << 88 void G4PhysicsListWorkspace::InitialiseWorkspa << 89 { 85 { 90 if (fVerbose) << 86 } 91 G4cout << "G4PhysicsListWorkspace::Initial << 92 << "Copying particles-definition Sp << 93 << 94 // PhysicsList related, split classes mechan << 95 // Do *NOT* instantiate sub-instance for thi << 96 fpVUPLSIM->NewSubInstances(); << 97 fpVPCSIM->NewSubInstances(); << 98 // The following line is fundamental! If we << 99 // work See: https://jira-geant4.kek.jp/brow << 100 fpVMPLSIM->WorkerCopySubInstanceArray(); << 101 << 102 // Additional initialisation if needed - bey << 103 InitialisePhysicsList(); << 104 87 105 if (fVerbose) << 88 void 106 G4cout << "G4PhysicsListWorkspace::CreateA << 89 G4PhysicsListWorkspace::InitialiseWorkspace() 107 << "Copying particles-definition Sp << 90 { >> 91 if( fVerbose ) >> 92 G4cout << "G4PhysicsListWorkspace::InitialiseWorkspace: " >> 93 << "Copying particles-definition Split-Class - Start " << G4endl; >> 94 >> 95 // PhysicsList related, split classes mechanism: >> 96 // Do *NOT* instantiate sub-instance for this thread, >> 97 // just copy the contents !! >> 98 fpVUPLSIM->NewSubInstances(); >> 99 fpVPCSIM->NewSubInstances(); >> 100 // The following line is fundamental! If we call NewSubInstances it will not work >> 101 // See: https://jira-geant4.kek.jp/browse/DEV-284 >> 102 fpVMPLSIM->WorkerCopySubInstanceArray(); >> 103 >> 104 // Additional initialization if needed - beyond copying memory >> 105 InitialisePhysicsList(); >> 106 >> 107 if( fVerbose ) >> 108 G4cout << "G4PhysicsListWorkspace::CreateAndUseWorkspace: " >> 109 << "Copying particles-definition Split-Class - Done!" << G4endl; 108 } 110 } 109 111 110 // ------------------------------------------- << 111 void G4PhysicsListWorkspace::DestroyWorkspace( 112 void G4PhysicsListWorkspace::DestroyWorkspace() 112 { 113 { 113 fpVUPLSIM->FreeWorker(); << 114 fpVUPLSIM->FreeWorker(); 114 fpVPCSIM->FreeWorker(); << 115 fpVPCSIM->FreeWorker(); 115 fpVMPLSIM->FreeWorker(); << 116 fpVMPLSIM->FreeWorker(); 116 } 117 } 117 118