Geant4 Cross Reference |
1 // 2 // ******************************************************************** 3 // * License and Disclaimer * 4 // * * 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. * 10 // * * 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. * 17 // * * 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 // ******************************************************************** 25 // 26 /// \file field/field01/src/F01SteppingVerbose.cc 27 /// \brief Implementation of the F01SteppingVerbose class 28 // 29 // 30 // 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 34 #include "F01SteppingVerbose.hh" 35 36 #include "G4SteppingManager.hh" 37 #include "G4UnitsTable.hh" 38 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 40 41 void F01SteppingVerbose::StepInfo() 42 { 43 CopyState(); 44 45 G4int prec = G4cout.precision(6); 46 47 if (verboseLevel >= 1) { 48 if (verboseLevel >= 4) VerboseTrack(); 49 if (verboseLevel >= 3) { 50 G4cout << G4endl; 51 G4cout << std::setw(5) << "#Step#" 52 << " " << std::setw(10) << "X" 53 << " " << std::setw(10) << "Y" 54 << " " << std::setw(10) << "Z" 55 << " " << std::setw(10) << "Direction x" 56 << " " << std::setw(10) << "dir y" 57 << " " << std::setw(10) << "dir z" 58 << " " << std::setw(8) << "KineE" 59 << " " << std::setw(10) << "dEStep" 60 << " " << std::setw(10) << "StepLeng" 61 << " " << std::setw(10) << "TrakLeng" 62 << " " << std::setw(10) << "NextVolu" 63 << " " << std::setw(10) << "Process" 64 << " " << G4endl; 65 } 66 67 G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " " << std::setw(10) 68 << G4BestUnit(fTrack->GetPosition().x(), "Length") << std::setw(10) 69 << G4BestUnit(fTrack->GetPosition().y(), "Length") << std::setw(10) 70 << G4BestUnit(fTrack->GetPosition().z(), "Length"); 71 G4cout << std::setw(10) << fTrack->GetMomentumDirection().x() << " " << std::setw(10) 72 << fTrack->GetMomentumDirection().y() << " " << std::setw(10) 73 << fTrack->GetMomentumDirection().z() << " "; 74 G4cout << std::setw(8) << G4BestUnit(fTrack->GetKineticEnergy(), "Energy") << " " 75 << std::setw(10) << G4BestUnit(fStep->GetTotalEnergyDeposit(), "Energy") << " " 76 << std::setw(10) << G4BestUnit(fStep->GetStepLength(), "Length") << " " << std::setw(10) 77 << G4BestUnit(fTrack->GetTrackLength(), "Length") << " "; 78 79 if (fTrack->GetNextVolume() != nullptr) { 80 G4cout << std::setw(10) << fTrack->GetVolume()->GetName(); 81 } 82 else { 83 G4cout << std::setw(10) << "OutOfWorld"; 84 } 85 86 if (fStep->GetPostStepPoint()->GetProcessDefinedStep() != nullptr) { 87 G4cout << " " << std::setw(10) 88 << fStep->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName(); 89 } 90 else { 91 G4cout << " UserLimit"; 92 } 93 G4cout << G4endl; 94 95 if (verboseLevel == 2) { 96 G4int tN2ndariesTot = fN2ndariesAtRestDoIt + fN2ndariesAlongStepDoIt + fN2ndariesPostStepDoIt; 97 if (tN2ndariesTot > 0) { 98 G4cout << " :----- List of 2ndaries - " 99 << "#SpawnInStep=" << std::setw(3) << tN2ndariesTot << "(Rest=" << std::setw(2) 100 << fN2ndariesAtRestDoIt << ",Along=" << std::setw(2) << fN2ndariesAlongStepDoIt 101 << ",Post=" << std::setw(2) << fN2ndariesPostStepDoIt << "), " 102 << "#SpawnTotal=" << std::setw(3) << (*fSecondary).size() << " ---------------" 103 << G4endl; 104 105 for (size_t lp1 = (*fSecondary).size() - tN2ndariesTot; lp1 < (*fSecondary).size(); lp1++) { 106 G4cout << " : " << std::setw(6) 107 << G4BestUnit((*fSecondary)[lp1]->GetPosition().x(), "Length") << std::setw(6) 108 << G4BestUnit((*fSecondary)[lp1]->GetPosition().y(), "Length") << std::setw(6) 109 << G4BestUnit((*fSecondary)[lp1]->GetPosition().z(), "Length") << std::setw(6) 110 << G4BestUnit((*fSecondary)[lp1]->GetKineticEnergy(), "Energy") << std::setw(10) 111 << (*fSecondary)[lp1]->GetDefinition()->GetParticleName(); 112 G4cout << G4endl; 113 } 114 115 G4cout << " :-----------------------------" 116 << "----------------------------------" 117 << "-- EndOf2ndaries Info ---------------" << G4endl; 118 } 119 } 120 } 121 G4cout.precision(prec); 122 } 123 124 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 125 126 void F01SteppingVerbose::TrackingStarted() 127 { 128 CopyState(); 129 G4int prec = G4cout.precision(6); 130 if (verboseLevel > 0) { 131 G4cout << std::setw(5) << "Step#" 132 << " " << std::setw(10) << "X" 133 << " " << std::setw(10) << "Y" 134 << " " << std::setw(10) << "Z" 135 << " " << std::setw(10) << "Direction x" 136 << " " << std::setw(10) << "dir y" 137 << " " << std::setw(10) << "dir z" 138 << " " << std::setw(10) << "KineE" 139 << " " << std::setw(10) << "dEStep" 140 << " " << std::setw(10) << "StepLeng" << std::setw(10) << "TrakLeng" << std::setw(10) 141 << "Volume" 142 << " " << std::setw(10) << "Process" << G4endl; 143 144 G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " " << std::setw(10) 145 << G4BestUnit(fTrack->GetPosition().x(), "Length") << std::setw(10) 146 << G4BestUnit(fTrack->GetPosition().y(), "Length") << std::setw(10) 147 << G4BestUnit(fTrack->GetPosition().z(), "Length"); 148 G4cout << std::setw(10) << fTrack->GetMomentumDirection().x() << " " << std::setw(10) 149 << fTrack->GetMomentumDirection().y() << " " << std::setw(10) 150 << fTrack->GetMomentumDirection().z() << " "; 151 G4cout << std::setw(8) << G4BestUnit(fTrack->GetKineticEnergy(), "Energy") << std::setw(6) 152 << G4BestUnit(fStep->GetTotalEnergyDeposit(), "Energy") << std::setw(10) 153 << G4BestUnit(fStep->GetStepLength(), "Length") << std::setw(10) 154 << G4BestUnit(fTrack->GetTrackLength(), "Length"); 155 156 if (fTrack->GetNextVolume()) { 157 G4cout << std::setw(10) << fTrack->GetVolume()->GetName(); 158 } 159 else { 160 G4cout << std::setw(10) << "OutOfWorld"; 161 } 162 G4cout << " initStep" << G4endl; 163 } 164 G4cout.precision(prec); 165 } 166 167 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 168