source: trunk/source/processes/hadronic/cross_sections/include/G4GlauberGribovCrossSection.hh @ 847

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

import all except CVS

File size: 6.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// 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// 17.07.06 V. Grichine - first implementation
36// 22.01.07 V.Ivanchenko - add interface with Z and A
37// 05.03.07 V.Ivanchenko - add IfZAApplicable
38// 06.03.07 V.Ivanchenko - add GetElasticGlauberGribov and GetElasticGlauberGribov
39//                         for combined dataset
40//
41//
42
43#ifndef G4GlauberGribovCrossSection_h
44#define G4GlauberGribovCrossSection_h
45
46#include "globals.hh"
47#include "G4Proton.hh"
48#include "G4Nucleus.hh"
49
50#include "G4VCrossSectionDataSet.hh"
51
52class G4ParticleDefinition;
53
54class G4GlauberGribovCrossSection : public G4VCrossSectionDataSet
55{
56public:
57
58  G4GlauberGribovCrossSection ();
59  virtual ~G4GlauberGribovCrossSection ();
60   
61  virtual
62  G4bool IsApplicable(const G4DynamicParticle* aDP, const G4Element*);
63
64  virtual
65  G4bool IsZAApplicable(const G4DynamicParticle* aDP, G4double Z, G4double A);
66
67  virtual
68  G4double GetCrossSection(const G4DynamicParticle*, 
69                           const G4Element*, 
70                           G4double aTemperature = 0.0);
71
72  virtual
73  G4double GetIsoZACrossSection(const G4DynamicParticle*, 
74                                G4double Z, G4double A, 
75                                G4double aTemperature = 0.0);
76
77  virtual
78  void BuildPhysicsTable(const G4ParticleDefinition&)
79  {}
80
81  virtual
82  void DumpPhysicsTable(const G4ParticleDefinition&) 
83  {G4cout << "G4GlauberGribovCrossSection: uses Glauber-Gribov formula"<<G4endl;}
84
85  G4double GetRatioSD(const G4DynamicParticle*, G4double At, G4double Zt);
86  G4double GetRatioQE(const G4DynamicParticle*, G4double At, G4double Zt);
87
88  G4double GetHadronNucleonXsc(const G4DynamicParticle*, const G4Element*);
89  G4double GetHadronNucleonXsc(const G4DynamicParticle*, G4double At, G4double Zt);
90
91  G4double GetHadronNucleonXscPDG(const G4DynamicParticle*, const G4Element*);
92  G4double GetHadronNucleonXscPDG(const G4DynamicParticle*, G4double At, G4double Zt);
93
94  G4double GetHadronNucleonXscNS(const G4DynamicParticle*, const G4Element*);
95  G4double GetHadronNucleonXscNS(const G4DynamicParticle*,G4double At, G4double Zt);
96
97  G4double GetHNinelasticXsc(const G4DynamicParticle*, const G4Element*);
98  G4double GetHNinelasticXsc(const G4DynamicParticle*, G4double At, G4double Zt);
99  G4double GetHNinelasticXscVU(const G4DynamicParticle*, G4double At, G4double Zt);
100  G4double GetHadronNucleonXscMK(const G4DynamicParticle* aParticle, 
101                                 const G4ParticleDefinition* nucleon  ); 
102
103  G4double CalculateEcmValue ( const G4double , const G4double , const G4double ); 
104
105  G4double CalcMandelstamS( const G4double , const G4double , const G4double );
106
107  G4double GetElasticGlauberGribov(const G4DynamicParticle*,G4double Z, G4double A);
108  G4double GetInelasticGlauberGribov(const G4DynamicParticle*,G4double Z, G4double A);
109
110  G4double GetTotalGlauberGribovXsc()    { return fTotalXsc;     }; 
111  G4double GetElasticGlauberGribovXsc()  { return fElasticXsc;   }; 
112  G4double GetInelasticGlauberGribovXsc(){ return fInelasticXsc; }; 
113  G4double GetProductionGlauberGribovXsc(){ return fProductionXsc; }; 
114  G4double GetDiffractionGlauberGribovXsc(){ return fDiffractionXsc; }; 
115  G4double GetRadiusConst()              { return fRadiusConst;  }; 
116
117  G4double GetNucleusRadius(const G4DynamicParticle*, const G4Element*);
118  G4double GetNucleusRadius(G4double At);
119
120private:
121
122  const G4double fUpperLimit;
123  const G4double fLowerLimit; 
124  const G4double fRadiusConst;
125
126  G4double fTotalXsc, fElasticXsc, fInelasticXsc, fProductionXsc, fDiffractionXsc;
127  G4double fHadronNucleonXsc;
128 
129  G4ParticleDefinition* theGamma;
130  G4ParticleDefinition* theProton;
131  G4ParticleDefinition* theNeutron;
132  G4ParticleDefinition* theAProton;
133  G4ParticleDefinition* theANeutron;
134  G4ParticleDefinition* thePiPlus;
135  G4ParticleDefinition* thePiMinus;
136  G4ParticleDefinition* thePiZero;
137  G4ParticleDefinition* theKPlus;
138  G4ParticleDefinition* theKMinus;
139  G4ParticleDefinition* theK0S;
140  G4ParticleDefinition* theK0L;
141  G4ParticleDefinition* theL;
142  G4ParticleDefinition* theAntiL;
143  G4ParticleDefinition* theSPlus;
144  G4ParticleDefinition* theASPlus;
145  G4ParticleDefinition* theSMinus;
146  G4ParticleDefinition* theASMinus;
147  G4ParticleDefinition* theS0;
148  G4ParticleDefinition* theAS0;
149  G4ParticleDefinition* theXiMinus;
150  G4ParticleDefinition* theXi0;
151  G4ParticleDefinition* theAXiMinus;
152  G4ParticleDefinition* theAXi0;
153  G4ParticleDefinition* theOmega;
154  G4ParticleDefinition* theAOmega;
155  G4ParticleDefinition* theD;
156  G4ParticleDefinition* theT;
157  G4ParticleDefinition* theA;
158  G4ParticleDefinition* theHe3;
159
160};
161
162inline
163G4double G4GlauberGribovCrossSection::GetElasticGlauberGribov(
164         const G4DynamicParticle* dp, G4double Z, G4double A)
165{
166  GetIsoZACrossSection(dp, Z, A);
167  return fElasticXsc;
168}
169
170inline
171G4double G4GlauberGribovCrossSection::GetInelasticGlauberGribov(
172         const G4DynamicParticle* dp, G4double Z, G4double A)
173{
174  GetIsoZACrossSection(dp, Z, A);
175  return fInelasticXsc;
176}
177
178#endif
Note: See TracBrowser for help on using the repository browser.