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

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

import all except CVS

File size: 4.5 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
64
65
66  virtual
67  void DumpPhysicsTable(const G4ParticleDefinition&) 
68  {G4cout << "G4HadronNucleonXsc: uses parametrisation"<<G4endl;}
69
70  // Xsc parametrisations
71
72  G4double GetHadronNucleonXscEL(const G4DynamicParticle*, const G4ParticleDefinition*);
73
74  G4double GetHadronNucleonXscPDG(const G4DynamicParticle*, const G4ParticleDefinition*);
75
76  G4double GetHadronNucleonXscNS(const G4DynamicParticle*, const G4ParticleDefinition*);
77
78  G4double GetHadronNucleonXscVU(const G4DynamicParticle*, const G4ParticleDefinition*);
79
80  G4double GetHadronNucleonXscMK(const G4DynamicParticle*, const G4ParticleDefinition*);
81
82  // kinematics and set/get
83
84  G4double CalculateEcmValue ( const G4double , const G4double , const G4double ); 
85
86  G4double CalcMandelstamS( const G4double , const G4double , const G4double );
87
88  G4double GetTotalHadronNucleonXsc()    { return fTotalXsc;     }; 
89  G4double GetElasticHadronNucleonXsc()  { return fElasticXsc;   }; 
90  G4double GetInelasticHadronNucleonXsc(){ return fInelasticXsc; }; 
91
92private:
93
94  const G4double fUpperLimit;
95  const G4double fLowerLimit; 
96
97  G4double fTotalXsc, fElasticXsc, fInelasticXsc;
98  G4double fHadronNucleonXsc;
99 
100  G4ParticleDefinition* theGamma;
101  G4ParticleDefinition* theProton;
102  G4ParticleDefinition* theNeutron;
103  G4ParticleDefinition* theAProton;
104  G4ParticleDefinition* theANeutron;
105  G4ParticleDefinition* thePiPlus;
106  G4ParticleDefinition* thePiMinus;
107  G4ParticleDefinition* thePiZero;
108  G4ParticleDefinition* theKPlus;
109  G4ParticleDefinition* theKMinus;
110  G4ParticleDefinition* theK0S;
111  G4ParticleDefinition* theK0L;
112  G4ParticleDefinition* theL;
113  G4ParticleDefinition* theAntiL;
114  G4ParticleDefinition* theSPlus;
115  G4ParticleDefinition* theASPlus;
116  G4ParticleDefinition* theSMinus;
117  G4ParticleDefinition* theASMinus;
118  G4ParticleDefinition* theS0;
119  G4ParticleDefinition* theAS0;
120  G4ParticleDefinition* theXiMinus;
121  G4ParticleDefinition* theXi0;
122  G4ParticleDefinition* theAXiMinus;
123  G4ParticleDefinition* theAXi0;
124  G4ParticleDefinition* theOmega;
125  G4ParticleDefinition* theAOmega;
126  G4ParticleDefinition* theD;
127  G4ParticleDefinition* theT;
128  G4ParticleDefinition* theA;
129  G4ParticleDefinition* theHe3;
130
131};
132
133
134#endif
Note: See TracBrowser for help on using the repository browser.