Files
geant4/source/processes/electromagnetic/lowenergy/include/G4PenelopeIonisation.hh
T
2016-06-09 15:37:50 +02:00

161 lines
5.4 KiB
C++

//
// ********************************************************************
// * 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: G4PenelopeIonisation.hh,v 1.5 2006/06/29 19:36:33 gunter Exp $
// GEANT4 tag $Name: geant4-09-01 $
//
// Author: L. Pandola
//
// History:
// -----------
// 20 Mar 2003 L. Pandola 1st implementation
// 30 Jun 2003 L. Pandola methods for positrons added
// 04 Jul 2003 L. Pandola added methods for interfacing
// with the cross section handler
// -------------------------------------------------------------------
//
// Class description:
// Penelope electromagnetic process, electron and positron Ionisation
// Further documentation available from http://www.ge.infn.it/geant4/lowE
// --------------------------------------------------------------
#ifndef G4PENELOPEIONISATION_HH
#define G4PENELOPEIONISATION_HH 1
#include "G4eLowEnergyLoss.hh"
#include "G4AtomicDeexcitation.hh"
#include "globals.hh"
class G4Track;
class G4Step;
class G4ParticleDefinition;
class G4VParticleChange;
class G4VDataSetAlgorithm;
class G4ParticleChange;
class G4VCrossSectionHandler;
class G4VEMDataSet;
class G4PenelopeIonisation : public G4eLowEnergyLoss
{
public:
G4PenelopeIonisation(const G4String& processName = "PenelopeIoni");
~G4PenelopeIonisation();
G4bool IsApplicable(const G4ParticleDefinition&);
void PrintInfoDefinition();
void BuildPhysicsTable(const G4ParticleDefinition& ParticleType);
G4VParticleChange* PostStepDoIt(const G4Track& track,
const G4Step& step);
void SetCutForLowEnSecPhotons(G4double cut);
void SetCutForLowEnSecElectrons(G4double cut);
void ActivateAuger(G4bool val);
G4double CalculateCrossSectionsRatio(G4double,G4double,
G4int, G4double,
const G4ParticleDefinition&);
// For testing purpose only
G4double DumpMeanFreePath(const G4Track& aTrack,
G4double previousStepSize,
G4ForceCondition* condition)
{ return GetMeanFreePath(aTrack, previousStepSize, condition); }
protected:
G4double GetMeanFreePath(const G4Track& track,
G4double previousStepSize,
G4ForceCondition* condition );
private:
// Hide copy constructor and assignment operator as private
G4PenelopeIonisation(const G4PenelopeIonisation& );
G4PenelopeIonisation& operator = (const G4PenelopeIonisation& right);
void BuildLossTable(const G4ParticleDefinition& ParticleType);
void CalculateDiscreteForElectrons(G4double,G4double,G4int,G4double);
void CalculateDiscreteForPositrons(G4double,G4double,G4int,G4double);
void ReadData();
G4double CalculateDeltaFermi(G4double,G4int,G4double);
G4double CalculateContinuous(G4double,G4double,G4int,G4double,
const G4ParticleDefinition&);
G4double CalculateStoppingPowerForElectrons(G4double,
G4double,G4double,G4double);
G4double CalculateStoppingPowerForPositrons(G4double,
G4double,G4double,G4double);
G4double CrossSectionsRatioForElectrons(G4double,G4double,
G4double,G4double,
G4int);
G4double CrossSectionsRatioForPositrons(G4double,G4double,
G4double,G4double,
G4int);
G4VCrossSectionHandler* crossSectionHandler;
G4VEMDataSet* theMeanFreePath;
// Lower limit for generation of gamma in this model
G4DataVector cutForDelta;
G4double cutForPhotons;
G4double cutForElectrons;
G4AtomicDeexcitation deexcitationManager;
//Parameters of hard interactions
G4double kineticEnergy1;
G4double cosThetaPrimary;
G4double energySecondary;
G4double cosThetaSecondary;
G4int iOsc;
//Parameters of atomic shells
std::map<G4int,G4DataVector*> *ionizationEnergy;
std::map<G4int,G4DataVector*> *resonanceEnergy;
std::map<G4int,G4DataVector*> *occupationNumber;
std::map<G4int,G4DataVector*> *shellFlag;
};
#endif