G4VLowEnergyModel.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 //
00027 // -------------------------------------------------------------------
00028 //
00029 // GEANT4 Class file
00030 //
00031 //
00032 // File name:     G4VLowEnergyModel
00033 //
00034 // Author:        Maria Grazia Pia (MariaGrazia.Pia@ge.infn.it)
00035 // 
00036 // Creation date: 7 May 2000
00037 //
00038 // Modifications: 
00039 // 22/05/2000  MGP          Version compliant with design
00040 // 20/07/2000  V.Ivanchenko First implementation
00041 //
00042 // Class Description: 
00043 //
00044 // Abstract class for Low Energy Electromagnetic models
00045 // Further documentation available from http://www.ge.infn.it/geant4/lowE
00046 
00047 // -------------------------------------------------------------------
00048 //
00049 
00050 #ifndef G4VLowEnergyModel_h
00051 #define G4VLowEnergyModel_h 1
00052 
00053 #include "G4ios.hh"
00054 #include "globals.hh"
00055 
00056 class G4ParticleDefinition;
00057 class G4DynamicParticle;
00058 class G4Material;
00059 
00060 class G4VLowEnergyModel 
00061 {
00062 
00063 public:
00064 
00065   G4VLowEnergyModel(const G4String& name);
00066 
00067   virtual ~G4VLowEnergyModel();
00068 
00069   virtual G4double TheValue(const G4DynamicParticle* particle,
00070                             const G4Material* material)  = 0;
00071 
00072   virtual G4double TheValue(const G4ParticleDefinition* aParticle,
00073                             const G4Material* material,
00074                                   G4double kineticEnergy) = 0;
00075 
00076   virtual G4double HighEnergyLimit(const G4ParticleDefinition* aParticle,
00077                                    const G4Material* material) const = 0;
00078  
00079   virtual G4double LowEnergyLimit(const G4ParticleDefinition* aParticle,
00080                                   const G4Material* material) const = 0;
00081 
00082   virtual G4double HighEnergyLimit(const G4ParticleDefinition* aParticle)
00083                                   const = 0;
00084  
00085   virtual G4double LowEnergyLimit(const G4ParticleDefinition* aParticle) 
00086                                   const = 0;
00087  
00088   virtual G4bool IsInCharge(const G4DynamicParticle* particle,
00089                             const G4Material* material) const = 0;
00090  
00091   virtual G4bool IsInCharge(const G4ParticleDefinition* aParticle,
00092                             const G4Material* material) const = 0;
00093 
00094 protected:
00095 
00096 private:
00097 
00098   // hide assignment operator 
00099      G4VLowEnergyModel & operator=(const  G4VLowEnergyModel &right);
00100      G4VLowEnergyModel(const  G4VLowEnergyModel&);
00101 
00102 };
00103 
00104 #endif
00105 

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