Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file field/field03/src/F03SteppingVerbose 27 /// \brief Implementation of the F03SteppingVe 28 // 29 // 30 // 31 // 32 //....oooOO0OOooo........oooOO0OOooo........oo 33 //....oooOO0OOooo........oooOO0OOooo........oo 34 35 #include "F03SteppingVerbose.hh" 36 37 #include "G4SteppingManager.hh" 38 #include "G4UnitsTable.hh" 39 40 //....oooOO0OOooo........oooOO0OOooo........oo 41 42 void F03SteppingVerbose::StepInfo() 43 { 44 CopyState(); 45 46 G4int prec = G4cout.precision(8); 47 48 if (verboseLevel >= 1) { 49 if (verboseLevel >= 4) VerboseTrack(); 50 if (verboseLevel >= 3) { 51 G4cout << G4endl; 52 G4cout << std::setw(5) << "#Step#" 53 << " " << std::setw(10) << "X" 54 << " " << std::setw(10) << "Y" 55 << " " << std::setw(10) << "Z" 56 << " " << std::setw(10) << "Ki 57 << " " << std::setw(10) << "dESte 58 << " " << std::setw(10) << "StepL 59 << "NextVolu" << std::setw(10) << 60 << " " << std::setw(10) << "Di 61 << " " << std::setw(10) << "Di 62 << " " << G4endl; 63 } 64 65 G4cout << std::setw(5) << fTrack->GetCurre 66 << G4BestUnit(fTrack->GetPosition() 67 << G4BestUnit(fTrack->GetPosition() 68 << G4BestUnit(fTrack->GetPosition() 69 << G4BestUnit(fTrack->GetKineticEne 70 << G4BestUnit(fStep->GetTotalEnergy 71 << G4BestUnit(fStep->GetStepLength( 72 << G4BestUnit(fTrack->GetTrackLengt 73 74 if (fTrack->GetNextVolume() != nullptr) { 75 G4cout << std::setw(10) << fTrack->GetVo 76 } 77 else { 78 G4cout << std::setw(10) << "OutOfWorld"; 79 } 80 81 if (fStep->GetPostStepPoint()->GetProcessD 82 G4cout << " " << std::setw(10) 83 << fStep->GetPostStepPoint()->Get 84 } 85 else { 86 G4cout << " UserLimit"; 87 } 88 89 G4cout << std::setw(12) << G4BestUnit(fTra 90 << std::setw(12) << G4BestUnit(fTra 91 << std::setw(12) << G4BestUnit(fTra 92 93 G4cout << G4endl; 94 95 if (verboseLevel == 2) { 96 G4int tN2ndariesTot = fN2ndariesAtRestDo 97 if (tN2ndariesTot > 0) { 98 G4cout << " :----- List of 2ndaries 99 << "#SpawnInStep=" << std::setw 100 << fN2ndariesAtRestDoIt << ",Al 101 << ",Post=" << std::setw(2) << 102 << "#SpawnTotal=" << std::setw( 103 << G4endl; 104 105 for (size_t lp1 = (*fSecondary).size() 106 G4cout << " : " << std::setw(6) 107 << G4BestUnit((*fSecondary)[l 108 << G4BestUnit((*fSecondary)[l 109 << G4BestUnit((*fSecondary)[l 110 << G4BestUnit((*fSecondary)[l 111 << (*fSecondary)[lp1]->GetDef 112 G4cout << G4endl; 113 } 114 115 G4cout << " :---------------------- 116 << "--------------------------- 117 << "-- EndOf2ndaries Info ----- 118 } 119 } 120 } 121 G4cout.precision(prec); 122 } 123 124 //....oooOO0OOooo........oooOO0OOooo........oo 125 126 void F03SteppingVerbose::TrackingStarted() 127 { 128 CopyState(); 129 G4int prec = G4cout.precision(3); 130 if (verboseLevel > 0) { 131 G4cout << std::setw(5) << "Step#" 132 << " " << std::setw(6) << "X" 133 << " " << std::setw(6) << "Y" 134 << " " << std::setw(6) << "Z" 135 << " " << std::setw(9) << "KineE 136 << " " << std::setw(9) << "dEStep" 137 << " " << std::setw(10) << "StepLen 138 << "Volume" 139 << " " << std::setw(10) << "Proces 140 141 G4cout << std::setw(5) << fTrack->GetCurre 142 << G4BestUnit(fTrack->GetPosition() 143 << G4BestUnit(fTrack->GetPosition() 144 << G4BestUnit(fTrack->GetPosition() 145 << G4BestUnit(fTrack->GetKineticEne 146 << G4BestUnit(fStep->GetTotalEnergy 147 << G4BestUnit(fStep->GetStepLength( 148 << G4BestUnit(fTrack->GetTrackLengt 149 150 if (fTrack->GetNextVolume()) { 151 G4cout << std::setw(10) << fTrack->GetVo 152 } 153 else { 154 G4cout << std::setw(10) << "OutOfWorld"; 155 } 156 G4cout << " initStep" << G4endl; 157 } 158 G4cout.precision(prec); 159 } 160 161 //....oooOO0OOooo........oooOO0OOooo........oo 162