Import Geant4 1.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:28:20 +02:00
parent aaa409b6ee
commit ca1c8cb059
2995 changed files with 106830 additions and 299600 deletions
@@ -1,12 +1,12 @@
// This code implementation is the intellectual property of
// the RD44 GEANT4 collaboration.
// 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: G4UserLimits.icc,v 1.1 1999/01/07 16:09:03 gunter Exp $
// GEANT4 tag $Name: geant4-00-01 $
// $Id: G4UserLimits.icc,v 1.3 1999/11/22 15:12:45 maire Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
//
//
@@ -15,8 +15,12 @@
// 01-11-97: change GetMaxAllowedStep(), Hisaya Kurashige
// 08-04-98: new data members, mma
//
#include "G4UserLimits.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline G4UserLimits::G4UserLimits(G4double ustepMax,
G4double utrakMax,
G4double utimeMax,
@@ -26,57 +30,78 @@ inline G4UserLimits::G4UserLimits(G4double ustepMax,
fMinEkine(uekinMin),fMinRange(urangMin)
{}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline G4UserLimits::~G4UserLimits(){}
// In this implementation, G4UserLimits has a single value
// for MaxAllowedStep.
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline G4double G4UserLimits::GetMaxAllowedStep(const G4Track&)
{
return fMaxStep;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline G4double G4UserLimits::GetUserMaxTrackLength(const G4Track&)
{
return fMaxTrack;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline G4double G4UserLimits::GetUserMaxTime(const G4Track&)
{
return fMaxTime;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline G4double G4UserLimits::GetUserMinEkine(const G4Track&)
{
return fMinEkine;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline G4double G4UserLimits::GetUserMinRange(const G4Track&)
{
return fMinRange;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline void G4UserLimits::SetMaxAllowedStep(G4double ustepMax)
{
fMaxStep=ustepMax;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline void G4UserLimits::SetUserMaxTrackLength(G4double utrakMax)
{
fMaxTrack=utrakMax;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline void G4UserLimits::SetUserMaxTime(G4double utimeMax)
{
fMaxTime=utimeMax;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline void G4UserLimits::SetUserMinEkine(G4double uekinMin)
{
fMinEkine=uekinMin;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline void G4UserLimits::SetUserMinRange(G4double urangMin)
{
fMinRange=urangMin;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......