source: trunk/source/processes/hadronic/stopping/src/G4PiMinusStopCo.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.4 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:     G4PiMinusStopCo
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 "G4PiMinusStopCo.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) (E. Gadioli et al., Phys Rev C36 (1987) 741
55G4double G4PiMinusStopCo::npRatio = 2.5;
56
57
58 
59// Average numbers of final nucleons detected, for N-pair absorption
60// (Hartmann et al., Nucl. Phys. A300 (1978) 345
61G4double G4PiMinusStopCo::nFinalNucleons = 1.38;
62
63// Kinetic energy (MeV) distributions measured for coincident nucleon
64// emission
65// P. Heusi et al., Nucl. Phys. A407(1983) 429
66
67G4int G4PiMinusStopCo::eKinEntries = 11;
68
69G4double G4PiMinusStopCo::eKinData[11] = {0.085, 0.09, 0.09, 0.15, 
70                                      0.1, 0.09, 0.08, 
71                                      0.04,  0.03,  0.02, 0.01};
72
73G4double G4PiMinusStopCo::eKin[12] = { 15., 17.5, 25.,  33., 
74                                   42.,  52.,  62., 
75                                   75., 85., 95., 105. };
76
77
78// Opening angle distributions measured for coincident nucleon emission
79// (P.Heusi et al., Nucl. Phys. A407 (1983) 429
80
81G4int G4PiMinusStopCo::angleEntries = 7;
82
83G4double G4PiMinusStopCo::angleData[7] = 
84{6., 8., 9., 10., 25., 40., 45. };
85
86G4double G4PiMinusStopCo::angle[8] = { 0.5, 0.7, 0.87, 1.4, 2.1, 
87                                   2.44, 2.8, 3.1415927 };
88
89
90
91// Constructor
92
93G4PiMinusStopCo::G4PiMinusStopCo()
94 
95{
96  // Cluster size: nucleon pair, alpha, triton etc.
97  // First implementation: interaction with nucleon pair only
98  _clusterSize = 2;
99
100  // R ratio
101  theR = 1. / (1. + npRatio);
102
103  _definitions = new std::vector<G4ParticleDefinition*>();
104  _momenta = new std::vector<G4LorentzVector*>();
105
106  std::vector<double> eKinVector;
107  std::vector<double> eKinDataVector;
108  int i;
109  for (i=0; i<eKinEntries; i++)
110    {
111      eKinVector.push_back(eKin[i]);
112      eKinDataVector.push_back(eKinData[i]);
113    }
114  eKinVector.push_back(eKin[eKinEntries]);
115  _distributionE = new G4DistributionGenerator(eKinVector,eKinDataVector);
116
117  std::vector<double> angleVector;
118  std::vector<double> angleDataVector;
119  for (i=0; i<angleEntries; i++)
120    {
121      angleVector.push_back(angle[i]);
122      angleDataVector.push_back(angleData[i]);
123    }
124  angleVector.push_back(angle[angleEntries]);
125  _distributionAngle = new G4DistributionGenerator(angleVector,angleDataVector);
126}
127
128
129// Destructor
130
131G4PiMinusStopCo::~G4PiMinusStopCo()
132{}
133
134G4double G4PiMinusStopCo::FinalNucleons()
135{
136  return nFinalNucleons;
137}
138
Note: See TracBrowser for help on using the repository browser.