// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // G4ParticleHPThermalScattering // // Class Description: // // Final State Generators for a high precision (based on evaluated data // libraries) description of themal neutron scattering below 4 eV; // Based on Thermal neutron scattering files // from the evaluated nuclear data files ENDF/B-VI, Release2 // To be used in your physics list in case you need this physics. // In this case you want to register an object of this class with // the corresponding process. // // Author: T. Koi (SLAC/SCCS), November-2006 - First implementation. // P. Arce (CIEMAT), June-2014 - Conversion neutron_hp to particle_hp // -------------------------------------------------------------------- #ifndef G4ParticleHPThermalScattering_h #define G4ParticleHPThermalScattering_h 1 #include "G4HadronicInteraction.hh" #include "G4ParticleHPThermalScatteringNames.hh" #include "globals.hh" class G4ParticleHPThermalScatteringData; class G4ParticleHPElastic; struct E_isoAng { G4double energy; G4int n; std::vector isoAngle; E_isoAng() { energy = 0.0; n = 0; }; }; struct E_P_E_isoAng { G4double energy; G4int n; std::vector prob; std::vector vE_isoAngle; G4double sum_of_probXdEs; // should be close to 1 std::vector secondary_energy_cdf; std::vector secondary_energy_pdf; std::vector secondary_energy_value; G4int secondary_energy_cdf_size; E_P_E_isoAng() { energy = 0.0; n = 0; sum_of_probXdEs = 0.0; secondary_energy_cdf_size = 0; }; }; class G4ParticleHPThermalScattering : public G4HadronicInteraction { public: G4ParticleHPThermalScattering(); ~G4ParticleHPThermalScattering() override; G4HadFinalState* ApplyYourself(const G4HadProjectile& aTrack, G4Nucleus& aTargetNucleus) override; const std::pair GetFatalEnergyCheckLevels() const override; // For user prepared thermal files // Name of G4Element , Name of NDL file void AddUserThermalScatteringFile(const G4String&, const G4String&); void BuildPhysicsTable(const G4ParticleDefinition&) override; void ModelDescription(std::ostream& outFile) const override; private: void clearCurrentFSData(); G4double getMu(E_isoAng*); G4double getMu(G4double rndm1, G4double rndm2, E_isoAng* anEPM); std::pair find_LH(G4double, std::vector*); G4double get_linear_interpolated(G4double, std::pair, std::pair); E_isoAng create_E_isoAng_from_energy(G4double, std::vector*); G4double get_secondary_energy_from_E_P_E_isoAng(G4double random, E_P_E_isoAng* anE_P_E_isoAng); std::pair sample_inelastic_E_mu(G4double pE, std::vector* vNEP_EPM); std::pair sample_inelastic_E(G4double rndm1, G4double rndm2, E_P_E_isoAng* anE_P_E_isoAng); std::pair create_sE_and_EPM_from_pE_and_vE_P_E_isoAng(G4double, G4double, std::vector*); void buildPhysicsTable(); G4int getTS_ID(const G4Material*, const G4Element*); G4bool check_E_isoAng(E_isoAng*); private: G4ParticleHPThermalScatteringNames names; // Coherent Elastic // ElementID temp BraggE cumulativeP std::map*>*>*>* coherentFSs{nullptr}; std::map*>*>* readACoherentFSDATA(const G4String&); // Incoherent Elastic // ElementID temp aFS for this temp (and this element) std::map*>*>* incoherentFSs{nullptr}; std::map*>* readAnIncoherentFSDATA(const G4String&); E_isoAng* readAnE_isoAng(std::istream*); // Inelastic // ElementID temp aFS for this temp (and this element) std::map*>*>* inelasticFSs{nullptr}; std::map*>* readAnInelasticFSDATA(const G4String&); E_P_E_isoAng* readAnE_P_E_isoAng(std::istream*); G4ParticleHPThermalScatteringData* theXSection; G4ParticleHPElastic* theHPElastic; std::map, G4int> dic; // In order to judge whether the rebuilding of physics table is a necessity or not std::size_t nMaterial; std::size_t nElement; }; #endif