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 // $Id: G4BertiniKaonBuilder.cc 103555 2017-04-18 09:04:37Z gcosmo $ 26 // 27 // 27 //-------------------------------------------- 28 //--------------------------------------------------------------------------- 28 // 29 // 29 // ClassName: G4BertiniKaonBuilder 30 // ClassName: G4BertiniKaonBuilder 30 // 31 // 31 // Author: 2011 G.Folger 32 // Author: 2011 G.Folger 32 // devired from G4BertiniPionBuilder 33 // devired from G4BertiniPionBuilder 33 // 34 // 34 // Modified: 35 // Modified: 35 // 36 // 36 //-------------------------------------------- 37 //---------------------------------------------------------------------------- 37 // 38 // 38 #include "G4BertiniKaonBuilder.hh" 39 #include "G4BertiniKaonBuilder.hh" 39 #include "G4SystemOfUnits.hh" 40 #include "G4SystemOfUnits.hh" 40 #include "G4ParticleDefinition.hh" 41 #include "G4ParticleDefinition.hh" 41 #include "G4ParticleTable.hh" 42 #include "G4ParticleTable.hh" 42 #include "G4ProcessManager.hh" 43 #include "G4ProcessManager.hh" 43 #include "G4ComponentGGHadronNucleusXsc.hh" << 44 #include "G4CrossSectionInelastic.hh" << 45 44 46 #include "G4HadronicParameters.hh" << 45 #include "G4ChipsKaonMinusInelasticXS.hh" >> 46 #include "G4ChipsKaonPlusInelasticXS.hh" >> 47 #include "G4ChipsKaonZeroInelasticXS.hh" >> 48 #include "G4CrossSectionDataSetRegistry.hh" 47 49 48 50 49 G4BertiniKaonBuilder:: 51 G4BertiniKaonBuilder:: 50 G4BertiniKaonBuilder() 52 G4BertiniKaonBuilder() 51 { 53 { 52 kaonCrossSection = new G4CrossSectionInelas << 54 ChipsKaonMinus = G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsKaonMinusInelasticXS::Default_Name()); 53 theMin = 0.0; << 55 ChipsKaonPlus = G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsKaonPlusInelasticXS::Default_Name()); 54 theMax = G4HadronicParameters::Instance()-> << 56 ChipsKaonZero = G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsKaonZeroInelasticXS::Default_Name()); >> 57 >> 58 theMin = 0*GeV; >> 59 theMax = 9.9*GeV; 55 theModel = new G4CascadeInterface; 60 theModel = new G4CascadeInterface; 56 theModel->SetMinEnergy(theMin); 61 theModel->SetMinEnergy(theMin); 57 theModel->SetMaxEnergy(theMax); 62 theModel->SetMaxEnergy(theMax); 58 } 63 } 59 64 60 void G4BertiniKaonBuilder:: 65 void G4BertiniKaonBuilder:: 61 Build(G4HadronInelasticProcess * aP) << 66 Build(G4KaonPlusInelasticProcess * aP) >> 67 { >> 68 aP->RegisterMe(theModel); >> 69 theModel->SetMinEnergy(theMin); >> 70 theModel->SetMaxEnergy(theMax); >> 71 aP->AddDataSet(ChipsKaonPlus); >> 72 } >> 73 >> 74 void G4BertiniKaonBuilder:: >> 75 Build(G4KaonMinusInelasticProcess * aP) 62 { 76 { 63 aP->RegisterMe(theModel); 77 aP->RegisterMe(theModel); 64 theModel->SetMinEnergy(theMin); 78 theModel->SetMinEnergy(theMin); 65 theModel->SetMaxEnergy(theMax); 79 theModel->SetMaxEnergy(theMax); 66 aP->AddDataSet(kaonCrossSection); << 80 aP->AddDataSet(ChipsKaonMinus); 67 } 81 } >> 82 >> 83 void G4BertiniKaonBuilder:: >> 84 Build(G4KaonZeroLInelasticProcess * aP) >> 85 { >> 86 aP->RegisterMe(theModel); >> 87 theModel->SetMinEnergy(theMin); >> 88 theModel->SetMaxEnergy(theMax); >> 89 aP->AddDataSet(ChipsKaonZero); >> 90 } >> 91 >> 92 void G4BertiniKaonBuilder:: >> 93 Build(G4KaonZeroSInelasticProcess * aP) >> 94 { >> 95 aP->RegisterMe(theModel); >> 96 theModel->SetMinEnergy(theMin); >> 97 theModel->SetMaxEnergy(theMax); >> 98 aP->AddDataSet(ChipsKaonZero); >> 99 } >> 100 68 101