Geant4  10.03.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 // $Id: SteppingVerbose.cc 98257 2016-07-04 17:39:46Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "SteppingVerbose.hh"
35 
36 #include "G4SteppingManager.hh"
37 #include "G4ParticleTypes.hh"
38 #include "G4UnitsTable.hh"
39 
40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41 
44 { }
45 
46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
47 
49 {}
50 
51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52 
54 {
55  CopyState();
56 
57  G4int prec = G4cout.precision(3);
58 
59  //Step zero
60  //
61  if( verboseLevel > 0 ){
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  G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " "
74  << std::setw(6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
75  << std::setw(6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
76  << std::setw(6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
77  << std::setw(6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
78  << std::setw(6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
79  << std::setw(6) << G4BestUnit(fStep->GetStepLength(),"Length")
80  << std::setw(6) << G4BestUnit(fTrack->GetTrackLength(),"Length")
81  << std::setw(10) << fTrack->GetVolume()->GetName()
82  << " initStep" << G4endl;
83  }
84  G4cout.precision(prec);
85 }
86 
87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
88 
90 {
91  CopyState();
92 
93  G4int prec = G4cout.precision(3);
94 
95  if( verboseLevel >= 1 ){
96  if( verboseLevel >= 4 ) VerboseTrack();
97  if( verboseLevel >= 3 ){
98  G4cout << G4endl;
99  G4cout << std::setw( 5) << "#Step#" << " "
100  << std::setw( 6) << "X" << " "
101  << std::setw( 6) << "Y" << " "
102  << std::setw( 6) << "Z" << " "
103  << std::setw( 9) << "KineE" << " "
104  << std::setw( 9) << "dEStep" << " "
105  << std::setw(10) << "StepLeng"
106  << std::setw(10) << "TrakLeng"
107  << std::setw(10) << "Volume" << " "
108  << std::setw(10) << "Process" << G4endl;
109  }
110 
111  G4cout << std::setw( 5) << fTrack->GetCurrentStepNumber() << " "
112  << std::setw(6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
113  << std::setw(6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
114  << std::setw(6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
115  << std::setw(6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
116  << std::setw(6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
117  << std::setw(6) << G4BestUnit(fStep->GetStepLength(),"Length")
118  << std::setw(6) << G4BestUnit(fTrack->GetTrackLength(),"Length")
119  << std::setw(10) << fTrack->GetVolume()->GetName();
120 
121  const G4VProcess* process
123  G4String procName = " UserLimit";
124  if (process) procName = process->GetProcessName();
125  if (fStepStatus == fWorldBoundary) procName = "OutOfWorld";
126  G4cout << " " << std::setw(10) << procName;
127  G4cout << G4endl;
128 
129  if (verboseLevel == 2) {
130  const std::vector<const G4Track*>* secondary
132  size_t nbtrk = (*secondary).size();
133  if (nbtrk) {
134  G4cout << "\n :----- List of secondaries ----------------" << G4endl;
135  G4cout.precision(4);
136  for (size_t lp=0; lp<(*secondary).size(); lp++) {
137  G4cout << " "
138  << std::setw(13)
139  << (*secondary)[lp]->GetDefinition()->GetParticleName()
140  << ": energy ="
141  << std::setw(6)
142  << G4BestUnit((*secondary)[lp]->GetKineticEnergy(),"Energy")
143  << " time ="
144  << std::setw(6)
145  << G4BestUnit((*secondary)[lp]->GetGlobalTime(),"Time");
146  G4cout << G4endl;
147  }
148 
149  G4cout << " :------------------------------------------\n" << G4endl;
150  }
151  }
152 
153  }
154  G4cout.precision(prec);
155 }
156 
157 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
virtual void TrackingStarted()
G4double GetStepLength() const
double x() const
const G4ThreeVector & GetPosition() const
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
int G4int
Definition: G4Types.hh:78
double z() const
static const double prec
Definition: RanecuEngine.cc:58
G4double GetKineticEnergy() const
G4GLOB_DLL std::ostream G4cout
G4int GetCurrentStepNumber() const
const G4String & GetName() const
const std::vector< const G4Track * > * GetSecondaryInCurrentStep() const
Definition: G4Step.cc:193
const G4String & GetProcessName() const
Definition: G4VProcess.hh:408
G4double GetTotalEnergyDeposit() const
G4double GetTrackLength() const
const G4VProcess * GetProcessDefinedStep() const
virtual void StepInfo()
G4StepPoint * GetPostStepPoint() const
double y() const
G4VPhysicalVolume * GetVolume() const
#define G4endl
Definition: G4ios.hh:61