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