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: G4StopTheoDeexcitation 00027 // 00028 // Author: Maria Grazia Pia (pia@genova.infn.it) 00029 // 00030 // Creation date: 8 May 1998 00031 // 00032 // Modifications: 00033 // MGP 4 July 1998 Modified parameters to force evaporation 00034 // 00035 // ------------------------------------------------------------------- 00036 00037 #include "G4ios.hh" 00038 00039 #include "G4StopTheoDeexcitation.hh" 00040 00041 #include "globals.hh" 00042 #include "G4SystemOfUnits.hh" 00043 #include "G4ThreeVector.hh" 00044 #include "G4LorentzVector.hh" 00045 #include "G4NucleiProperties.hh" 00046 #include "G4Fragment.hh" 00047 #include "G4ExcitationHandler.hh" 00048 #include "G4DynamicParticleVector.hh" 00049 #include "G4HadronicDeprecate.hh" 00050 00051 // Constructor 00052 00053 G4StopTheoDeexcitation::G4StopTheoDeexcitation() { 00054 G4HadronicDeprecate("G4StopTheoDeexcitation"); 00055 } 00056 00057 // Destructor 00058 00059 G4StopTheoDeexcitation::~G4StopTheoDeexcitation() 00060 {} 00061 00062 G4ReactionProductVector* 00063 G4StopTheoDeexcitation::BreakUp(G4double A, G4double Z, G4double excitation, 00064 const G4ThreeVector& p) 00065 { 00066 G4ExcitationHandler theHandler; 00067 00068 // MF and FB parameters modified by MGP to force evaporation 00069 // Max A and Z values for use Fermi Breakup 00070 // theHandler.SetMaxAandZForFermiBreakUp(16, 10); 00071 // theHandler.SetMaxAandZForFermiBreakUp(2, 1); 00072 // Min excitation energy (per nucleon) for use MultiFrag 00073 00074 theHandler.SetMinEForMultiFrag(300*GeV); 00075 00076 // Deexcite the nucleus 00077 00078 G4double atomicMass = G4NucleiProperties::GetNuclearMass(static_cast<G4int>(A),static_cast<G4int>(Z)); 00079 G4double mass = atomicMass + excitation; 00080 G4double pMag = p.mag(); 00081 G4LorentzVector initialMomentum(p.x(),p.y(),p.z(),std::sqrt(pMag*pMag + mass*mass)); 00082 G4Fragment theExcitedNucleus(static_cast<G4int>(A),static_cast<G4int>(Z),initialMomentum); 00083 00084 return theHandler.BreakItUp(theExcitedNucleus); 00085 } 00086 00087