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