Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file StepMaxProcess.cc 26 /// \file StepMaxProcess.cc 27 /// \brief Implementation of the StepMaxProces 27 /// \brief Implementation of the StepMaxProcess class 28 // 28 // 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 32 33 #include "StepMaxProcess.hh" 33 #include "StepMaxProcess.hh" 34 << 35 #include "HistoManager.hh" << 36 #include "StepMaxMessenger.hh" 34 #include "StepMaxMessenger.hh" >> 35 #include "HistoManager.hh" 37 36 38 //....oooOO0OOooo........oooOO0OOooo........oo 37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 39 38 40 StepMaxProcess::StepMaxProcess(const G4String& 39 StepMaxProcess::StepMaxProcess(const G4String& processName, G4ProcessType type) 41 : G4VDiscreteProcess(processName, type) << 40 : G4VDiscreteProcess(processName,type) 42 { 41 { 43 fMaxStep1 = fMaxStep2 = DBL_MAX; 42 fMaxStep1 = fMaxStep2 = DBL_MAX; 44 fApplyMaxStep2 = true; 43 fApplyMaxStep2 = true; 45 fMess = new StepMaxMessenger(this); 44 fMess = new StepMaxMessenger(this); 46 } 45 } 47 46 48 //....oooOO0OOooo........oooOO0OOooo........oo 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 49 48 50 StepMaxProcess::~StepMaxProcess() << 49 StepMaxProcess::~StepMaxProcess() { delete fMess; } 51 { << 52 delete fMess; << 53 } << 54 50 55 //....oooOO0OOooo........oooOO0OOooo........oo 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 56 52 57 G4bool StepMaxProcess::IsApplicable(const G4Pa 53 G4bool StepMaxProcess::IsApplicable(const G4ParticleDefinition& particle) 58 { 54 { 59 return (particle.GetPDGCharge() != 0. && !pa 55 return (particle.GetPDGCharge() != 0. && !particle.IsShortLived()); 60 } 56 } 61 57 62 //....oooOO0OOooo........oooOO0OOooo........oo 58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 63 59 64 void StepMaxProcess::SetMaxStep1(G4double step << 60 void StepMaxProcess::SetMaxStep1(G4double step) {fMaxStep1 = step;} 65 { << 66 fMaxStep1 = step; << 67 } << 68 61 69 //....oooOO0OOooo........oooOO0OOooo........oo 62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 70 63 71 void StepMaxProcess::ApplyMaxStep2(G4bool valu << 64 void StepMaxProcess::ApplyMaxStep2(G4bool value) {fApplyMaxStep2 = value;} 72 { << 73 fApplyMaxStep2 = value; << 74 } << 75 65 76 //....oooOO0OOooo........oooOO0OOooo........oo 66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 77 67 78 G4double StepMaxProcess::PostStepGetPhysicalIn << 68 G4double StepMaxProcess::PostStepGetPhysicalInteractionLength( const G4Track&, 79 << 69 G4double, >> 70 G4ForceCondition* condition) 80 { 71 { 81 // condition is set to "Not Forced" 72 // condition is set to "Not Forced" 82 *condition = NotForced; 73 *condition = NotForced; 83 74 84 if (fApplyMaxStep2) { 75 if (fApplyMaxStep2) { 85 G4AnalysisManager* analysisManager = G4Ana 76 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 86 G4int ih = 10; 77 G4int ih = 10; 87 if (analysisManager->GetH1Activation(ih)) 78 if (analysisManager->GetH1Activation(ih)) 88 fMaxStep2 = analysisManager->GetH1Width( << 79 fMaxStep2 = analysisManager->GetH1Width(ih)*analysisManager->GetH1Unit(ih); 89 return fMaxStep2; 80 return fMaxStep2; 90 } 81 } 91 else << 82 else return fMaxStep1; 92 return fMaxStep1; << 93 } 83 } 94 84 95 //....oooOO0OOooo........oooOO0OOooo........oo 85 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 96 86 97 G4VParticleChange* StepMaxProcess::PostStepDoI << 87 G4VParticleChange* StepMaxProcess::PostStepDoIt(const G4Track& aTrack, >> 88 const G4Step&) 98 { 89 { 99 // do nothing << 90 // do nothing 100 aParticleChange.Initialize(aTrack); << 91 aParticleChange.Initialize(aTrack); 101 return &aParticleChange; << 92 return &aParticleChange; 102 } 93 } 103 94 104 //....oooOO0OOooo........oooOO0OOooo........oo 95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 105 96