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