source: trunk/source/processes/hadronic/models/neutron_hp/include/G4NeutronHPThermalScattering.hh

Last change on this file was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 4.8 KB
Line 
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#ifndef G4NeutronHPThermalScattering_h
27#define G4NeutronHPThermalScattering_h 1
28
29// Thermal Neutron Scattering
30// Koi, Tatsumi (SLAC/SCCS)
31//
32// Class Description
33// Final State Generators for a high precision (based on evaluated data
34// libraries) description of themal neutron scattering below 4 eV;
35// Based on Thermal neutron scattering files
36// from the evaluated nuclear data files ENDF/B-VI, Release2
37// To be used in your physics list in case you need this physics.
38// In this case you want to register an object of this class with
39// the corresponding process.
40// Class Description - End
41
42#include "globals.hh"
43#include "G4NeutronHPThermalScatteringNames.hh"
44#include "G4NeutronHPThermalScatteringData.hh"
45#include "G4NeutronHPElastic.hh"
46#include "G4HadronicInteraction.hh"
47
48struct E_isoAng
49{
50   G4double energy;
51   G4int n;
52   std::vector < G4double > isoAngle; 
53};
54
55struct E_P_E_isoAng
56{
57   G4double energy;
58   G4int n;
59   std::vector < G4double > prob; 
60   std::vector < E_isoAng* > vE_isoAngle; 
61   G4double sum_of_probXdEs;  // should be close to 1
62};
63
64class G4NeutronHPThermalScattering : public G4HadronicInteraction
65{
66   public: 
67 
68      G4NeutronHPThermalScattering();
69 
70      ~G4NeutronHPThermalScattering();
71 
72       G4HadFinalState * ApplyYourself(const G4HadProjectile& aTrack, G4Nucleus& aTargetNucleus);
73
74      //G4int GetNiso() {return theElastic[0].GetNiso();}
75
76   private:
77
78      G4NeutronHPThermalScatteringNames names;
79
80      // Coherent Elastic
81      //         ElementID             temp                                BraggE    cumulativeP
82      std::map < G4int , std::map < G4double , std::vector < std::pair< G4double , G4double >* >* >* > coherentFSs;
83      std::map < G4double , std::vector < std::pair< G4double , G4double >* >* >* readACoherentFSDATA( G4String );
84
85      // Incoherent Elastic
86      //         ElementID          temp        aFS for this temp (and this element)
87      std::map < G4int , std::map < G4double , std::vector < E_isoAng* >* >* > incoherentFSs;
88      std::map < G4double , std::vector < E_isoAng* >* >* readAnIncoherentFSDATA( G4String );
89      E_isoAng* readAnE_isoAng ( std::ifstream* );
90
91      // Inelastic
92      //         ElementID          temp         aFS for this temp (and this element)
93      std::map < G4int ,  std::map < G4double , std::vector < E_P_E_isoAng* >* >* > inelasticFSs;
94      std::map < G4double , std::vector < E_P_E_isoAng* >* >* readAnInelasticFSDATA( G4String );
95      E_P_E_isoAng* readAnE_P_E_isoAng ( std::ifstream* );
96 
97
98      G4NeutronHPThermalScatteringData* theXSection;
99      G4double * xSec;
100      G4String dirName;
101      G4int numEle;
102
103
104
105      G4NeutronHPElastic* theHPElastic;
106     
107      G4double getMu ( E_isoAng* );
108
109      std::pair< G4double , G4double > find_LH ( G4double , std::vector<G4double>* );
110      G4double get_linear_interpolated ( G4double , std::pair < G4double , G4double > , std::pair < G4double , G4double > );
111
112      E_isoAng create_E_isoAng_from_energy( G4double , std::vector< E_isoAng* >* );
113
114      G4double get_secondary_energy_from_E_P_E_isoAng ( G4double , E_P_E_isoAng* );
115
116      std::pair< G4double , E_isoAng > create_sE_and_EPM_from_pE_and_vE_P_E_isoAng ( G4double , G4double , std::vector < E_P_E_isoAng* >* );
117
118
119};
120
121#endif
Note: See TracBrowser for help on using the repository browser.