// // ******************************************************************** // * 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. * // ******************************************************************** // // ------------------------------------------------------------------- // // GEANT4 Class file // // // File name: G4hCoulombScatteringModel // // Author: Vladimir Ivanchenko // // Creation date: 08.06.2012 from G4eCoulombScatteringModel // // Modifications: // // // Class Description: // // ------------------------------------------------------------------- // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... #include "G4hCoulombScatteringModel.hh" #include "G4PhysicalConstants.hh" #include "G4SystemOfUnits.hh" #include "Randomize.hh" #include "G4DataVector.hh" #include "G4ElementTable.hh" #include "G4ParticleChangeForGamma.hh" #include "G4Proton.hh" #include "G4ParticleTable.hh" #include "G4IonTable.hh" #include "G4ProductionCutsTable.hh" #include "G4NucleiProperties.hh" #include "G4Pow.hh" #include "G4NistManager.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... G4hCoulombScatteringModel::G4hCoulombScatteringModel(G4bool combined) : G4VEmModel("hCoulombScattering"), cosThetaMin(1.0), cosThetaMax(-1.0), isCombined(combined) { fParticleChange = nullptr; fNistManager = G4NistManager::Instance(); theIonTable = G4ParticleTable::GetParticleTable()->GetIonTable(); theProton = G4Proton::Proton(); currentMaterial = nullptr; fixedCut = -1.0; pCuts = nullptr; recoilThreshold = 0.0; // by default does not work particle = nullptr; currentCouple = nullptr; wokvi = new G4WentzelVIRelXSection(); currentMaterialIndex = 0; mass = CLHEP::proton_mass_c2; elecRatio = 0.0; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... G4hCoulombScatteringModel::~G4hCoulombScatteringModel() { delete wokvi; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void G4hCoulombScatteringModel::Initialise(const G4ParticleDefinition* part, const G4DataVector& cuts) { SetupParticle(part); currentCouple = nullptr; // defined theta limit between single and multiple scattering isCombined = true; G4double tet = PolarAngleLimit(); if(tet <= 0.0) { cosThetaMin = 1.0; isCombined = false; } else if(tet >= CLHEP::pi) { cosThetaMin = -1.0; } else { cosThetaMin = std::cos(tet); } wokvi->Initialise(part, cosThetaMin); /* G4cout << "G4hCoulombScatteringModel: " << particle->GetParticleName() << " 1-cos(ThetaLimit)= " << 1 - cosThetaMin << " cos(thetaMax)= " << cosThetaMax << G4endl; */ pCuts = &cuts; //G4ProductionCutsTable::GetProductionCutsTable()->GetEnergyCutsVector(3); /* G4cout << "!!! G4hCoulombScatteringModel::Initialise for " << part->GetParticleName() << " cos(TetMin)= " << cosThetaMin << " cos(TetMax)= " << cosThetaMax <GetElementSelectors()); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... G4double G4hCoulombScatteringModel::MinPrimaryEnergy(const G4Material* material, const G4ParticleDefinition* part, G4double) { SetupParticle(part); // define cut using cuts for proton G4double cut = std::max(recoilThreshold, (*pCuts)[CurrentCouple()->GetIndex()]); // find out lightest element const G4ElementVector* theElementVector = material->GetElementVector(); std::size_t nelm = material->GetNumberOfElements(); // select lightest element G4int Z = 300; for (std::size_t j=0; jGetZasInt()); } G4int A = G4lrint(fNistManager->GetAtomicMassAmu(Z)); G4double targetMass = G4NucleiProperties::GetNuclearMass(A, Z); G4double t = std::max(cut, 0.5*(cut + std::sqrt(2*cut*targetMass))); return t; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... G4double G4hCoulombScatteringModel::ComputeCrossSectionPerAtom( const G4ParticleDefinition* p, G4double kinEnergy, G4double Z, G4double, G4double cutEnergy, G4double) { //G4cout << "### G4hCoulombScatteringModel::ComputeCrossSectionPerAtom for " //<< p->GetParticleName()<<" Z= "<