source: trunk/source/processes/hadronic/cross_sections/include/G4HadronNucleonXsc.hh @ 1228

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

update geant4.9.3 tag

File size: 4.4 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// Calculation of the total, elastic and inelastic cross-sections
27// based on parametrisations of (proton, pion, kaon, photon) nucleon
28// cross-sections and the hadron-nucleous cross-section model in
29// the framework of Glauber-Gribov approach
30//
31//
32//
33//
34//
35// 14.03.07 V. Grichine - first implementation
36//
37//
38
39#ifndef G4HadronNucleonXsc_h
40#define G4HadronNucleonXsc_h
41
42#include "globals.hh"
43#include "G4Proton.hh"
44#include "G4Nucleus.hh"
45
46
47class G4ParticleDefinition;
48class G4DynamicParticle;
49
50class G4HadronNucleonXsc 
51{
52public:
53
54  G4HadronNucleonXsc ();
55  virtual ~G4HadronNucleonXsc ();
56   
57  virtual
58  G4bool IsApplicable(const G4DynamicParticle* aDP, const G4Element*);
59
60  virtual
61  G4bool IsZAApplicable(const G4DynamicParticle* aDP, G4double Z, G4double A);
62
63  virtual
64  void DumpPhysicsTable(const G4ParticleDefinition&) 
65  {G4cout << "G4HadronNucleonXsc: uses parametrisation"<<G4endl;}
66
67  // Xsc parametrisations
68
69  G4double GetHadronNucleonXscEL(const G4DynamicParticle*, const G4ParticleDefinition*);
70
71  G4double GetHadronNucleonXscPDG(const G4DynamicParticle*, const G4ParticleDefinition*);
72
73  G4double GetHadronNucleonXscNS(const G4DynamicParticle*, const G4ParticleDefinition*);
74
75  G4double GetHadronNucleonXscVU(const G4DynamicParticle*, const G4ParticleDefinition*);
76
77  // kinematics and set/get
78
79  G4double CalculateEcmValue ( const G4double , const G4double , const G4double ); 
80
81  G4double CalcMandelstamS( const G4double , const G4double , const G4double );
82
83  G4double GetTotalHadronNucleonXsc()    { return fTotalXsc;     }; 
84  G4double GetElasticHadronNucleonXsc()  { return fElasticXsc;   }; 
85  G4double GetInelasticHadronNucleonXsc(){ return fInelasticXsc; }; 
86
87private:
88
89  const G4double fUpperLimit;
90  const G4double fLowerLimit; 
91
92  G4double fTotalXsc, fElasticXsc, fInelasticXsc;
93  G4double fHadronNucleonXsc;
94 
95  G4ParticleDefinition* theGamma;
96  G4ParticleDefinition* theProton;
97  G4ParticleDefinition* theNeutron;
98  G4ParticleDefinition* theAProton;
99  G4ParticleDefinition* theANeutron;
100  G4ParticleDefinition* thePiPlus;
101  G4ParticleDefinition* thePiMinus;
102  G4ParticleDefinition* thePiZero;
103  G4ParticleDefinition* theKPlus;
104  G4ParticleDefinition* theKMinus;
105  G4ParticleDefinition* theK0S;
106  G4ParticleDefinition* theK0L;
107  G4ParticleDefinition* theL;
108  G4ParticleDefinition* theAntiL;
109  G4ParticleDefinition* theSPlus;
110  G4ParticleDefinition* theASPlus;
111  G4ParticleDefinition* theSMinus;
112  G4ParticleDefinition* theASMinus;
113  G4ParticleDefinition* theS0;
114  G4ParticleDefinition* theAS0;
115  G4ParticleDefinition* theXiMinus;
116  G4ParticleDefinition* theXi0;
117  G4ParticleDefinition* theAXiMinus;
118  G4ParticleDefinition* theAXi0;
119  G4ParticleDefinition* theOmega;
120  G4ParticleDefinition* theAOmega;
121  G4ParticleDefinition* theD;
122  G4ParticleDefinition* theT;
123  G4ParticleDefinition* theA;
124  G4ParticleDefinition* theHe3;
125
126};
127
128
129#endif
Note: See TracBrowser for help on using the repository browser.