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