source: trunk/source/processes/hadronic/models/neutron_hp/include/G4NeutronHPInelastic.hh @ 1340

Last change on this file since 1340 was 1340, checked in by garnier, 14 years ago

update ti head

File size: 5.6 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//
27// $Id: G4NeutronHPInelastic.hh,v 1.9 2006/06/29 20:48:05 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03-ref-09 $
29//
30 // Hadronic Process: High Precision low E neutron tracking
31 // original by H.P. Wellisch, TRIUMF, 14-Feb-97
32 // Builds and has the Cross-section data for one material.
33 
34#ifndef G4NeutronHPInelastic_h
35#define G4NeutronHPInelastic_h 1
36
37// Class Description
38// Final state production model for a high precision (based on evaluated data
39// libraries) description of neutron inelastic scattering below 20 MeV;
40// 36 exclusive final states are consideded.
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
46#include "globals.hh"
47#include "G4NeutronHPChannel.hh"
48#include "G4HadronicInteraction.hh"
49#include "G4NeutronHPChannelList.hh"
50
51#include "G4NeutronHP2AInelasticFS.hh"
52#include "G4NeutronHP2N2AInelasticFS.hh"
53#include "G4NeutronHP2NAInelasticFS.hh"
54#include "G4NeutronHP2NDInelasticFS.hh"
55#include "G4NeutronHP2NInelasticFS.hh"
56#include "G4NeutronHP2NPInelasticFS.hh"
57#include "G4NeutronHP2PInelasticFS.hh"
58#include "G4NeutronHP3AInelasticFS.hh"
59#include "G4NeutronHP3NAInelasticFS.hh"
60#include "G4NeutronHP3NInelasticFS.hh"
61#include "G4NeutronHP3NPInelasticFS.hh"
62#include "G4NeutronHP4NInelasticFS.hh"
63#include "G4NeutronHPAInelasticFS.hh"
64#include "G4NeutronHPD2AInelasticFS.hh"
65#include "G4NeutronHPDAInelasticFS.hh"
66#include "G4NeutronHPDInelasticFS.hh"
67#include "G4NeutronHPHe3InelasticFS.hh"
68#include "G4NeutronHPN2AInelasticFS.hh"
69#include "G4NeutronHPN2PInelasticFS.hh"
70#include "G4NeutronHPN3AInelasticFS.hh"
71#include "G4NeutronHPNAInelasticFS.hh"
72#include "G4NeutronHPND2AInelasticFS.hh"
73#include "G4NeutronHPNDInelasticFS.hh"
74#include "G4NeutronHPNHe3InelasticFS.hh"
75#include "G4NeutronHPNInelasticFS.hh"
76#include "G4NeutronHPNPAInelasticFS.hh"
77#include "G4NeutronHPNPInelasticFS.hh"
78#include "G4NeutronHPNT2AInelasticFS.hh"
79#include "G4NeutronHPNTInelasticFS.hh"
80#include "G4NeutronHPNXInelasticFS.hh"
81#include "G4NeutronHPPAInelasticFS.hh"
82#include "G4NeutronHPPDInelasticFS.hh"
83#include "G4NeutronHPPInelasticFS.hh"
84#include "G4NeutronHPPTInelasticFS.hh"
85#include "G4NeutronHPT2AInelasticFS.hh"
86#include "G4NeutronHPTInelasticFS.hh"
87
88class G4NeutronHPInelastic : public G4HadronicInteraction
89{
90  public: 
91 
92  G4NeutronHPInelastic();
93
94  ~G4NeutronHPInelastic();
95 
96  G4HadFinalState * ApplyYourself(const G4HadProjectile & aTrack, G4Nucleus & aTargetNucleus);
97
98  private:
99 
100  G4double * xSec;
101  G4NeutronHPChannelList * theInelastic; // one List per element
102  G4String dirName;
103  G4int numEle;
104 
105  private:
106 
107   G4NeutronHP2AInelasticFS the2AFS;
108   G4NeutronHP2N2AInelasticFS the2N2AFS;
109   G4NeutronHP2NAInelasticFS the2NAFS;
110   G4NeutronHP2NDInelasticFS the2NDFS;
111   G4NeutronHP2NInelasticFS the2NFS;
112   G4NeutronHP2NPInelasticFS the2NPFS;
113   G4NeutronHP2PInelasticFS the2PFS;
114   G4NeutronHP3AInelasticFS the3AFS;
115   G4NeutronHP3NAInelasticFS the3NAFS;
116   G4NeutronHP3NInelasticFS the3NFS;
117   G4NeutronHP3NPInelasticFS the3NPFS;
118   G4NeutronHP4NInelasticFS the4NFS;
119   G4NeutronHPAInelasticFS theAFS;
120   G4NeutronHPD2AInelasticFS theD2AFS;
121   G4NeutronHPDAInelasticFS theDAFS;
122   G4NeutronHPDInelasticFS theDFS;
123   G4NeutronHPHe3InelasticFS theHe3FS;
124   G4NeutronHPN2AInelasticFS theN2AFS;
125   G4NeutronHPN2PInelasticFS theN2PFS;
126   G4NeutronHPN3AInelasticFS theN3AFS;
127   G4NeutronHPNAInelasticFS theNAFS;
128   G4NeutronHPND2AInelasticFS theND2AFS;
129   G4NeutronHPNDInelasticFS theNDFS;
130   G4NeutronHPNHe3InelasticFS theNHe3FS;
131   G4NeutronHPNInelasticFS theNFS;
132   G4NeutronHPNPAInelasticFS theNPAFS;
133   G4NeutronHPNPInelasticFS theNPFS;
134   G4NeutronHPNT2AInelasticFS theNT2AFS;
135   G4NeutronHPNTInelasticFS theNTFS;
136   G4NeutronHPNXInelasticFS theNXFS;
137   G4NeutronHPPAInelasticFS thePAFS;
138   G4NeutronHPPDInelasticFS thePDFS;
139   G4NeutronHPPInelasticFS thePFS;
140   G4NeutronHPPTInelasticFS thePTFS;
141   G4NeutronHPT2AInelasticFS theT2AFS;
142   G4NeutronHPTInelasticFS theTFS;
143};
144
145#endif
Note: See TracBrowser for help on using the repository browser.