Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4NeutronHPKallbachMannSyst.hh
Go to the documentation of this file.
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 //
28 #ifndef G4NeutronHPKallbachMannSyst_h
29 #define G4NeutronHPKallbachMannSyst_h 1
30 
31 #include "globals.hh"
32 
34 {
35  public:
36 
38  G4double anIncidentEnergy, G4double anIncidentMass,
39  G4double aProductEnergy, G4double aProductMass,
40  G4double aResidualMass, G4int aResidualA, G4int aResidualZ,
41  G4double aTargetMass, G4int aTargetA, G4int aTargetZ)
42  {
43  theCompoundFraction = aCompoundFraction;
44  theIncidentEnergy = anIncidentEnergy;
45  theIncidentMass = anIncidentMass;
46  theProductEnergy = aProductEnergy;
47  theProductMass = aProductMass;
48  theResidualMass = aResidualMass;
49  theResidualA = aResidualA;
50  theResidualZ = aResidualZ;
51  theTargetMass = aTargetMass;
52  theTargetA = aTargetA;
53  theTargetZ = aTargetZ;
54  }
55 
57 
58  G4double Sample(G4double anEnergy);
59 
60  G4double Kallbach(G4double cosTh, G4double anEnergy);
61 
63 
64  G4double A(G4double anEnergy);
65 
67 
68  private:
69 
70  G4double theCompoundFraction;
71  G4double theIncidentEnergy;
72  G4double theIncidentMass;
73  G4double theProductEnergy;
74  G4double theProductMass;
75  G4double theResidualMass;
76  G4double theTargetMass;
77  G4int theResidualA;
78  G4int theResidualZ;
79  G4int theTargetA;
80  G4int theTargetZ;
81 };
82 
83 #endif
G4double SeparationEnergy(G4int Ac, G4int Nc, G4int AA, G4int ZA)
int G4int
Definition: G4Types.hh:78
G4NeutronHPKallbachMannSyst(G4double aCompoundFraction, G4double anIncidentEnergy, G4double anIncidentMass, G4double aProductEnergy, G4double aProductMass, G4double aResidualMass, G4int aResidualA, G4int aResidualZ, G4double aTargetMass, G4int aTargetA, G4int aTargetZ)
G4double Sample(G4double anEnergy)
G4double Kallbach(G4double cosTh, G4double anEnergy)
G4double GetKallbachZero(G4double anEnergy)
double G4double
Definition: G4Types.hh:76