Import Geant4 10.1.0 source tree
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
#include "G4LEPTSPositroniumModel.hh"
|
||||
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
G4LEPTSPositroniumModel::G4LEPTSPositroniumModel(const G4String& modelName)
|
||||
: G4VLEPTSModel( modelName )
|
||||
{
|
||||
theXSType = XSPositronium;
|
||||
}
|
||||
|
||||
|
||||
G4LEPTSPositroniumModel::~G4LEPTSPositroniumModel() {
|
||||
}
|
||||
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
void G4LEPTSPositroniumModel::Initialise(const G4ParticleDefinition* aParticle,
|
||||
const G4DataVector&)
|
||||
{
|
||||
Init();
|
||||
BuildPhysicsTable( *aParticle );
|
||||
|
||||
fParticleChangeForGamma = GetParticleChangeForGamma();
|
||||
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
G4double G4LEPTSPositroniumModel::CrossSectionPerVolume(const G4Material* mate,
|
||||
const G4ParticleDefinition* aParticle,
|
||||
G4double kineticEnergy,
|
||||
G4double,
|
||||
G4double)
|
||||
{
|
||||
return 1./GetMeanFreePath( mate, aParticle, kineticEnergy );
|
||||
|
||||
}
|
||||
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
void G4LEPTSPositroniumModel::SampleSecondaries(std::vector<G4DynamicParticle*>* ,
|
||||
const G4MaterialCutsCouple* mateCuts,
|
||||
const G4DynamicParticle* aDynamicParticle,
|
||||
G4double,
|
||||
G4double)
|
||||
{
|
||||
G4double P0KinEn = aDynamicParticle->GetKineticEnergy();
|
||||
|
||||
G4double Edep=0;
|
||||
G4double Energylost=0;
|
||||
G4ThreeVector P0Dir = aDynamicParticle->GetMomentumDirection();
|
||||
|
||||
Energylost = P0KinEn;
|
||||
const G4Material* aMaterial = mateCuts->GetMaterial();
|
||||
G4ThreeVector P1Dir = SampleNewDirection(aMaterial, P0Dir, P0KinEn/CLHEP::eV, Energylost/CLHEP::eV);
|
||||
Edep = P0KinEn;
|
||||
fParticleChangeForGamma->SetProposedKineticEnergy(0.);
|
||||
fParticleChangeForGamma->ProposeLocalEnergyDeposit (Edep);
|
||||
fParticleChangeForGamma->ProposeTrackStatus( fStopAndKill);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user