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 // This example is provided by the Geant4-DNA 26 // This example is provided by the Geant4-DNA collaboration 27 // Any report or published results obtained us << 27 // Any report or published results obtained using the Geant4-DNA software 28 // shall cite the following Geant4-DNA collabo 28 // shall cite the following Geant4-DNA collaboration publications: 29 // Med. Phys. 45 (2018) e722-e739 << 30 // Phys. Med. 31 (2015) 861-874 << 31 // Med. Phys. 37 (2010) 4692-4708 29 // Med. Phys. 37 (2010) 4692-4708 32 // Int. J. Model. Simul. Sci. Comput. 1 (2010) << 30 // Phys. Med. 31 (2015) 861-874 33 // << 34 // The Geant4-DNA web site is available at htt 31 // The Geant4-DNA web site is available at http://geant4-dna.org 35 // 32 // 36 /// \file medical/dna/svalue/src/SteppingVerbo 33 /// \file medical/dna/svalue/src/SteppingVerbose.cc 37 /// \brief Implementation of the SteppingVerbo 34 /// \brief Implementation of the SteppingVerbose class 38 35 39 #include "SteppingVerbose.hh" 36 #include "SteppingVerbose.hh" 40 37 >> 38 #include "G4SteppingManager.hh" >> 39 #include "G4ParticleTypes.hh" 41 #include "G4UnitsTable.hh" 40 #include "G4UnitsTable.hh" 42 41 43 //....oooOO0OOooo........oooOO0OOooo........oo 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 44 43 45 SteppingVerbose::SteppingVerbose() : G4Steppin << 44 SteppingVerbose::SteppingVerbose() >> 45 : G4SteppingVerbose() >> 46 {} 46 47 47 //....oooOO0OOooo........oooOO0OOooo........oo 48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 49 49 SteppingVerbose::~SteppingVerbose() {} << 50 SteppingVerbose::~SteppingVerbose() >> 51 {} 50 52 51 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 54 53 void SteppingVerbose::TrackingStarted() 55 void SteppingVerbose::TrackingStarted() 54 { << 56 { 55 CopyState(); 57 CopyState(); 56 << 58 57 G4int prec = G4cout.precision(3); 59 G4int prec = G4cout.precision(3); 58 << 60 59 // Step zero << 61 //Step zero 60 // << 62 // 61 if (verboseLevel > 0) { << 63 if( verboseLevel > 0 ){ 62 G4cout << std::setw(5) << "Step#" << 64 G4cout << std::setw( 5) << "Step#" << " " 63 << " " << std::setw(6) << "X" << 65 << std::setw( 6) << "X" << " " 64 << " " << std::setw(6) << "Y" << 66 << std::setw( 6) << "Y" << " " 65 << " " << std::setw(6) << "Z" << 67 << std::setw( 6) << "Z" << " " 66 << " " << std::setw(9) << "KineE << 68 << std::setw( 9) << "KineE" << " " 67 << " " << std::setw(9) << "dEStep" << 69 << std::setw( 9) << "dEStep" << " " 68 << " " << std::setw(10) << "StepLen << 70 << std::setw(10) << "StepLeng" 69 << "Volume" << 71 << std::setw(10) << "TrakLeng" 70 << " " << std::setw(10) << "Proces << 72 << std::setw(10) << "Volume" << " " 71 << 73 << std::setw(10) << "Process" << G4endl; 72 G4cout << std::setw(5) << fTrack->GetCurre << 74 73 << G4BestUnit(fTrack->GetPosition() << 75 G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " " 74 << G4BestUnit(fTrack->GetPosition() << 76 << std::setw(6) << G4BestUnit(fTrack->GetPosition().x(),"Length") 75 << G4BestUnit(fTrack->GetPosition() << 77 << std::setw(6) << G4BestUnit(fTrack->GetPosition().y(),"Length") 76 << G4BestUnit(fTrack->GetKineticEne << 78 << std::setw(6) << G4BestUnit(fTrack->GetPosition().z(),"Length") 77 << G4BestUnit(fStep->GetTotalEnergy << 79 << std::setw(6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy") 78 << G4BestUnit(fStep->GetStepLength( << 80 << std::setw(6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy") 79 << G4BestUnit(fTrack->GetTrackLengt << 81 << std::setw(6) << G4BestUnit(fStep->GetStepLength(),"Length") 80 << fTrack->GetVolume()->GetName() < << 82 << std::setw(6) << G4BestUnit(fTrack->GetTrackLength(),"Length") >> 83 << std::setw(10) << fTrack->GetVolume()->GetName() >> 84 << " initStep" << G4endl; 81 } 85 } 82 G4cout.precision(prec); 86 G4cout.precision(prec); 83 } 87 } 84 88 85 //....oooOO0OOooo........oooOO0OOooo........oo 89 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 86 90 87 void SteppingVerbose::StepInfo() 91 void SteppingVerbose::StepInfo() 88 { << 92 { 89 CopyState(); 93 CopyState(); 90 << 94 91 G4int prec = G4cout.precision(3); 95 G4int prec = G4cout.precision(3); 92 96 93 if (verboseLevel >= 1) { << 97 if( verboseLevel >= 1 ){ 94 if (verboseLevel >= 4) VerboseTrack(); << 98 if( verboseLevel >= 4 ) VerboseTrack(); 95 if (verboseLevel >= 3) { << 99 if( verboseLevel >= 3 ){ 96 G4cout << G4endl; << 100 G4cout << G4endl; 97 G4cout << std::setw(5) << "#Step#" << 101 G4cout << std::setw( 5) << "#Step#" << " " 98 << " " << std::setw(6) << "X" << 102 << std::setw( 6) << "X" << " " 99 << " " << std::setw(6) << "Y" << 103 << std::setw( 6) << "Y" << " " 100 << " " << std::setw(6) << "Z" << 104 << std::setw( 6) << "Z" << " " 101 << " " << std::setw(9) << "Kin << 105 << std::setw( 9) << "KineE" << " " 102 << " " << std::setw(9) << "dEStep << 106 << std::setw( 9) << "dEStep" << " " 103 << " " << std::setw(10) << "StepL << 107 << std::setw(10) << "StepLeng" 104 << "Volume" << 108 << std::setw(10) << "TrakLeng" 105 << " " << std::setw(10) << "Proc << 109 << std::setw(10) << "Volume" << " " >> 110 << std::setw(10) << "Process" << G4endl; 106 } 111 } 107 112 108 G4cout << std::setw(5) << fTrack->GetCurre << 113 G4cout << std::setw( 5) << fTrack->GetCurrentStepNumber() << " " 109 << G4BestUnit(fTrack->GetPosition() << 114 << std::setw(6) << G4BestUnit(fTrack->GetPosition().x(),"Length") 110 << G4BestUnit(fTrack->GetPosition() << 115 << std::setw(6) << G4BestUnit(fTrack->GetPosition().y(),"Length") 111 << G4BestUnit(fTrack->GetPosition() << 116 << std::setw(6) << G4BestUnit(fTrack->GetPosition().z(),"Length") 112 << G4BestUnit(fTrack->GetKineticEne << 117 << std::setw(6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy") 113 << G4BestUnit(fStep->GetTotalEnergy << 118 << std::setw(6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy") 114 << G4BestUnit(fStep->GetStepLength( << 119 << std::setw(6) << G4BestUnit(fStep->GetStepLength(),"Length") 115 << G4BestUnit(fTrack->GetTrackLengt << 120 << std::setw(6) << G4BestUnit(fTrack->GetTrackLength(),"Length") 116 << fTrack->GetVolume()->GetName(); << 121 << std::setw(10) << fTrack->GetVolume()->GetName(); 117 122 118 const G4VProcess* process = fStep->GetPost << 123 const G4VProcess* process >> 124 = fStep->GetPostStepPoint()->GetProcessDefinedStep(); 119 G4String procName = " UserLimit"; 125 G4String procName = " UserLimit"; 120 if (process) procName = process->GetProces 126 if (process) procName = process->GetProcessName(); 121 if (fStepStatus == fWorldBoundary) procNam 127 if (fStepStatus == fWorldBoundary) procName = "OutOfWorld"; 122 G4cout << " " << std::setw(10) << procNa 128 G4cout << " " << std::setw(10) << procName; 123 G4cout << G4endl; 129 G4cout << G4endl; 124 130 125 if (verboseLevel == 2) { 131 if (verboseLevel == 2) { 126 const std::vector<const G4Track*>* secon << 132 const std::vector<const G4Track*>* secondary >> 133 = fStep->GetSecondaryInCurrentStep(); 127 size_t nbtrk = (*secondary).size(); 134 size_t nbtrk = (*secondary).size(); 128 if (nbtrk) { 135 if (nbtrk) { 129 G4cout << "\n :----- List of second 136 G4cout << "\n :----- List of secondaries ----------------" << G4endl; 130 G4cout.precision(4); 137 G4cout.precision(4); 131 for (size_t lp = 0; lp < (*secondary). << 138 for (size_t lp=0; lp<(*secondary).size(); lp++) { 132 G4cout << " " << std::setw(13) << << 139 G4cout << " " 133 << ": energy =" << std::setw << 140 << std::setw(13) 134 << G4BestUnit((*secondary)[lp << 141 << (*secondary)[lp]->GetDefinition()->GetParticleName() 135 << " time =" << std::setw(6) << 142 << ": energy =" 136 << G4BestUnit((*secondary)[lp << 143 << std::setw(6) >> 144 << G4BestUnit((*secondary)[lp]->GetKineticEnergy(),"Energy") >> 145 << " time =" >> 146 << std::setw(6) >> 147 << G4BestUnit((*secondary)[lp]->GetGlobalTime(),"Time"); 137 G4cout << G4endl; 148 G4cout << G4endl; 138 } 149 } 139 << 150 140 G4cout << " :---------------------- 151 G4cout << " :------------------------------------------\n" << G4endl; 141 } 152 } 142 } 153 } >> 154 143 } 155 } 144 G4cout.precision(prec); 156 G4cout.precision(prec); 145 } 157 } 146 158