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 /// \file hadronic/Hadr02/src/CRMCNeutronBuild 26 /// \file hadronic/Hadr02/src/CRMCNeutronBuilder.cc 27 /// \brief Implementation of the CRMCNeutronBu 27 /// \brief Implementation of the CRMCNeutronBuilder class 28 // 28 // 29 // 29 // 30 //-------------------------------------------- 30 //--------------------------------------------------------------------------- 31 // 31 // 32 // ClassName: CRMCNeutronBuilder 32 // ClassName: CRMCNeutronBuilder 33 // 33 // 34 // Author: 2018 Alberto Ribon 34 // Author: 2018 Alberto Ribon 35 // 35 // 36 // Modified: 36 // Modified: 37 // - 18-May-2021 Alberto Ribon : Used the lat << 38 // 37 // 39 //-------------------------------------------- 38 //---------------------------------------------------------------------------- 40 // 39 // 41 #ifdef G4_USE_CRMC 40 #ifdef G4_USE_CRMC 42 41 43 # include "CRMCNeutronBuilder.hh" << 42 #include "CRMCNeutronBuilder.hh" >> 43 #include "G4ParticleDefinition.hh" >> 44 #include "G4ParticleTable.hh" >> 45 #include "G4ProcessManager.hh" >> 46 #include "G4NeutronInelasticProcess.hh" >> 47 #include "G4HadronFissionProcess.hh" >> 48 #include "G4HadronCaptureProcess.hh" >> 49 #include "G4HadronicParameters.hh" >> 50 #include "G4SystemOfUnits.hh" 44 51 45 # include "HadronicInelasticModelCRMC.hh" << 46 52 47 # include "G4HadronInelasticProcess.hh" << 53 CRMCNeutronBuilder::CRMCNeutronBuilder() { 48 # include "G4HadronicParameters.hh" << 54 fMin = 0.0*MeV; // For CRMC, this value does not matter in practice because 49 # include "G4LFission.hh" << 55 // we are going to use this model only at high energies. 50 # include "G4NeutronCaptureProcess.hh" << 51 # include "G4NeutronFissionProcess.hh" << 52 # include "G4NeutronRadCapture.hh" << 53 # include "G4ParticleDefinition.hh" << 54 # include "G4ParticleTable.hh" << 55 # include "G4ProcessManager.hh" << 56 # include "G4SystemOfUnits.hh" << 57 << 58 //....oooOO0OOooo........oooOO0OOooo........oo << 59 << 60 CRMCNeutronBuilder::CRMCNeutronBuilder(const G << 61 { << 62 fMin = 0.0 * MeV; // For CRMC, this value d << 63 // we are going to use th << 64 fMax = G4HadronicParameters::Instance()->Get 56 fMax = G4HadronicParameters::Instance()->GetMaxEnergy(); 65 fModel = new HadronicInelasticModelCRMC(crmc << 57 fModel = new G4CRMCModel; 66 fCaptureModel = new G4NeutronRadCapture; << 58 captureModel = new G4NeutronRadCapture; 67 fFissionModel = new G4LFission; << 59 fissionModel = new G4LFission; 68 } 60 } 69 61 70 //....oooOO0OOooo........oooOO0OOooo........oo << 71 62 72 void CRMCNeutronBuilder::Build(G4HadronInelast << 63 void CRMCNeutronBuilder::Build( G4NeutronInelasticProcess* aP ) { 73 { << 64 fModel->SetMinEnergy( fMin ); 74 fModel->SetMinEnergy(fMin); << 65 fModel->SetMaxEnergy( fMax ); 75 fModel->SetMaxEnergy(fMax); << 66 aP->RegisterMe( fModel ); 76 aP->RegisterMe(fModel); << 77 } 67 } 78 68 79 //....oooOO0OOooo........oooOO0OOooo........oo << 80 69 81 CRMCNeutronBuilder::~CRMCNeutronBuilder() {} 70 CRMCNeutronBuilder::~CRMCNeutronBuilder() {} 82 71 83 //....oooOO0OOooo........oooOO0OOooo........oo << 84 72 85 void CRMCNeutronBuilder::Build(G4HadronElastic << 73 void CRMCNeutronBuilder::Build( G4HadronElasticProcess* ) {} 86 74 87 //....oooOO0OOooo........oooOO0OOooo........oo << 88 75 89 void CRMCNeutronBuilder::Build(G4NeutronFissio << 76 void CRMCNeutronBuilder::Build( G4HadronFissionProcess* aP ) { 90 { << 77 fissionModel->SetMinEnergy( 0.0 ); 91 fFissionModel->SetMinEnergy(0.0); << 78 fissionModel->SetMaxEnergy( G4HadronicParameters::Instance()->GetMaxEnergy() ); 92 fFissionModel->SetMaxEnergy(G4HadronicParame << 79 aP->RegisterMe( fissionModel ); 93 aP->RegisterMe(fFissionModel); << 94 } 80 } 95 81 96 //....oooOO0OOooo........oooOO0OOooo........oo << 97 82 98 void CRMCNeutronBuilder::Build(G4NeutronCaptur << 83 void CRMCNeutronBuilder::Build( G4HadronCaptureProcess* aP ) { 99 { << 84 aP->RegisterMe( captureModel ); 100 aP->RegisterMe(fCaptureModel); << 101 } 85 } 102 86 103 #endif // G4_USE_CRMC << 87 #endif //G4_USE_CRMC >> 88 104 89