source: trunk/source/processes/hadronic/stopping/src/G4PiMinusStopAl.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.5 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:     G4PiMinusStopAl
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 "G4PiMinusStopAl.hh"
37
38#include "globals.hh"
39#include "Randomize.hh"
40#include "G4Proton.hh"
41#include "G4Neutron.hh"
42#include "G4ParticleTypes.hh"
43#include "G4ReactionKinematics.hh"
44#include "G4DynamicParticleVector.hh"
45#include "G4LorentzVector.hh"
46#include "G4NucleiPropertiesTable.hh"
47#include "G4PiMinusStopMaterial.hh"
48#include "G4DistributionGenerator.hh"
49
50// np/pp production ratio
51// Experimental values:
52// R(np/pp) = average (E. Gadioli et al., Phys Rev C36 (1987) 741)
53G4double G4PiMinusStopAl::npRatio = 4;
54 
55// Average numbers of final nucleons detected, for N-pair absorption
56// (R. Madey  et al., Phys Rev C25 (1982) 3050
57G4double G4PiMinusStopAl::nFinalNucleons = 1.67;
58
59// Kinetic energy (MeV) distributions measured for coincident nucleon
60// emission
61// (R. Madey  et al., Phys Rev C25 (1982) 3050
62
63G4int G4PiMinusStopAl::eKinEntries = 10;
64
65G4double G4PiMinusStopAl::eKinData[10] = { 0.23, 0.58, 1.24, 1.52,
66                                     1.67, 
67                                     1.52, 1.24, 0.95, 0.58, 0.23};
68
69G4double G4PiMinusStopAl::eKin[11] = { 5.2, 15., 27., 41.5,
70                                  49.6,
71                                  57.7, 79.3, 94.4, 114., 125., 140.};
72
73
74// Opening angle distributions measured for coincident nucleon emission
75// (P.Heusi et al., Nucl. Phys. A407 (1983) 429
76
77G4int G4PiMinusStopAl::angleEntries = 7;
78
79G4double G4PiMinusStopAl::angleData[7] = 
80{ 1.43, 1.67, 2.62, 4.29, 7.62, 11.90, 14.76 };
81
82G4double G4PiMinusStopAl::angle[8] = { 1.308997, 1.570796, 1.832596, 2.094395, 
83                                  2.356194, 2.617994, 2.967060, 3.1415927 };
84
85
86
87// Constructor
88
89G4PiMinusStopAl::G4PiMinusStopAl()
90 
91{
92  // Cluster size: nucleon pair, alpha, triton etc.
93  // First implementation: interaction with nucleon pair only
94  _clusterSize = 2;
95
96  // R ratio
97  theR = 1. / (1. + npRatio);
98
99  _definitions = new std::vector<G4ParticleDefinition*>();
100  _momenta = new std::vector<G4LorentzVector*>();
101
102  std::vector<double> eKinVector;
103  std::vector<double> eKinDataVector;
104  int i;
105  for (i=0; i<eKinEntries; i++)
106    {
107      eKinVector.push_back(eKin[i]);
108      eKinDataVector.push_back(eKinData[i]);
109    }
110  eKinVector.push_back(eKin[eKinEntries]);
111  _distributionE = new G4DistributionGenerator(eKinVector,eKinDataVector);
112
113  std::vector<double> angleVector;
114  std::vector<double> angleDataVector;
115  for (i=0; i<angleEntries; i++)
116    {
117      angleVector.push_back(angle[i]);
118      angleDataVector.push_back(angleData[i]);
119    }
120  angleVector.push_back(angle[angleEntries]);
121  _distributionAngle = new G4DistributionGenerator(angleVector,angleDataVector);
122}
123
124
125// Destructor
126
127G4PiMinusStopAl::~G4PiMinusStopAl()
128{}
129
130G4double G4PiMinusStopAl::FinalNucleons()
131{
132  return nFinalNucleons;
133}
134
Note: See TracBrowser for help on using the repository browser.