source: trunk/source/processes/hadronic/stopping/src/G4PiMinusStopC.cc@ 1036

Last change on this file since 1036 was 819, checked in by garnier, 17 years ago

import all except CVS

File size: 5.0 KB
RevLine 
[819]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// File name: G4PiMinusStopC
27//
28// Author: Maria Grazia Pia (pia@genova.infn.it)
29//
30// Creation date: 8 May 1998
31//
32// -------------------------------------------------------------------
33
34#include "G4ios.hh"
35
36#include "G4PiMinusStopC.hh"
37
38#include <vector>
39
40#include "globals.hh"
41#include "Randomize.hh"
42#include "G4Proton.hh"
43#include "G4Neutron.hh"
44#include "G4ParticleTypes.hh"
45#include "G4ReactionKinematics.hh"
46#include "G4DynamicParticleVector.hh"
47#include "G4LorentzVector.hh"
48#include "G4NucleiPropertiesTable.hh"
49#include "G4PiMinusStopMaterial.hh"
50#include "G4DistributionGenerator.hh"
51
52// np/pp production ratio
53// Experimental values:
54// R(np/pp) = 6.3 +- 1.4 (P. Heusi et al. (Nucl. Phys. A407, 429 [1983])
55// R = 5.0 +- 1.5 (Ozaki et al.)
56// R = 8.8 +- 1.3 (Lee et al.)
57// R = 2.4 +- 1.0 (Nordberg et al.)
58// Use average value of the first three ones
59G4double G4PiMinusStopC::npRatio = 6.7;
60
61// Average numbers of final nucleons detected, for N-pair absorption
62// R. Madey et al., Phys. Rev. C25(1982) 3050
63G4double G4PiMinusStopC::nFinalNucleons = 1.77;
64
65// Kinetic energy (MeV) distributions measured for coincident nucleon
66// emission
67// P. Heusi et al., Nucl. Phys. A407(1983) 429
68
69G4int G4PiMinusStopC::eKinEntries = 21;
70
71G4double G4PiMinusStopC::eKinData[21] = { 0.031, 0.045, 0.06, 0.09,
72 0.11, 0.116, 0.14,
73 0.18, 0.21, 0.25,
74 0.3, 0.32, 0.31, 0.3,
75 0.25, 0.18, 0.16,
76 0.15, 0.08, 0.05, 0.01};
77
78G4double G4PiMinusStopC::eKin[22] = { 8., 17.5, 21., 24.5,
79 27.5, 31., 33.5,
80 37.5, 42.5, 46.4,
81 49., 52.5, 57.5, 62.5,
82 67.5, 72.5, 75.,
83 77.5, 82.5, 87.5, 92.5, 110. };
84
85//G4double G4PiMinusStopC::eKin[22] = { 15., 20., 22., 25.,
86// 30., 32., 36.,
87// 40., 45., 48.,
88// 50., 54., 60., 65.,
89// 70., 75., 78.,
90// 80., 86., 90., 95., 100. };
91
92// Opening angle distributions measured for coincident nucleon emission
93// R. Hartmann et al., Nucl. Phys. A308 (1978) 345
94
95G4int G4PiMinusStopC::angleEntries = 7;
96
97G4double G4PiMinusStopC::angleData[7] =
98{ 1.43, 1.67, 2.62, 4.29, 7.62, 11.90, 14.76 };
99
100G4double G4PiMinusStopC::angle[8] = { 1.308997, 1.570796, 1.832596, 2.094395,
101 2.356194, 2.617994, 2.967060, 3.1415927 };
102
103
104
105// Constructor
106
107G4PiMinusStopC::G4PiMinusStopC()
108
109{
110 // Cluster size: nucleon pair, alpha, triton etc.
111 // First implementation: interaction with nucleon pair only
112 _clusterSize = 2;
113
114 // R ratio
115 theR = 1. / (1. + npRatio);
116
117 _definitions = new std::vector<G4ParticleDefinition*>();
118 _momenta = new std::vector<G4LorentzVector*>();
119
120 std::vector<double> eKinVector;
121 std::vector<double> eKinDataVector;
122 int i;
123 for (i=0; i<eKinEntries; i++)
124 {
125 eKinVector.push_back(eKin[i]);
126 eKinDataVector.push_back(eKinData[i]);
127 }
128 eKinVector.push_back(eKin[eKinEntries]);
129 _distributionE = new G4DistributionGenerator(eKinVector,eKinDataVector);
130
131 std::vector<double> angleVector;
132 std::vector<double> angleDataVector;
133 for (i=0; i<angleEntries; i++)
134 {
135 angleVector.push_back(angle[i]);
136 angleDataVector.push_back(angleData[i]);
137 }
138 angleVector.push_back(angle[angleEntries]);
139 _distributionAngle = new G4DistributionGenerator(angleVector,angleDataVector);
140}
141
142
143// Destructor
144
145G4PiMinusStopC::~G4PiMinusStopC()
146{}
147
148G4double G4PiMinusStopC::FinalNucleons()
149{
150 return nFinalNucleons;
151}
152
Note: See TracBrowser for help on using the repository browser.