60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
// 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.
|
|
//
|
|
// -------------------------------------------------------------------
|
|
//
|
|
// GEANT4 Class file
|
|
//
|
|
// For information related to this code contact:
|
|
// Geant4 Collaboration
|
|
//
|
|
// File name: G4hZiegler1985Nuclear
|
|
//
|
|
// Author: V.Ivanchenko (Vladimir.Ivanchenko@cern.ch)
|
|
//
|
|
// Creation date: 20 July 2000
|
|
//
|
|
// Modifications:
|
|
// 20/07/2000 V.Ivanchenko First implementation
|
|
//
|
|
// Class Description:
|
|
//
|
|
// Nuclear stopping power parametrised according to
|
|
// J.F.Ziegler, J.P. Biersack, U. Littmark
|
|
// The Stopping and Range of Ions in Matter,
|
|
// Vol.1, Pergamon Press, 1985
|
|
// Further documentation available from http://www.ge.infn.it/geant4/lowE
|
|
|
|
// -------------------------------------------------------------------
|
|
//
|
|
|
|
#ifndef G4hZiegler1985Nuclear_h
|
|
#define G4hZiegler1985Nuclear_h 1
|
|
|
|
#include "G4VhNuclearStoppingPower.hh"
|
|
|
|
class G4hZiegler1985Nuclear : public G4VhNuclearStoppingPower
|
|
{
|
|
|
|
public:
|
|
|
|
G4hZiegler1985Nuclear();
|
|
|
|
~G4hZiegler1985Nuclear();
|
|
|
|
G4double NuclearStoppingPower(G4double kineticEnergy,
|
|
G4double z1, G4double z2,
|
|
G4double m1, G4double m2) const;
|
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|