Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SteppingVerbose.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
28 //
29 //
30 // $Id$
31 //
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34 
35 #include "SteppingVerbose.hh"
36 
37 #include "G4SteppingManager.hh"
38 #include "G4UnitsTable.hh"
39 
40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41 
43 {}
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46 
48 {}
49 
50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51 
53 {
54  CopyState();
55 
56  G4int prec = G4cout.precision(3);
57 
58  if( verboseLevel >= 1 ){
59  if( verboseLevel >= 4 ) VerboseTrack();
60  if( verboseLevel >= 3 ){
61  G4cout << G4endl;
62  G4cout << std::setw( 5) << "#Step#" << " "
63  << std::setw( 6) << "X" << " "
64  << std::setw( 6) << "Y" << " "
65  << std::setw( 6) << "Z" << " "
66  << std::setw( 9) << "KineE" << " "
67  << std::setw( 9) << "dEStep" << " "
68  << std::setw(10) << "StepLeng"
69  << std::setw(10) << "TrakLeng"
70  << std::setw(10) << "Volume" << " "
71  << std::setw(10) << "Process" << G4endl;
72  }
73 
74  G4cout << std::setw( 5) << fTrack->GetCurrentStepNumber() << " "
75  << std::setw(6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
76  << std::setw(6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
77  << std::setw(6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
78  << std::setw(6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
79  << std::setw(6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
80  << std::setw(6) << G4BestUnit(fStep->GetStepLength(),"Length")
81  << std::setw(6) << G4BestUnit(fTrack->GetTrackLength(),"Length")
82  << std::setw(10) << fTrack->GetVolume()->GetName();
83 
84  const G4VProcess* process
86  G4String procName = " UserLimit";
87  if (process) procName = process->GetProcessName();
88  if (fStepStatus == fWorldBoundary) procName = "OutOfWorld";
89  G4cout << " " << std::setw(10) << procName;
90  G4cout << G4endl;
91 
92  if( verboseLevel == 2 ){
93  G4int tN2ndariesTot = fN2ndariesAtRestDoIt +
96  if(tN2ndariesTot>0){
97  G4cout << "\n :----- List of secondaries ----------------"
98  << G4endl;
99  G4cout.precision(4);
100  for(size_t lp1=(*fSecondary).size()-tN2ndariesTot;
101  lp1<(*fSecondary).size(); lp1++){
102  G4cout << " "
103  << std::setw(13)
104  << (*fSecondary)[lp1]->GetDefinition()->GetParticleName()
105  << ": energy ="
106  << std::setw(6)
107  << G4BestUnit((*fSecondary)[lp1]->GetKineticEnergy(),"Energy")
108  << " time ="
109  << std::setw(6)
110  << G4BestUnit((*fSecondary)[lp1]->GetGlobalTime(),"Time");
111  G4cout << G4endl;
112  }
113 
114  G4cout << " :------------------------------------------\n"
115  << G4endl;
116  }
117  }
118 
119  }
120  G4cout.precision(prec);
121 }
122 
123 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
124 
126 {
127 
128  CopyState();
129 G4int prec = G4cout.precision(3);
130  if( verboseLevel > 0 ){
131 
132  G4cout << std::setw( 5) << "Step#" << " "
133  << std::setw( 6) << "X" << " "
134  << std::setw( 6) << "Y" << " "
135  << std::setw( 6) << "Z" << " "
136  << std::setw( 9) << "KineE" << " "
137  << std::setw( 9) << "dEStep" << " "
138  << std::setw(10) << "StepLeng"
139  << std::setw(10) << "TrakLeng"
140  << std::setw(10) << "Volume" << " "
141  << std::setw(10) << "Process" << G4endl;
142 
143  G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " "
144  << std::setw(6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
145  << std::setw(6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
146  << std::setw(6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
147  << std::setw(6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
148  << std::setw(6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
149  << std::setw(6) << G4BestUnit(fStep->GetStepLength(),"Length")
150  << std::setw(6) << G4BestUnit(fTrack->GetTrackLength(),"Length")
151  << std::setw(10) << fTrack->GetVolume()->GetName()
152  << " initStep" << G4endl;
153  }
154  G4cout.precision(prec);
155 }
156 
157 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......