source: trunk/source/processes/electromagnetic/lowenergy/include/G4ionLowEnergyIonisation.hh

Last change on this file was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 4.0 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// ------------------------------------------------------------
28//      GEANT 4 class header file
29//
30//      History: based on object model of
31//      2nd December 1995, G.Cosmo
32//      ---------- G4ionLowEnergyIonisation physics process -----
33//                by Vladimir Ivanchenko, 6 September 1999
34//                was made on the base of G4hLowEnergyIonisation class
35// ************************************************************
36//  6 September 1999 V.Ivanchenko create
37// ************************************************************
38//
39// Class Description:
40// This class is OBSOLETE; the same functionality is now provided by
41// G4hLowEnergyIonisation
42// Further documentation available from http://www.ge.infn.it/geant4/lowE
43
44// ------------------------------------------------------------
45 
46#ifndef G4ionLowEnergyIonisation_h
47#define G4ionLowEnergyIonisation_h 1
48 
49#include "G4hLowEnergyIonisation.hh"
50
51class G4ionLowEnergyIonisation : public G4hLowEnergyIonisation
52{
53public: // Without description
54 
55  G4ionLowEnergyIonisation(const G4String& processName = "ionLowEIoni"); 
56 
57  ~G4ionLowEnergyIonisation();
58   
59  //  G4double GetIonParametrisedLoss(const G4Material* material, const G4double KinEnergy,
60  //                   const G4double DeltaRayCutNow);
61
62  //  G4double GetIonBetheBlochLoss(const G4Material* material, const G4double KinEnergy,
63  //                 const G4double DeltaRayCutNow);
64                             
65  G4double GetLowEnergyForParametrisation(const G4Material* material);
66 
67  void PrintInfoDefinition();
68
69public: // With description
70
71  void SetIonDefinition(G4ParticleDefinition* theIonType);
72  // This method define the ion type
73
74private:
75 
76  // hide assignment operator
77  G4ionLowEnergyIonisation & operator=(const G4ionLowEnergyIonisation &right);
78  G4ionLowEnergyIonisation(const G4ionLowEnergyIonisation&);
79 
80  //  private data members ...............................
81
82  //  G4double GetConstraints(const G4DynamicParticle *aParticle,
83  //                      G4Material *aMaterial);
84                                       
85  G4double GetIonLossWithFluct(const G4DynamicParticle *aParticle,
86                            G4Material *aMaterial,
87                            G4double MeanLoss) ;
88
89  //  G4VParticleChange* AlongStepDoIt(const G4Track& track ,const G4Step& Step);
90
91protected:
92  //  protected data members ...............................
93   
94};
95
96#endif
97 
98
99
100
101
102
103
104
Note: See TracBrowser for help on using the repository browser.