source: trunk/source/processes/hadronic/models/chiral_inv_phase_space/interface/include/G4QDiffractionRatio.hh @ 836

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

import all except CVS

File size: 3.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:  $
28//
29//
30// GEANT4 physics class: G4QDiffractionRatio -- 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 G4QDiffractionRatio_h
36#define G4QDiffractionRatio_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 "G4QEnvironment.hh"
49#include "G4Quasmon.hh"
50#include "G4QHadronVector.hh"
51#include "G4VCrossSectionDataSet.hh"
52#include "G4QElasticCrossSection.hh"
53#include "G4RandomDirection.hh"
54
55
56class G4QDiffractionRatio
57{
58 protected:
59
60  G4QDiffractionRatio()  {}                 // Constructor
61
62 public:
63
64  ~G4QDiffractionRatio() {}                 // Destructor
65
66  static G4QDiffractionRatio* GetPointer(); // Gives a pointer to this singletone
67
68  // Diffraction/Prodaction Ratio (Production=Inelastic-QuasiElastic)
69  G4double GetRatio(G4double pIU, G4int prPDG, G4int tgZ, G4int tgN);
70
71  // ==> The following will be a protected function for internal CHIPS usage
72  // ProjFragment(pPDG,p4M) on a nucleus (tgZ, tgN), result: Vector of secondary hadrons
73  // Whoever uses this member function is responsible for DEL/DESTROY of G4QHadronVector
74  G4QHadronVector* ProjFragment(G4int pPDG, G4LorentzVector p4M, G4int tgZ, G4int tgN);
75
76  // ==> The following will be a protected function for internal CHIPS usage
77  // TargFragment(pPDG,p4M) on a nucleus (tgZ, tgN), result: Vector of secondary hadrons
78  // Whoever uses this member function is responsible for DEL/DESTROY of G4QHadronVector
79  G4QHadronVector* TargFragment(G4int pPDG, G4LorentzVector p4M, G4int tgZ, G4int tgN);
80
81  // Single Diffraction Target Excitation Cross-Section (independent Units)
82  G4double GetTargSingDiffXS(G4double pIU, G4int prPDG, G4int tgZ, G4int tgN);
83
84 private:
85  // These working member functions are in CHIPS units and must not be used externally
86  G4double CalcDiff2Prod_Ratio(G4double s, G4int A); // R=Diff/Prod (sqrt(s)(hN) in GeV, A)
87
88 // Body
89 private:
90};                                     
91#endif
Note: See TracBrowser for help on using the repository browser.