101{
104
106 auto inel = new G4HadronInelasticProcess( "neutronInelastic", neutron );
107 neutron->GetProcessManager()->AddDiscreteProcess(inel);
108
111 qgs.Build(inel);
112
116 ftf.Build(inel);
117
118 G4BertiniNeutronBuilder bert;
122
123 auto xsinel = new G4NeutronInelasticXS();
124 inel->AddDataSet( xsinel );
125 inel->AddDataSet( new G4NeutronHPInelasticXS() );
126 auto mod = new G4NeutronHPInelasticVI();
127 mod->SetMaxEnergy( 20*CLHEP::MeV );
128 inel->RegisterMe( mod );
129 if ( useFactorXS )
131
132 auto capture = new G4NeutronCaptureProcess( "nCaptureHP" );
133 neutron->GetProcessManager()->AddDiscreteProcess(capture);
134 capture->AddDataSet( new G4NeutronHPCaptureXS() );
136 capture->RegisterMe( new G4NuDEXNeutronCaptureModel() );
137 } else {
138 capture->RegisterMe( new G4NeutronRadCaptureHP() );
139 }
140
141 auto fission = new G4NeutronFissionProcess( "nFissionHP" );
142 neutron->GetProcessManager()->AddDiscreteProcess(fission);
143 fission->AddDataSet( new G4NeutronHPFissionXS() );
144 fission->RegisterMe( new G4NeutronFissionVI() );
145}
virtual void SetMaxEnergy(G4double aM) final override
virtual void SetMinEnergy(G4double aM) final override
virtual void Build(G4HadronElasticProcess *) final override
G4bool ApplyFactorXS() const
G4bool EnableNUDEX() const
G4double XSFactorNucleonInelastic() const
static G4Neutron * Neutron()