Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4NeutronHPElasticVI.hh
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// Geant4 header : G4NeutronHPElasticVI
27//
28// Created: 15 October 2023
29// Author V.Ivanchenko
30//
31// Class Description:
32// Neutron HP elastic scattering model below 20 MeV
33//
34
35#ifndef G4NeutronHPElasticVI_h
36#define G4NeutronHPElasticVI_h 1
37
38// Class Description
39// Final state production model for a high precision (based on evaluated data
40// libraries) description of neutron elastic scattering below 20 MeV;
41// To be used in your physics list in case you need this physics.
42// In this case you want to register an object of this class with
43// the corresponding process.
44// Class Description - End
45
48#include "globals.hh"
49
52
54{
55 public:
57
58 ~G4NeutronHPElasticVI() override;
59
61 G4Nucleus& aTargetNucleus) override;
62
63 void BuildPhysicsTable(const G4ParticleDefinition&) override;
64
65 const std::pair<G4double, G4double> GetFatalEnergyCheckLevels() const override;
66
67 void ModelDescription(std::ostream& outFile) const override;
68
71 (const G4NeutronHPElasticVI &right) = delete;
72
73 private:
74
75 void InitialiseOnFly();
76
77 void Initialise();
78
79 G4ParticleHPManager* fManagerHP;
80 G4bool fInitializer{false};
81
82 static G4bool fLock;
83 static constexpr G4int ZMAXHPE{101}; // 101 because Z range is 1-100
84 static G4ParticleHPChannel* theElastic[ZMAXHPE];
85};
86
87#endif
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
void ModelDescription(std::ostream &outFile) const override
G4NeutronHPElasticVI(G4NeutronHPElasticVI &)=delete
G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &aTargetNucleus) override
const std::pair< G4double, G4double > GetFatalEnergyCheckLevels() const override
void BuildPhysicsTable(const G4ParticleDefinition &) override