G4PiMinusStopAl.cc

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 //      File name:     G4PiMinusStopAl
00027 //
00028 //      Author:        Maria Grazia Pia (pia@genova.infn.it)
00029 // 
00030 //      Creation date: 8 May 1998
00031 //
00032 // -------------------------------------------------------------------
00033 
00034 #include "G4ios.hh"
00035 
00036 #include "G4PiMinusStopAl.hh"
00037 
00038 #include "globals.hh"
00039 #include "Randomize.hh"
00040 #include "G4Proton.hh"
00041 #include "G4Neutron.hh"
00042 #include "G4ParticleTypes.hh"
00043 #include "G4ReactionKinematics.hh"
00044 #include "G4DynamicParticleVector.hh"
00045 #include "G4LorentzVector.hh"
00046 #include "G4PiMinusStopMaterial.hh"
00047 #include "G4DistributionGenerator.hh"
00048 
00049 // np/pp production ratio
00050 // Experimental values: 
00051 // R(np/pp) = average (E. Gadioli et al., Phys Rev C36 (1987) 741)
00052 G4double G4PiMinusStopAl::npRatio = 4;
00053  
00054 // Average numbers of final nucleons detected, for N-pair absorption
00055 // (R. Madey  et al., Phys Rev C25 (1982) 3050
00056 G4double G4PiMinusStopAl::nFinalNucleons = 1.67;
00057 
00058 // Kinetic energy (MeV) distributions measured for coincident nucleon 
00059 // emission
00060 // (R. Madey  et al., Phys Rev C25 (1982) 3050
00061 
00062 G4int G4PiMinusStopAl::eKinEntries = 10;
00063 
00064 G4double G4PiMinusStopAl::eKinData[10] = { 0.23, 0.58, 1.24, 1.52,
00065                                      1.67, 
00066                                      1.52, 1.24, 0.95, 0.58, 0.23};
00067 
00068 G4double G4PiMinusStopAl::eKin[11] = { 5.2, 15., 27., 41.5,
00069                                   49.6,
00070                                   57.7, 79.3, 94.4, 114., 125., 140.};
00071 
00072 
00073 // Opening angle distributions measured for coincident nucleon emission
00074 // (P.Heusi et al., Nucl. Phys. A407 (1983) 429
00075 
00076 G4int G4PiMinusStopAl::angleEntries = 7;
00077 
00078 G4double G4PiMinusStopAl::angleData[7] = 
00079 { 1.43, 1.67, 2.62, 4.29, 7.62, 11.90, 14.76 };
00080 
00081 G4double G4PiMinusStopAl::angle[8] = { 1.308997, 1.570796, 1.832596, 2.094395, 
00082                                   2.356194, 2.617994, 2.967060, 3.1415927 };
00083 
00084 
00085 
00086 // Constructor
00087 
00088 G4PiMinusStopAl::G4PiMinusStopAl()
00089   
00090 {
00091   // Cluster size: nucleon pair, alpha, triton etc.
00092   // First implementation: interaction with nucleon pair only
00093   _clusterSize = 2;
00094 
00095   // R ratio
00096   theR = 1. / (1. + npRatio);
00097 
00098   _definitions = new std::vector<G4ParticleDefinition*>();
00099   _momenta = new std::vector<G4LorentzVector*>();
00100 
00101   std::vector<double> eKinVector;
00102   std::vector<double> eKinDataVector;
00103   int i;
00104   for (i=0; i<eKinEntries; i++)
00105     {
00106       eKinVector.push_back(eKin[i]);
00107       eKinDataVector.push_back(eKinData[i]);
00108     }
00109   eKinVector.push_back(eKin[eKinEntries]);
00110   _distributionE = new G4DistributionGenerator(eKinVector,eKinDataVector);
00111 
00112   std::vector<double> angleVector;
00113   std::vector<double> angleDataVector;
00114   for (i=0; i<angleEntries; i++)
00115     {
00116       angleVector.push_back(angle[i]);
00117       angleDataVector.push_back(angleData[i]);
00118     }
00119   angleVector.push_back(angle[angleEntries]);
00120   _distributionAngle = new G4DistributionGenerator(angleVector,angleDataVector);
00121 }
00122 
00123 
00124 // Destructor
00125 
00126 G4PiMinusStopAl::~G4PiMinusStopAl()
00127 {}
00128 
00129 G4double G4PiMinusStopAl::FinalNucleons()
00130 {
00131   return nFinalNucleons;
00132 }
00133 

Generated on Mon May 27 17:49:20 2013 for Geant4 by  doxygen 1.4.7