source: trunk/source/processes/hadronic/models/chiral_inv_phase_space/interface/include/G4QuasiFreeRatios.hh @ 967

Last change on this file since 967 was 962, checked in by garnier, 15 years ago

update processes

File size: 4.8 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//
27// GEANT4 tag $Name: geant4-09-02-ref-02 $
28//
29//
30// GEANT4 physics class: G4QuasiFreeRatios -- header file
31// M.V. Kossov, ITEP(Moscow), 24-OCT-01
32// The last update: M.V. Kossov, CERN/ITEP (Moscow) 15-Oct-2006
33//
34
35#ifndef G4QuasiFreeRatios_h
36#define G4QuasiFreeRatios_h 1
37
38#include "globals.hh"
39#include "G4ios.hh"
40#include "Randomize.hh"
41#include <vector>
42//#include "G4DynamicParticle.hh"
43//#include "G4Element.hh"
44//#include "G4ParticleTable.hh"
45//#include "G4NucleiProperties.hh"
46//#include "G4NucleiPropertiesTable.hh"
47#include "G4QPDGCode.hh"
48#include "G4QHadron.hh"
49#include "G4VCrossSectionDataSet.hh"
50#include "G4QElasticCrossSection.hh"
51
52
53class G4QuasiFreeRatios
54{
55 protected:
56
57  G4QuasiFreeRatios();                 // Constructor
58
59 public:
60
61  ~G4QuasiFreeRatios();                 // Destructor
62
63  static G4QuasiFreeRatios* GetPointer(); // Gives a pointer to this singletone
64
65  // Pair(QuasiFree/Inelastic,QuasiElastic/QuasiFree)
66  std::pair<G4double,G4double> GetRatios(G4double pIU, G4int prPDG, G4int tgZ, G4int tgN);
67  // ChargeExchange/QuasiElastic factor pair<for protons (Z), for neutrons(N)>
68  std::pair<G4double,G4double> GetChExFactor(G4double pIU, G4int pPDG, G4int Z, G4int N);
69  // scatter (pPDG,p4M) on a virtual nucleon (NPDG,N4M), result: final pair(newN4M,newp4M)
70  // if(newN4M.e()==0.) - below threshold, XS=0, no scattering of the progectile happened
71  std::pair<G4LorentzVector,G4LorentzVector> Scatter(G4int NPDG, G4LorentzVector N4M,
72                                                     G4int pPDG, G4LorentzVector p4M);
73  // ChExer (pPDG,p4M) on a virtual nucleon (NPDG,N4M), result: final pair(newN4M,newp4M)
74  // if(newN4M.e()==0.) - keep projectile, XS=0, no interaction of the progectile happened
75  // User should himself change the charge (PDG) (e.g. pn->np, pi+n->pi0p, pi-p->pi0n etc.)
76  // Recepy: change target n to p or taget p to n and conserve enrgy, changing projectile
77  // Do not use for the nucleon, as it is already included in quasielastic, and for pi0.
78  std::pair<G4LorentzVector,G4LorentzVector> ChExer(G4int NPDG, G4LorentzVector N4M,
79                                                    G4int pPDG, G4LorentzVector p4M);
80  // Mean hN El and Tot XS(IU) for the isotopic (Z,N): on p -> (Z=1,N=0), on n -> (Z=0,N=1)
81  std::pair<G4double,G4double> GetElTot(G4double pIU, G4int hPDG, G4int Z, G4int N); //(IU)
82
83  // Calculate ChEx/El ratio coefficient (p is in independent units, (Z,N) is a target)
84  G4double ChExElCoef(G4double p, G4int Z, G4int N, G4int pPDG);
85
86 private:
87  // These working member functions are in CHIPS units and must not be used externally
88  G4double GetQF2IN_Ratio(G4double TotCS_mb, G4int A); // QuasiFree/Inelastic (fast)
89  G4double CalcQF2IN_Ratio(G4double TCSmb, G4int A); // R=QuasuFree/Inelastic (sig_t in mb)
90  std::pair<G4double,G4double> FetchElTot(G4double pGeV,G4int PDG,G4bool F);//(E,T)fromAMDB
91  std::pair<G4double,G4double> CalcElTot(G4double pGeV,G4int Index);//(sigE,sigT)(Index)
92
93 // Body
94 private:
95  static std::vector<G4double*> vT;     // Vector of pointers to LinTable
96  static std::vector<G4double*> vL;     // Vector of pointers to LogTable
97  static std::vector<std::pair<G4double,G4double>*> vX; // Vector of ETPointers to LogTable
98};                                     
99#endif
Note: See TracBrowser for help on using the repository browser.