// // ******************************************************************** // * 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: $ // // Author: D.H. Wright // Date: 2 February 2011 // // Description: simple vector dominance model of muon nuclear ineraction // in which a gamma from the virtual photon spectrum // interacts either as a pi+ or a pi- in the nucleus // Kokoulin's parameterized gamma spectrum is used. // #ifndef G4VDMuonNuclearModel_h #define G4VDMuonNuclearModel_h 1 #include "G4KokoulinMuonNuclearXS.hh" #include "G4InelasticInteraction.hh" class G4CascadeInterface; class G4TheoFSGenerator; class G4GeneratorPrecompoundInterface; class G4ExcitationHandler; class G4PreCompoundModel; class G4LundStringFragmentation; class G4ExcitedStringDecay; class G4FTFModel; class G4VDMuonNuclearModel : public G4InelasticInteraction { public: G4VDMuonNuclearModel(); ~G4VDMuonNuclearModel(); G4HadFinalState* ApplyYourself(const G4HadProjectile& aTrack, G4Nucleus& targetNucleus); private: G4DynamicParticle* CalculateEMVertex(const G4HadProjectile& aTrack, G4Nucleus& targetNucleus); void CalculateHadronicVertex(G4DynamicParticle* incident, G4Nucleus& target); void MakeSamplingTable(); G4double CutFixed; G4int NBIN; G4double proba[5][8][1001]; G4double ya[1001]; G4KokoulinMuonNuclearXS muNucXS; G4TheoFSGenerator* ftfp; G4GeneratorPrecompoundInterface* precoInterface; G4ExcitationHandler* theHandler; G4PreCompoundModel* preEquilib; G4LundStringFragmentation* theFragmentation; G4ExcitedStringDecay* theStringDecay; G4FTFModel* theStringModel; G4CascadeInterface* bert; }; #endif