source: trunk/source/processes/hadronic/models/rpg/include/G4RPGPionInelastic.hh @ 1340

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

update ti head

File size: 4.0 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// $Id: G4RPGPionInelastic.hh,v 1.2 2009/05/25 19:05:34 dennis Exp $
27// GEANT4 tag $Name: geant4-09-03-ref-09 $
28//
29// Author: D. H. Wright
30// Date:   15 August 2007
31//
32
33#ifndef G4RPGPionInelastic_h
34#define G4RPGPionInelastic_h 1
35 
36// Class Description:
37// Partial cross sections, multiplicities and final state particle types
38// required for pi+ and pi- inelastic scattering in the re-parameterized
39// Gheisha model
40
41#include "G4RPGInelastic.hh"
42 
43 class G4RPGPionInelastic : public G4RPGInelastic
44 {
45 public:
46   
47   G4RPGPionInelastic(const G4String& modelName = "RPGPionInelastic");
48   
49   ~G4RPGPionInelastic() { }
50
51   //   void printCrossSections() const;
52   
53 protected:
54
55   G4int GetMultiplicityT12(G4double KE) const;
56   G4int GetMultiplicityT32(G4double KE) const;
57
58   std::vector<G4int>
59   GetFSPartTypesForT32(G4int mult, G4double KE, G4int tindex) const;
60   std::vector<G4int>
61   GetFSPartTypesForT12(G4int mult, G4double KE, G4int tindex) const;
62
63   std::vector<G4int> GetFSPartTypesForPipP(G4int mult, G4double KE) const
64     {return GetFSPartTypesForT32(mult, KE, 0); }
65
66   std::vector<G4int> GetFSPartTypesForPimN(G4int mult, G4double KE) const
67     {return GetFSPartTypesForT32(mult, KE, 1); }
68
69   std::vector<G4int> GetFSPartTypesForPipN(G4int mult, G4double KE) const
70     {return GetFSPartTypesForT12(mult, KE, 1); }
71
72   std::vector<G4int> GetFSPartTypesForPimP(G4int mult, G4double KE) const
73     {return GetFSPartTypesForT12(mult, KE, 0); }
74
75   static const G4int pipPindex[8][2];
76   static const G4int pimPindex[8][2];
77
78   static const G4int T32_2bfs[2][2][2];
79   static const G4int T32_3bfs[2][7][3];
80   static const G4int T32_4bfs[2][15][4];
81   static const G4int T32_5bfs[2][24][5];
82   static const G4int T32_6bfs[2][5][6];
83   static const G4int T32_7bfs[2][6][7];
84   static const G4int T32_8bfs[2][7][8];
85   static const G4int T32_9bfs[2][8][9];
86
87   static const G4int T12_2bfs[2][5][2];
88   static const G4int T12_3bfs[2][13][3];
89   static const G4int T12_4bfs[2][22][4];
90   static const G4int T12_5bfs[2][31][5];
91   static const G4int T12_6bfs[2][6][6];
92   static const G4int T12_7bfs[2][7][7];
93   static const G4int T12_8bfs[2][8][8];
94   static const G4int T12_9bfs[2][9][9];
95
96   static G4double pipPtot[30];
97   static G4double pimPtot[30];
98   static G4double t12_dSigma_dMult[8][30];
99   static G4double t32_dSigma_dMult[8][30];
100
101   static const G4float pipPCrossSections[74][30];
102   static const G4float pimPCrossSections[101][30];
103
104 };
105#endif
Note: See TracBrowser for help on using the repository browser.