// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4QuasiElasticChannel.cc,v 1.4 2008/04/24 13:26:19 gunter Exp $ // GEANT4 tag $Name: geant4-09-02-ref-02 $ // // Author : Gunter Folger March 2007 // Class Description // Final state production model for theoretical models of hadron inelastic // quasi elastic scattering in geant4; // Class Description - End // // Modified: #include "G4QuasiElasticChannel.hh" #include "G4Fancy3DNucleus.hh" #include "G4HadTmpUtil.hh" //lrint //#define debug_scatter G4QuasiElasticChannel::G4QuasiElasticChannel() { theQuasiElastic=G4QuasiFreeRatios::GetPointer(); } G4QuasiElasticChannel::~G4QuasiElasticChannel() {} G4double G4QuasiElasticChannel::GetFraction(G4Nucleus &theNucleus, const G4DynamicParticle & thePrimary) { std::pair ratios; ratios=theQuasiElastic->GetRatios(thePrimary.GetTotalMomentum(), thePrimary.GetDefinition()->GetPDGEncoding(), G4lrint(theNucleus.GetZ()), G4lrint(theNucleus.GetN()-theNucleus.GetZ())); #ifdef debug_getFraction G4cout << "G4QuasiElasticChannel::ratios " << ratios.first << " x " <GetParticleName()<< G4endl; #endif // G4LorentzVector pNucleon(G4ThreeVector(0,0,0),pDef->GetPDGMass()); G4LorentzVector pNucleon=nucleons[index]->Get4Momentum(); std::pair result; result=theQuasiElastic->Scatter(pDef->GetPDGEncoding(),pNucleon, thePrimary.GetDefinition()->GetPDGEncoding(), thePrimary.Get4Momentum()); if (result.first.e() == 0.) { G4cout << "Warning - G4QuasiElasticChannel::Scatter no scattering" << G4endl; return 0; //no scatter } #ifdef debug_scatter G4LorentzVector EpConservation=pNucleon+thePrimary.Get4Momentum() - result.first - result.second; if ( (EpConservation.vect().mag2() > 0.01*MeV*MeV ) || (std::abs(EpConservation.e()) > 0.1 * MeV ) ) { G4cout << "Warning - G4QuasiElasticChannel::Scatter E-p non conservation : " << EpConservation << G4endl; } #endif G4KineticTrackVector * ktv; ktv=new G4KineticTrackVector(); G4KineticTrack * sPrim=new G4KineticTrack(thePrimary.GetDefinition(), 0.,G4ThreeVector(0), result.second); ktv->push_back(sPrim); G4KineticTrack * sNuc=new G4KineticTrack(pDef, 0.,G4ThreeVector(0), result.first); ktv->push_back(sNuc); #ifdef debug_scatter G4cout << " scattered Nucleon : " << result.first << " mass " <