Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4HadronPhysicsNuBeam.cc
Go to the documentation of this file.
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//
28//---------------------------------------------------------------------------
29//
30// ClassName: HadronPhysicsNuBeam
31//
32// Author: Julia Yarba, FNAL/CD (2013)
33// created from (molded after) HadronPhysicsFTFP_BERT
34//
35// Modified:
36//
37//----------------------------------------------------------------------------
38//
39#include <iomanip>
40
43#include "G4ProtonBuilder.hh"
46#include "globals.hh"
47#include "G4ios.hh"
48#include "G4SystemOfUnits.hh"
49
50#include "G4PhysListUtil.hh"
52
53// factory
55//
57
59 G4HadronPhysicsNuBeam("hInelasticNuBeam",false)
60{}
61
63 : G4HadronPhysicsFTFP_BERT(name,quasiElastic)
64{
65 // specific transition energies should be defined here
66
67 //minFTFP_neutron = 4.0*GeV;
68 //maxBERT_neutron = 5.0*GeV;
69 minFTFP_proton = 3.0*GeV;
70 maxFTFP_proton = 101.0*GeV;
71 //maxBERT_proton = 3.5*GeV;
72 //minFTFP_pion = minFTFP_kaon = 3.0*GeV;
73 //maxBERT_pion = maxBERT_kaon = 3.5*GeV;
74}
75
77{
79 G4bool useFactorXS = param->ApplyFactorXS();
80
81 auto pro = new G4ProtonBuilder;
82 AddBuilder(pro);
83 // this is the new "custom" proton builder, tentatively for NuBeam
84 //
85 // no need to set the min energy because it's set in the ProBuilder
86 // ... and theMax will be set via Build()
87 //
88 // also explicitly set quasi-elastic key ON for QGS
89 // (it should be OFF for FTF, controlled by QuasiElastic)
90 //
91 auto qgsppro = new G4QGSPLundStrFragmProtonBuilder( true );
92 AddBuilder(qgsppro);
93 pro->RegisterMe(qgsppro);
94 //
95 // standard FTFP builder, but energy range is adjusted
96 //
97 auto ftfppro = new G4FTFPProtonBuilder(QuasiElastic);
98 AddBuilder(ftfppro);
99 pro->RegisterMe(ftfppro);
100 ftfppro->SetMinEnergy(minFTFP_proton);
101 ftfppro->SetMaxEnergy(maxFTFP_proton);
102 //
103 // standard Bertini builder
104 //
105 auto bertpro = new G4BertiniProtonBuilder;
106 AddBuilder(bertpro);
107 pro->RegisterMe(bertpro);
108 bertpro->SetMaxEnergy(maxBERT_proton);
109 pro->Build();
110
111 const G4ParticleDefinition* proton = G4Proton::Proton();
113 if(inel) {
114 if( useFactorXS ) inel->MultiplyCrossSectionBy( param->XSFactorNucleonInelastic() );
115 }
116}
117
119{
121 DumpBanner();
122 }
123 CreateModels();
124}
#define G4_DECLARE_PHYSCONSTR_FACTORY(physics_constructor)
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
G4HadronPhysicsNuBeam(G4int verbose=1)
virtual void Proton() override
static G4HadronicParameters * Instance()
G4double XSFactorNucleonInelastic() const
void MultiplyCrossSectionBy(G4double factor)
static G4HadronicProcess * FindInelasticProcess(const G4ParticleDefinition *)
static G4Proton * Proton()
Definition: G4Proton.cc:92
void AddBuilder(G4PhysicsBuilderInterface *bld)
G4bool IsMasterThread()
Definition: G4Threading.cc:124