source: trunk/source/processes/hadronic/stopping/src/G4PiMinusStopLi.cc @ 1183

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

import all except CVS

File size: 4.6 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//      File name:     G4PiMinusStopLi
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 "G4PiMinusStopLi.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 (1983) 429
55G4double G4PiMinusStopLi::npRatio = 6.3;
56 
57// Average numbers of final nucleons detected, for N-pair absorption
58// (P.Heusi et al., Nucl. Phys. A407 (1983) 429
59G4double G4PiMinusStopLi::nFinalNucleons = 1.9;
60
61// Kinetic energy (MeV) distributions measured for coincident nucleon
62// emission
63// P. Heusi et al., Nucl. Phys. A407(1983) 429
64
65G4int G4PiMinusStopLi::eKinEntries = 21;
66
67G4double G4PiMinusStopLi::eKinData[21] = { 0.0018, 0.0025, 0.003, 0.045, 
68                                      0.007, 0.014, 0.023, 
69                                      0.4,  0.09,  0.18, 
70                                      0.25,  0.3,  0.25, 0.2, 
71                                      0.18,  0.08,  0.05, 
72                                      0.023, 0.012,  0.007, 0.02};
73
74G4double G4PiMinusStopLi::eKin[22] = { 15., 17.5, 22.5,  27.5, 
75                                   32.5,  37.5,  42.5, 
76                                   47.5, 52.5,  57.5, 
77                                   62.5, 67.5,  72.5,  77.5, 
78                                   82.5, 87.5,  92.5, 
79                                   97.5, 102.5, 105. };
80
81
82// Opening angle distributions measured for coincident nucleon emission
83// (P.Heusi et al., Nucl. Phys. A407 (1983) 429
84
85G4int G4PiMinusStopLi::angleEntries = 7;
86
87G4double G4PiMinusStopLi::angleData[7] = 
88{ 0.17, 0.4, 0.7, 1.1, 1.3, 20., 70. };
89
90G4double G4PiMinusStopLi::angle[8] = { 1.308997, 1.570796, 1.832596, 2.094395, 
91                                  2.356194, 2.617994, 2.967060, 3.1415927 };
92
93
94
95// Constructor
96
97G4PiMinusStopLi::G4PiMinusStopLi()
98 
99{
100  // Cluster size: nucleon pair, alpha, triton etc.
101  // First implementation: interaction with nucleon pair only
102  _clusterSize = 2;
103
104  // R ratio
105  theR = 1. / (1. + npRatio);
106
107  _definitions = new std::vector<G4ParticleDefinition*>();
108  _momenta = new std::vector<G4LorentzVector*>();
109
110  std::vector<double> eKinVector;
111  std::vector<double> eKinDataVector;
112  int i;
113  for (i=0; i<eKinEntries; i++)
114    {
115      eKinVector.push_back(eKin[i]);
116      eKinDataVector.push_back(eKinData[i]);
117    }
118  eKinVector.push_back(eKin[eKinEntries]);
119  _distributionE = new G4DistributionGenerator(eKinVector,eKinDataVector);
120
121  std::vector<double> angleVector;
122  std::vector<double> angleDataVector;
123  for (i=0; i<angleEntries; i++)
124    {
125      angleVector.push_back(angle[i]);
126      angleDataVector.push_back(angleData[i]);
127    }
128  angleVector.push_back(angle[angleEntries]);
129  _distributionAngle = new G4DistributionGenerator(angleVector,angleDataVector);
130}
131
132
133// Destructor
134
135G4PiMinusStopLi::~G4PiMinusStopLi()
136{}
137
138G4double G4PiMinusStopLi::FinalNucleons()
139{
140  return nFinalNucleons;
141}
142
Note: See TracBrowser for help on using the repository browser.