2 // ********************************************************************
3 // * License and Disclaimer *
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. *
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. *
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 // ********************************************************************
27 // $Id: G4UserLimits.icc 67970 2013-03-13 10:10:06Z gcosmo $
31 // class G4UserLimits inline implementation
33 // 01-11-97: change GetMaxAllowedStep(), Hisaya Kurashige
34 // 08-04-98: new data members, mma
37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
40 inline G4UserLimits::G4UserLimits(G4double ustepMax,
45 :fMaxStep (ustepMax),fMaxTrack(utrakMax),fMaxTime(utimeMax),
46 fMinEkine(uekinMin),fMinRange(urangMin),fType("base")
49 inline G4UserLimits::G4UserLimits(const G4String& type,
55 :fMaxStep (ustepMax),fMaxTrack(utrakMax),fMaxTime(utimeMax),
56 fMinEkine(uekinMin),fMinRange(urangMin),fType(type)
59 inline const G4String& G4UserLimits::GetType() const
64 inline void G4UserLimits::SetType(const G4String& type)
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 inline G4UserLimits::~G4UserLimits(){}
72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
74 inline G4double G4UserLimits::GetMaxAllowedStep(const G4Track&)
79 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81 inline G4double G4UserLimits::GetUserMaxTrackLength(const G4Track&)
86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
88 inline G4double G4UserLimits::GetUserMaxTime(const G4Track&)
93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
95 inline G4double G4UserLimits::GetUserMinEkine(const G4Track&)
100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
102 inline G4double G4UserLimits::GetUserMinRange(const G4Track&)
107 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
109 inline void G4UserLimits::SetMaxAllowedStep(G4double ustepMax)
114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
116 inline void G4UserLimits::SetUserMaxTrackLength(G4double utrakMax)
121 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
123 inline void G4UserLimits::SetUserMaxTime(G4double utimeMax)
128 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
130 inline void G4UserLimits::SetUserMinEkine(G4double uekinMin)
135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
137 inline void G4UserLimits::SetUserMinRange(G4double urangMin)
142 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......