Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ExP01SteppingVerbose.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 //
26 /// \file persistency/P01/src/ExP01SteppingVerbose.cc
27 /// \brief Implementation of the ExP01SteppingVerbose class
28 //
29 //
30 // $Id: ExP01SteppingVerbose.cc 71791 2013-06-24 14:08:28Z gcosmo $
31 //
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34 
35 #include "ExP01SteppingVerbose.hh"
36 
37 #include "G4SteppingManager.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  if( verboseLevel >= 1 ){
60  if( verboseLevel >= 4 ) VerboseTrack();
61  if( verboseLevel >= 3 ){
62  G4cout << G4endl;
63  G4cout << std::setw( 5) << "#Step#" << " "
64  << std::setw( 6) << "X" << " "
65  << std::setw( 6) << "Y" << " "
66  << std::setw( 6) << "Z" << " "
67  << std::setw( 9) << "KineE" << " "
68  << std::setw( 9) << "dEStep" << " "
69  << std::setw(10) << "StepLeng"
70  << std::setw(10) << "TrakLeng"
71  << std::setw(10) << "Volume" << " "
72  << std::setw(10) << "Process" << G4endl;
73  }
74 
75  G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " "
76  << std::setw(6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
77  << std::setw(6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
78  << std::setw(6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
79  << std::setw(6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
80  << std::setw(6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
81  << std::setw(6) << G4BestUnit(fStep->GetStepLength(),"Length")
82  << std::setw(6) << G4BestUnit(fTrack->GetTrackLength(),"Length")
83  << " ";
84 
85  // if( fStepStatus != fWorldBoundary){
86  if( fTrack->GetNextVolume() != 0 ) {
87  G4cout << std::setw(10) << fTrack->GetVolume()->GetName();
88  } else {
89  G4cout << std::setw(10) << "OutOfWorld";
90  }
91 
93  G4cout << " "
94  << std::setw(10) << fStep->GetPostStepPoint()->GetProcessDefinedStep()
95  ->GetProcessName();
96  } else {
97  G4cout << " UserLimit";
98  }
99 
100  G4cout << G4endl;
101 
102  if( verboseLevel == 2 ){
103  G4int tN2ndariesTot = fN2ndariesAtRestDoIt +
106  if(tN2ndariesTot>0){
107  G4cout << " :----- List of 2ndaries - "
108  << "#SpawnInStep=" << std::setw(3) << tN2ndariesTot
109  << "(Rest=" << std::setw(2) << fN2ndariesAtRestDoIt
110  << ",Along=" << std::setw(2) << fN2ndariesAlongStepDoIt
111  << ",Post=" << std::setw(2) << fN2ndariesPostStepDoIt
112  << "), "
113  << "#SpawnTotal=" << std::setw(3) << (*fSecondary).size()
114  << " ---------------"
115  << G4endl;
116 
117  for(size_t lp1=(*fSecondary).size()-tN2ndariesTot;
118  lp1<(*fSecondary).size(); lp1++){
119  G4cout << " : "
120  << std::setw(6)
121  << G4BestUnit((*fSecondary)[lp1]->GetPosition().x(),"Length")
122  << std::setw(6)
123  << G4BestUnit((*fSecondary)[lp1]->GetPosition().y(),"Length")
124  << std::setw(6)
125  << G4BestUnit((*fSecondary)[lp1]->GetPosition().z(),"Length")
126  << std::setw(6)
127  << G4BestUnit((*fSecondary)[lp1]->GetKineticEnergy(),"Energy")
128  << std::setw(10)
129  << (*fSecondary)[lp1]->GetDefinition()->GetParticleName();
130  G4cout << G4endl;
131  }
132 
133  G4cout << " :-----------------------------"
134  << "----------------------------------"
135  << "-- EndOf2ndaries Info ---------------"
136  << G4endl;
137  }
138  }
139 
140  }
141  G4cout.precision(prec);
142 }
143 
144 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
145 
147 {
148 
149  CopyState();
150 G4int prec = G4cout.precision(3);
151  if( verboseLevel > 0 ){
152 
153  G4cout << std::setw( 5) << "Step#" << " "
154  << std::setw( 6) << "X" << " "
155  << std::setw( 6) << "Y" << " "
156  << std::setw( 6) << "Z" << " "
157  << std::setw( 9) << "KineE" << " "
158  << std::setw( 9) << "dEStep" << " "
159  << std::setw(10) << "StepLeng"
160  << std::setw(10) << "TrakLeng"
161  << std::setw(10) << "Volume" << " "
162  << std::setw(10) << "Process" << G4endl;
163 
164  G4cout << std::setw(5) << fTrack->GetCurrentStepNumber() << " "
165  << std::setw(6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
166  << std::setw(6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
167  << std::setw(6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
168  << std::setw(6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
169  << std::setw(6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
170  << std::setw(6) << G4BestUnit(fStep->GetStepLength(),"Length")
171  << std::setw(6) << G4BestUnit(fTrack->GetTrackLength(),"Length")
172  << " ";
173 
174  if(fTrack->GetNextVolume()){
175  G4cout << std::setw(10) << fTrack->GetVolume()->GetName();
176  } else {
177  G4cout << std::setw(10) << "OutOfWorld";
178  }
179  G4cout << " initStep" << G4endl;
180  }
181  G4cout.precision(prec);
182 }
183 
184 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4double GetStepLength() const
double x() const
G4double z
Definition: TRTMaterials.hh:39
const G4ThreeVector & GetPosition() const
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
int G4int
Definition: G4Types.hh:78
double z() const
G4VPhysicalVolume * GetNextVolume() const
G4double GetKineticEnergy() const
G4GLOB_DLL std::ostream G4cout
G4int GetCurrentStepNumber() const
G4TrackVector * fSecondary
const G4String & GetName() const
Definition of the ExP01SteppingVerbose class.
const G4String & GetProcessName() const
Definition: G4VProcess.hh:408
G4double GetTotalEnergyDeposit() const
G4double GetTrackLength() const
const G4VProcess * GetProcessDefinedStep() const
G4StepPoint * GetPostStepPoint() const
double y() const
G4VPhysicalVolume * GetVolume() const
#define G4endl
Definition: G4ios.hh:61