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/CRMCPiKBuilder.c 26 /// \file hadronic/Hadr02/src/CRMCPiKBuilder.cc 27 /// \brief Implementation of the CRMCPiKBuilde 27 /// \brief Implementation of the CRMCPiKBuilder class 28 // 28 // 29 // 29 // 30 //-------------------------------------------- 30 //--------------------------------------------------------------------------- 31 // 31 // 32 // ClassName: CRMCPiKBuilder 32 // ClassName: CRMCPiKBuilder 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 << 37 // - 21-May-2021 Alberto Ribon : Used the latest Geant4-CRMC interface. 38 // 38 // 39 //-------------------------------------------- 39 //---------------------------------------------------------------------------- 40 // 40 // 41 #ifdef G4_USE_CRMC 41 #ifdef G4_USE_CRMC 42 42 43 # include "CRMCPiKBuilder.hh" << 43 #include "CRMCPiKBuilder.hh" 44 << 44 #include "G4ParticleDefinition.hh" 45 # include "HadronicInelasticModelCRMC.hh" << 45 #include "G4ParticleTable.hh" 46 << 46 #include "G4ProcessManager.hh" 47 # include "G4HadronInelasticProcess.hh" << 47 #include "G4PionPlusInelasticProcess.hh" 48 # include "G4HadronicParameters.hh" << 48 #include "G4PionMinusInelasticProcess.hh" 49 # include "G4ParticleDefinition.hh" << 49 #include "G4KaonPlusInelasticProcess.hh" 50 # include "G4ParticleTable.hh" << 50 #include "G4KaonMinusInelasticProcess.hh" 51 # include "G4ProcessManager.hh" << 51 #include "G4KaonZeroLInelasticProcess.hh" 52 # include "G4SystemOfUnits.hh" << 52 #include "G4KaonZeroSInelasticProcess.hh" 53 << 53 #include "HadronicInelasticModelCRMC.hh" 54 //....oooOO0OOooo........oooOO0OOooo........oo << 54 #include "G4HadronicParameters.hh" 55 << 55 #include "G4SystemOfUnits.hh" 56 CRMCPiKBuilder::CRMCPiKBuilder(const G4int crm << 56 57 { << 57 58 fMin = 0.0 * MeV; // This value does not ma << 58 CRMCPiKBuilder::CRMCPiKBuilder( const G4int crmcModelId, const std::string & crmcModelName ) { 59 // to use this model only << 59 fMin = 0.0*MeV; // This value does not matter in practice because we are going >> 60 // to use this model only at high energies. 60 fMax = G4HadronicParameters::Instance()->Get 61 fMax = G4HadronicParameters::Instance()->GetMaxEnergy(); 61 fModel = new HadronicInelasticModelCRMC(crmc << 62 fModel = new HadronicInelasticModelCRMC( crmcModelId, crmcModelName ); 62 } 63 } 63 64 64 //....oooOO0OOooo........oooOO0OOooo........oo << 65 65 66 CRMCPiKBuilder::~CRMCPiKBuilder() {} 66 CRMCPiKBuilder::~CRMCPiKBuilder() {} 67 67 68 //....oooOO0OOooo........oooOO0OOooo........oo << 69 68 70 void CRMCPiKBuilder::Build(G4HadronElasticProc << 69 void CRMCPiKBuilder::Build( G4HadronElasticProcess* ) {} >> 70 >> 71 >> 72 void CRMCPiKBuilder::Build( G4PionPlusInelasticProcess* aP ) { >> 73 fModel->SetMinEnergy( fMin ); >> 74 fModel->SetMaxEnergy( fMax ); >> 75 aP->RegisterMe( fModel ); >> 76 } >> 77 >> 78 >> 79 void CRMCPiKBuilder::Build( G4PionMinusInelasticProcess* aP ) { >> 80 fModel->SetMinEnergy( fMin ); >> 81 fModel->SetMaxEnergy( fMax ); >> 82 aP->RegisterMe( fModel ); >> 83 } >> 84 >> 85 >> 86 void CRMCPiKBuilder::Build( G4KaonPlusInelasticProcess* aP ) { >> 87 fModel->SetMinEnergy( fMin ); >> 88 fModel->SetMaxEnergy( fMax ); >> 89 aP->RegisterMe( fModel ); >> 90 } >> 91 >> 92 >> 93 void CRMCPiKBuilder::Build( G4KaonMinusInelasticProcess* aP ) { >> 94 fModel->SetMinEnergy( fMin ); >> 95 fModel->SetMaxEnergy( fMax ); >> 96 aP->RegisterMe( fModel ); >> 97 } >> 98 >> 99 >> 100 void CRMCPiKBuilder::Build( G4KaonZeroLInelasticProcess* aP ) { >> 101 fModel->SetMinEnergy( fMin ); >> 102 fModel->SetMaxEnergy( fMax ); >> 103 aP->RegisterMe( fModel ); >> 104 } 71 105 72 //....oooOO0OOooo........oooOO0OOooo........oo << 73 106 74 void CRMCPiKBuilder::Build(G4HadronInelasticPr << 107 void CRMCPiKBuilder::Build( G4KaonZeroSInelasticProcess* aP ) { 75 { << 108 fModel->SetMinEnergy( fMin ); 76 fModel->SetMinEnergy(fMin); << 109 fModel->SetMaxEnergy( fMax ); 77 fModel->SetMaxEnergy(fMax); << 110 aP->RegisterMe( fModel ); 78 aP->RegisterMe(fModel); << 79 } 111 } 80 112 81 #endif // G4_USE_CRMC << 113 #endif //G4_USE_CRMC 82 114