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 // 26 // 27 // 27 // 28 // 28 // 29 // 29 // 30 // Inline function implementation. 30 // Inline function implementation. 31 31 32 // =========================================== 32 // ======================================================================= 33 // Created: 9 June 1998, J. Apostolakis 33 // Created: 9 June 1998, J. Apostolakis 34 // =========================================== 34 // ======================================================================= 35 35 36 #include <CLHEP/Units/SystemOfUnits.h> 36 #include <CLHEP/Units/SystemOfUnits.h> 37 #include "G4TransportationLogger.hh" 37 #include "G4TransportationLogger.hh" >> 38 #include "G4FieldManagerStore.hh" 38 39 39 inline void 40 inline void 40 G4Transportation::SetPropagatorInField( G4Prop 41 G4Transportation::SetPropagatorInField( G4PropagatorInField* pFieldPropagator) 41 { 42 { 42 fFieldPropagator= pFieldPropagator; 43 fFieldPropagator= pFieldPropagator; 43 } 44 } 44 45 45 inline G4PropagatorInField* G4Transportation:: 46 inline G4PropagatorInField* G4Transportation::GetPropagatorInField() 46 { 47 { 47 return fFieldPropagator; 48 return fFieldPropagator; >> 49 } >> 50 >> 51 inline G4bool G4Transportation::DoesAnyFieldExist() >> 52 { >> 53 G4FieldManagerStore* fieldMgrStore= G4FieldManagerStore::GetInstance(); >> 54 return fieldMgrStore->size() > 0; 48 } 55 } 49 56 50 inline G4double G4Transportation::GetThreshold 57 inline G4double G4Transportation::GetThresholdWarningEnergy() const 51 { 58 { 52 return fThreshold_Warning_Energy; 59 return fThreshold_Warning_Energy; 53 } 60 } 54 61 55 inline G4double G4Transportation::GetThreshold 62 inline G4double G4Transportation::GetThresholdImportantEnergy() const 56 { 63 { 57 return fThreshold_Important_Energy; 64 return fThreshold_Important_Energy; 58 } 65 } 59 66 60 inline G4int G4Transportation::GetThresholdTri 67 inline G4int G4Transportation::GetThresholdTrials() const 61 { 68 { 62 return fThresholdTrials; 69 return fThresholdTrials; 63 } 70 } 64 71 65 inline void G4Transportation::SetThresholdWarn 72 inline void G4Transportation::SetThresholdWarningEnergy( G4double newEnWarn ) 66 { 73 { 67 fThreshold_Warning_Energy= newEnWarn; 74 fThreshold_Warning_Energy= newEnWarn; 68 if( fpLogger ) { 75 if( fpLogger ) { 69 fpLogger->SetThresholdWarningEnergy( newE 76 fpLogger->SetThresholdWarningEnergy( newEnWarn ); 70 } else { 77 } else { 71 ReportMissingLogger("SetThresholdWarningE 78 ReportMissingLogger("SetThresholdWarningEnergy"); 72 } 79 } 73 // Update the information for correct report 80 // Update the information for correct reporting 74 } 81 } 75 82 76 inline void G4Transportation::SetThresholdImpo 83 inline void G4Transportation::SetThresholdImportantEnergy( G4double newEnImp ) 77 { 84 { 78 fThreshold_Important_Energy = newEnImp; 85 fThreshold_Important_Energy = newEnImp; 79 if( fpLogger ) { 86 if( fpLogger ) { 80 fpLogger->SetThresholdImportantEnergy( ne 87 fpLogger->SetThresholdImportantEnergy( newEnImp ); 81 // Update the information for correct repo 88 // Update the information for correct reporting 82 } else { 89 } else { 83 ReportMissingLogger("SetThresholdImportan 90 ReportMissingLogger("SetThresholdImportantEnergy"); 84 } 91 } 85 } 92 } 86 93 87 inline void G4Transportation::SetThresholdTria 94 inline void G4Transportation::SetThresholdTrials(G4int newMaxTrials ) 88 { 95 { 89 fThresholdTrials = newMaxTrials; 96 fThresholdTrials = newMaxTrials; 90 if( fpLogger ) { 97 if( fpLogger ) { 91 fpLogger->SetThresholdTrials(newMaxTrials 98 fpLogger->SetThresholdTrials(newMaxTrials ); 92 // Update the information for correct rep 99 // Update the information for correct reporting 93 } else { 100 } else { 94 ReportMissingLogger("SetThresholdTrials") 101 ReportMissingLogger("SetThresholdTrials"); 95 } 102 } 96 } 103 } 97 104 98 inline G4double G4Transportation::GetMaxEnergy 105 inline G4double G4Transportation::GetMaxEnergyKilled() const 99 { 106 { 100 return fMaxEnergyKilled; 107 return fMaxEnergyKilled; 101 } 108 } 102 109 103 inline G4double G4Transportation::GetSumEnergy 110 inline G4double G4Transportation::GetSumEnergyKilled() const 104 { 111 { 105 return fSumEnergyKilled; 112 return fSumEnergyKilled; 106 } 113 } 107 114 108 inline void G4Transportation::ResetKilledStati 115 inline void G4Transportation::ResetKilledStatistics(G4int report) 109 { 116 { 110 // Statistics for tracks killed (currently d 117 // Statistics for tracks killed (currently due to looping in field) 111 118 112 if( report ) 119 if( report ) 113 { 120 { 114 G4cout << " G4Transportation: Statistics f 121 G4cout << " G4Transportation: Statistics for looping particles " 115 << G4endl; 122 << G4endl; 116 G4cout << " Sum of energy of loopers kil 123 G4cout << " Sum of energy of loopers killed: " << fSumEnergyKilled 117 << G4endl; 124 << G4endl; 118 G4cout << " Max energy of loopers killed 125 G4cout << " Max energy of loopers killed: " << fMaxEnergyKilled 119 << G4endl; 126 << G4endl; 120 } 127 } 121 128 122 fSumEnergyKilled= 0; 129 fSumEnergyKilled= 0; 123 fMaxEnergyKilled= -1.0*CLHEP::GeV; 130 fMaxEnergyKilled= -1.0*CLHEP::GeV; 124 } 131 } 125 132 126 inline void 133 inline void 127 G4Transportation::EnableShortStepOptimisation( 134 G4Transportation::EnableShortStepOptimisation(G4bool optimiseShortStep) 128 { 135 { 129 fShortStepOptimisation=optimiseShortStep; 136 fShortStepOptimisation=optimiseShortStep; 130 } 137 } 131 138 132 inline void 139 inline void 133 G4Transportation::PushThresholdsToLogger() 140 G4Transportation::PushThresholdsToLogger() 134 { 141 { 135 if( fpLogger ) 142 if( fpLogger ) 136 fpLogger->SetThresholds( GetThresholdWarn 143 fpLogger->SetThresholds( GetThresholdWarningEnergy(), 137 GetThresholdImpo 144 GetThresholdImportantEnergy(), 138 GetThresholdTria 145 GetThresholdTrials() ); 139 else 146 else 140 ReportMissingLogger("PushThresholdsToLogg 147 ReportMissingLogger("PushThresholdsToLogger()"); 141 } 148 } 142 149 143 150