// // ******************************************************************** // * 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: G4TheoFSGenerator.cc,v 1.11 2009/04/09 08:28:42 mkossov Exp $ // GEANT4 tag $Name: geant4-09-03-ref-09 $ // // G4TheoFSGenerator #include "G4DynamicParticle.hh" #include "G4TheoFSGenerator.hh" #include "G4ReactionProductVector.hh" #include "G4ReactionProduct.hh" G4TheoFSGenerator::G4TheoFSGenerator(const G4String& name) : G4HadronicInteraction(name) , theQuasielastic(0), theProjectileDiffraction(0) { theParticleChange = new G4HadFinalState; } G4TheoFSGenerator::G4TheoFSGenerator(const G4TheoFSGenerator &) : G4HadronicInteraction("TheoFSGenerator") , theQuasielastic(0), theProjectileDiffraction(0) { } G4TheoFSGenerator::~G4TheoFSGenerator() { delete theParticleChange; } const G4TheoFSGenerator & G4TheoFSGenerator::operator=(const G4TheoFSGenerator &) { G4String text = "G4CrossSectionBase::operator= meant to not be accessable"; throw G4HadronicException(__FILE__, __LINE__, text); return *this; } int G4TheoFSGenerator::operator==(const G4TheoFSGenerator &) const { return 0; } int G4TheoFSGenerator::operator!=(const G4TheoFSGenerator &) const { return 1; } G4HadFinalState * G4TheoFSGenerator::ApplyYourself(const G4HadProjectile & thePrimary, G4Nucleus &theNucleus) { // init particle change theParticleChange->Clear(); theParticleChange->SetStatusChange(stopAndKill); // check if models have been registered, and use default, in case this is not true @@ // get result from high energy model G4DynamicParticle aTemp(const_cast(thePrimary.GetDefinition()), thePrimary.Get4Momentum().vect()); const G4DynamicParticle * aPart = &aTemp; if ( theQuasielastic ) { if ( theQuasielastic->GetFraction(theNucleus, *aPart) > G4UniformRand() ) { //G4cout<<"___G4TheoFSGenerator: before Scatter (1) QE=" << theQuasielastic<Scatter(theNucleus, *aPart); //G4cout << "^^G4TheoFSGenerator: after Scatter (1) " << G4endl; if (result) { for(unsigned int i=0; isize(); i++) { G4DynamicParticle * aNew = new G4DynamicParticle(result->operator[](i)->GetDefinition(), result->operator[](i)->Get4Momentum().e(), result->operator[](i)->Get4Momentum().vect()); theParticleChange->AddSecondary(aNew); delete result->operator[](i); } delete result; } else { theParticleChange->SetStatusChange(isAlive); theParticleChange->SetEnergyChange(thePrimary.GetKineticEnergy()); theParticleChange->SetMomentumChange(thePrimary.Get4Momentum().vect().unit()); } return theParticleChange; } } if ( theProjectileDiffraction) { if ( theProjectileDiffraction->GetFraction(theNucleus, *aPart) > G4UniformRand() ) // strictly, this returns fraction on inelastic, so quasielastic should // already be substracted, ie. quasielastic should always be used // before diffractive { //G4cout << "____G4TheoFSGenerator: before Scatter (2) " << G4endl; G4KineticTrackVector *result= theProjectileDiffraction->Scatter(theNucleus, *aPart); //G4cout << "^^^^G4TheoFSGenerator: after Scatter (2) " << G4endl; if (result) { for(unsigned int i=0; isize(); i++) { G4DynamicParticle * aNew = new G4DynamicParticle(result->operator[](i)->GetDefinition(), result->operator[](i)->Get4Momentum().e(), result->operator[](i)->Get4Momentum().vect()); theParticleChange->AddSecondary(aNew); delete result->operator[](i); } delete result; } else { theParticleChange->SetStatusChange(isAlive); theParticleChange->SetEnergyChange(thePrimary.GetKineticEnergy()); theParticleChange->SetMomentumChange(thePrimary.Get4Momentum().vect().unit()); } return theParticleChange; } } //G4cout << "____G4TheoFSGenerator: before Scatter (3) " << G4endl; G4KineticTrackVector * theInitialResult = theHighEnergyGenerator->Scatter(theNucleus, *aPart); //G4cout << "^^^^G4TheoFSGenerator: after Scatter (3) " << G4endl; G4ReactionProductVector * theTransportResult = NULL; G4int hitCount = 0; const std::vector & they = theHighEnergyGenerator->GetWoundedNucleus()->GetNucleons(); for(size_t them=0; themAreYouHit()) hitCount ++; } if(hitCount != theHighEnergyGenerator->GetWoundedNucleus()->GetMassNumber() ) { theTransportResult = theTransport->Propagate(theInitialResult, theHighEnergyGenerator->GetWoundedNucleus()); if ( !theTransportResult ) { G4cout << "G4TheoFSGenerator: null ptr from transport propagate " << G4endl; throw G4HadronicException(__FILE__, __LINE__, "Null ptr from transport propagate"); } } else { theTransportResult = theDecay.Propagate(theInitialResult, theHighEnergyGenerator->GetWoundedNucleus()); if ( !theTransportResult ) { G4cout << "G4TheoFSGenerator: null ptr from decay propagate " << G4endl; throw G4HadronicException(__FILE__, __LINE__, "Null ptr from decay propagate"); } } // Fill particle change unsigned int i; for(i=0; isize(); i++) { G4DynamicParticle * aNew = new G4DynamicParticle(theTransportResult->operator[](i)->GetDefinition(), theTransportResult->operator[](i)->GetTotalEnergy(), theTransportResult->operator[](i)->GetMomentum()); // @@@ - overkill? G4double newTime = theParticleChange->GetGlobalTime(theTransportResult->operator[](i)->GetFormationTime()); theParticleChange->AddSecondary(aNew); delete theTransportResult->operator[](i); } // some garbage collection delete theTransportResult; // Done return theParticleChange; }