// This code implementation is the intellectual property of // the GEANT4 collaboration. // // By copying, distributing or modifying the Program (or any work // based on the Program) you indicate your acceptance of this statement, // and all its terms. // // $Id: G4eBremsstrahlung.hh,v 1.7 2000/08/08 10:26:19 urban Exp $ // GEANT4 tag $Name: geant4-03-00 $ // // // ------------------------------------------------------------ // GEANT 4 class header file // CERN Geneva Switzerland // // For information related to this code contact: // CERN, IT Division, ASD group // History: first implementation, based on object model of // 2nd December 1995, G.Cosmo // ------------ G4eBremsstrahlung physics process ------ // by Michel Maire, 24 July 1996 // ************************************************************ // 1-10-96 : new type G4OrderedTable; ComputePartialSumSigma() // 20/03/97: new energy loss+ionisation+brems scheme, L.Urban // 01-09-98, new method PrintInfo() // 10/02/00 modifications , new e.m. structure, L.Urban // 07/08/00 new cross section/en.loss parametrisation, LPM flag , L.Urban // ------------------------------------------------------------ #ifndef G4eBremsstrahlung_h #define G4eBremsstrahlung_h 1 #include "G4ios.hh" #include "globals.hh" #include "Randomize.hh" #include "G4VeEnergyLoss.hh" #include "G4Track.hh" #include "G4Step.hh" #include "G4Gamma.hh" #include "G4Electron.hh" #include "G4Positron.hh" #include "G4OrderedTable.hh" #include "G4PhysicsTable.hh" #include "G4PhysicsLogVector.hh" class G4eBremsstrahlung : public G4VeEnergyLoss { public: G4eBremsstrahlung(const G4String& processName = "eBrem"); ~G4eBremsstrahlung(); G4bool IsApplicable(const G4ParticleDefinition&); void PrintInfoDefinition(); void BuildPhysicsTable(const G4ParticleDefinition& ParticleType); void BuildLossTable(const G4ParticleDefinition& ParticleType); void BuildLambdaTable(const G4ParticleDefinition& ParticleType); G4double GetMeanFreePath(const G4Track& track, G4double previousStepSize, G4ForceCondition* condition ); G4VParticleChange *PostStepDoIt(const G4Track& track, const G4Step& step); G4double GetLambda( G4double KineticEnergy,G4Material* material); protected: G4double ComputeMeanFreePath( const G4ParticleDefinition* ParticleType, G4double KineticEnergy, const G4Material* aMaterial); void ComputePartialSumSigma( const G4ParticleDefinition* ParticleType, G4double KineticEnergy, const G4Material* aMaterial); virtual G4double ComputeMicroscopicCrossSection( const G4ParticleDefinition* ParticleType, G4double KineticEnergy, G4double AtomicNumber, G4double GammaEnergyCut); private: G4double ComputeBremLoss(G4double Z,G4double natom,G4double T, G4double Cut,G4double x); G4double ComputeXYPolynomial(G4double x,G4double y,G4int xSize, G4int ySize,const G4double coeff[]); G4double ComputePositronCorrFactorLoss(G4double AtomicNumber, G4double KineticEnergy, G4double GammaEnergyCut); G4double ComputePositronCorrFactorSigma(G4double AtomicNumber, G4double KineticEnergy, G4double GammaEnergyCut); G4Element* SelectRandomAtom(G4Material* aMaterial) const; G4double ScreenFunction1(G4double ScreenVariable); G4double ScreenFunction2(G4double ScreenVariable); G4double SupressionFunction(const G4Material* aMaterial, G4double KineticEnergy, G4double GammaEnergy) ; G4eBremsstrahlung & operator=(const G4eBremsstrahlung &right); G4eBremsstrahlung(const G4eBremsstrahlung&); private: G4PhysicsTable* theMeanFreePathTable ; G4OrderedTable PartialSumSigma; // partial sum of total crosssection static G4double LowerBoundLambda; // low energy limit of the crossection formula static G4double UpperBoundLambda; // high energy limit of the crossection formula static G4int NbinLambda; // number of bins in the tables G4double MinThreshold; // minimun value for the production threshold G4double LowestKineticEnergy,HighestKineticEnergy; // bining of the Eloss table G4int TotBin; // (from G4VeEnergyLoss) static G4double probsup ; static G4bool LPMflag ; public: static void SetLowerBoundLambda(G4double val) {LowerBoundLambda = val;}; static void SetUpperBoundLambda(G4double val) {UpperBoundLambda = val;}; static void SetNbinLambda(G4int n) {NbinLambda = n;}; static G4double GetLowerBoundLambda() { return LowerBoundLambda;}; static G4double GetUpperBoundLambda() { return UpperBoundLambda;}; static G4int GetNbinLambda() {return NbinLambda;}; static void SetLPMflag(G4bool val) { LPMflag = val ; } ; static G4bool GetLPMflag() { return LPMflag ; } ; }; #include "G4eBremsstrahlung.icc" #endif