G4eIonisation.hh

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 // $Id$
00027 //
00028 // -------------------------------------------------------------------
00029 //
00030 // GEANT4 Class header file
00031 //
00032 //
00033 // File name:     G4eIonisation
00034 //
00035 // Author:        Laszlo Urban
00036 //
00037 // Creation date: 20.03.1997
00038 //
00039 // Modifications:
00040 //
00041 // 10-02-00 modifications , new e.m. structure, L.Urban
00042 // 03-08-01 new methods Store/Retrieve PhysicsTable (mma)
00043 // 13-08-01 new function ComputeRestrictedMeandEdx() (mma)
00044 // 19-09-01 come back to previous ProcessName "eIoni"
00045 // 29-10-01 all static functions no more inlined (mma)
00046 // 07-01-02 new design of em processes (V.Ivanchenko)
00047 // 26-12-02 Secondary production moved to derived classes (VI)
00048 // 24-01-03 Make models region aware (V.Ivanchenko)
00049 // 05-02-03 Fix compilation warnings (V.Ivanchenko)
00050 // 13-02-03 SubCutoff regime is assigned to a region (V.Ivanchenko)
00051 // 23-05-03 Add fluctuation model as a member function (V.Ivanchenko)
00052 // 03-06-03 Fix initialisation problem for STD ionisation (V.Ivanchenko)
00053 // 08-08-03 STD substitute standard  (V.Ivanchenko)
00054 // 12-11-03 G4EnergyLossSTD -> G4EnergyLossProcess (V.Ivanchenko)
00055 // 21-01-04 Migrade to G4ParticleChangeForLoss (V.Ivanchenko)
00056 // 08-11-04 Migration to new interface of Store/Retrieve tables (V.Ivantchenko)
00057 // 08-04-05 Major optimisation of internal interfaces (V.Ivantchenko)
00058 // 11-04-04 Move MaxSecondaryEnergy to models (V.Ivanchenko)
00059 //
00060 // Class Description:
00061 //
00062 // This class manages the ionisation process for e-/e+
00063 // it inherites from G4VContinuousDiscreteProcess via G4VEnergyLossProcess.
00064 //
00065 
00066 // -------------------------------------------------------------------
00067 //
00068 
00069 #ifndef G4eIonisation_h
00070 #define G4eIonisation_h 1
00071 
00072 #include "G4VEnergyLossProcess.hh"
00073 #include "G4Electron.hh"
00074 #include "G4Positron.hh"
00075 #include "G4VEmModel.hh"
00076 
00077 class G4Material;
00078 class G4ParticleDefinition;
00079 
00080 class G4eIonisation : public G4VEnergyLossProcess
00081 {
00082 
00083 public:
00084 
00085   G4eIonisation(const G4String& name = "eIoni");
00086 
00087   virtual ~G4eIonisation();
00088 
00089   virtual G4bool IsApplicable(const G4ParticleDefinition& p);
00090 
00091   // Print out of the class parameters
00092   virtual void PrintInfo();
00093 
00094 protected:
00095 
00096   virtual void InitialiseEnergyLossProcess(const G4ParticleDefinition*,
00097                                            const G4ParticleDefinition*);
00098 
00099   virtual G4double MinPrimaryEnergy(const G4ParticleDefinition*,
00100                                     const G4Material*, G4double cut);
00101 
00102 private:
00103 
00104   // hide assignment operator
00105   G4eIonisation & operator=(const G4eIonisation &right);
00106   G4eIonisation(const G4eIonisation&);
00107 
00108   const G4ParticleDefinition* theElectron;
00109 
00110   G4bool isElectron;
00111   G4bool isInitialised;
00112 };
00113 
00114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
00115 
00116 #endif

Generated on Mon May 27 17:48:06 2013 for Geant4 by  doxygen 1.4.7