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 // 27 /// \file field/field04/src/F04SteppingVerbose 28 /// \brief Implementation of the F04SteppingVe 29 // 30 31 #include "F04SteppingVerbose.hh" 32 33 #include "G4UnitsTable.hh" 34 35 //....oooOO0OOooo........oooOO0OOooo........oo 36 37 F04SteppingVerbose::F04SteppingVerbose() 38 { 39 G4VSteppingVerbose::SetSilent(1); 40 } 41 42 //....oooOO0OOooo........oooOO0OOooo........oo 43 44 void F04SteppingVerbose::StepInfo() 45 { 46 CopyState(); 47 48 G4int prec = G4cout.precision(8); 49 50 if (fTrack->GetDefinition()->GetParticleName 51 // if (fTrack->GetDefinition()->GetParticle 52 // if (fTrack->GetDefinition()->GetParticle 53 if (fTrack->GetDefinition()->GetParticleName 54 55 if (verboseLevel >= 1) { 56 if (verboseLevel >= 4) VerboseTrack(); 57 if (verboseLevel >= 3) { 58 G4cout << G4endl; 59 G4cout << std::setw(5) << "#Step#" 60 << " " << std::setw(10) << "X" 61 << " " << std::setw(10) << "Y" 62 << " " << std::setw(10) << "Z" 63 << " " << std::setw(10) << "Ki 64 << " " << std::setw(10) << "dESte 65 << " " << std::setw(10) << "StepL 66 << "NextVolu" << std::setw(10) << 67 << " " << std::setw(10) << "Di 68 << " " << std::setw(10) << "Di 69 << " " << G4endl; 70 } 71 72 G4cout << std::setw(5) << fTrack->GetCurre 73 << G4BestUnit(fTrack->GetPosition() 74 << G4BestUnit(fTrack->GetPosition() 75 << G4BestUnit(fTrack->GetPosition() 76 << G4BestUnit(fTrack->GetKineticEne 77 << G4BestUnit(fStep->GetTotalEnergy 78 << G4BestUnit(fStep->GetStepLength( 79 << G4BestUnit(fTrack->GetTrackLengt 80 81 if (fTrack->GetNextVolume() != nullptr) { 82 G4cout << std::setw(10) << fTrack->GetVo 83 } 84 else { 85 G4cout << std::setw(10) << "OutOfWorld"; 86 } 87 88 if (fStep->GetPostStepPoint()->GetProcessD 89 G4cout << " " << std::setw(10) 90 << fStep->GetPostStepPoint()->Get 91 } 92 else { 93 G4cout << " UserLimit"; 94 } 95 96 // G4cout << std::setw(12) << 97 // G4BestUnit(fTrack->G 98 // << std::setw(12) << 99 // G4BestUnit(fTrack->G 100 // << std::setw(12) << 101 // G4BestUnit(fTrack->G 102 103 G4cout << G4endl; 104 105 if (verboseLevel == 2) { 106 G4int tN2ndariesTot = fN2ndariesAtRestDo 107 if (tN2ndariesTot > 0) { 108 G4cout << " :----- List of 2ndaries 109 << "#SpawnInStep=" << std::setw 110 << fN2ndariesAtRestDoIt << ",Al 111 << ",Post=" << std::setw(2) << 112 << "#SpawnTotal=" << std::setw( 113 << G4endl; 114 115 for (size_t lp1 = (*fSecondary).size() 116 G4cout << " : " << std::setw(6) 117 << G4BestUnit((*fSecondary)[l 118 << G4BestUnit((*fSecondary)[l 119 << G4BestUnit((*fSecondary)[l 120 << G4BestUnit((*fSecondary)[l 121 << (*fSecondary)[lp1]->GetDef 122 G4cout << G4endl; 123 } 124 125 G4cout << " :---------------------- 126 << "--------------------------- 127 << "-- EndOf2ndaries Info ----- 128 } 129 } 130 } 131 G4cout.precision(prec); 132 } 133 134 //....oooOO0OOooo........oooOO0OOooo........oo 135 136 void F04SteppingVerbose::TrackingStarted() 137 { 138 CopyState(); 139 140 G4int prec = G4cout.precision(3); 141 142 if (fTrack->GetDefinition()->GetParticleName 143 // if (fTrack->GetDefinition()->GetParticle 144 // if (fTrack->GetDefinition()->GetParticle 145 if (fTrack->GetDefinition()->GetParticleName 146 147 G4cout << G4endl; 148 G4cout << "********************************* 149 << "********************************* 150 G4cout << "* G4Track Information: " 151 << " Particle = " << fTrack->GetDefi 152 << " Track ID = " << fTrack->GetTra 153 << " Parent ID = " << fTrack->GetPa 154 G4cout << "********************************* 155 << "********************************* 156 G4cout << G4endl; 157 158 if (verboseLevel > 0) { 159 G4cout << std::setw(5) << "Step#" 160 << " " << std::setw(6) << "X" 161 << " " << std::setw(6) << "Y" 162 << " " << std::setw(6) << "Z" 163 << " " << std::setw(9) << "KineE 164 << " " << std::setw(9) << "dEStep" 165 << " " << std::setw(10) << "StepLen 166 << "Volume" 167 << " " << std::setw(10) << "Proces 168 169 G4cout << std::setw(5) << fTrack->GetCurre 170 << G4BestUnit(fTrack->GetPosition() 171 << G4BestUnit(fTrack->GetPosition() 172 << G4BestUnit(fTrack->GetPosition() 173 << G4BestUnit(fTrack->GetKineticEne 174 << G4BestUnit(fStep->GetTotalEnergy 175 << G4BestUnit(fStep->GetStepLength( 176 << G4BestUnit(fTrack->GetTrackLengt 177 178 if (fTrack->GetNextVolume()) { 179 G4cout << std::setw(10) << fTrack->GetVo 180 } 181 else { 182 G4cout << std::setw(10) << "OutOfWorld"; 183 } 184 G4cout << " initStep" << G4endl; 185 } 186 G4cout.precision(prec); 187 } 188