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

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

update ti head

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