source: trunk/source/geometry/magneticfield/test/field03/src/F03SteppingVerbose.cc@ 1310

Last change on this file since 1310 was 1199, checked in by garnier, 16 years ago

nvx fichiers dans CVS

File size: 7.4 KB
Line 
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//
27// $Id: F03SteppingVerbose.cc,v 1.3 2006/06/29 18:30:33 gunter Exp $
28// GEANT4 tag $Name: HEAD $
29//
30//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
31//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
32
33#include "F03SteppingVerbose.hh"
34
35#include "G4SteppingManager.hh"
36#include "G4UnitsTable.hh"
37
38//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
39
40F03SteppingVerbose::F03SteppingVerbose()
41{}
42
43//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
44
45F03SteppingVerbose::~F03SteppingVerbose()
46{}
47
48//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
49
50void F03SteppingVerbose::StepInfo()
51{
52 CopyState();
53
54 G4int prec = G4cout.precision(8);
55
56 if( verboseLevel >= 1 ){
57 if( verboseLevel >= 4 ) VerboseTrack();
58 if( verboseLevel >= 3 ){
59 G4cout << G4endl;
60 G4cout << std::setw( 5) << "#Step#" << " "
61 << std::setw(10) << "X" << " "
62 << std::setw(10) << "Y" << " "
63 << std::setw(10) << "Z" << " "
64 << std::setw(10) << "KineE" << " "
65 << std::setw(10) << "dEStep" << " "
66 << std::setw(10) << "StepLeng"
67 << std::setw(10) << "TrakLeng"
68 << std::setw(10) << "NextVolu"
69 << std::setw(10) << "Process"
70 << std::setw(10) << "Dir_x" << " "
71 << std::setw(10) << "Dir_y" << " "
72 << std::setw(10) << "Dir_z" << " "
73 << G4endl;
74 }
75
76 G4cout << std::setw( 5) << fTrack->GetCurrentStepNumber() << " "
77 << std::setw(10) << G4BestUnit(fTrack->GetPosition().x(),"Length")
78 << std::setw(10) << G4BestUnit(fTrack->GetPosition().y(),"Length")
79 << std::setw(10) << G4BestUnit(fTrack->GetPosition().z(),"Length")
80 << std::setw(10) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
81 << std::setw(10) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
82 << std::setw(10) << G4BestUnit(fStep->GetStepLength(),"Length")
83 << std::setw(10) << G4BestUnit(fTrack->GetTrackLength(),"Length");
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
92 if(fStep->GetPostStepPoint()->GetProcessDefinedStep() != NULL){
93 G4cout << " "
94 << std::setw(10) << fStep->GetPostStepPoint()->GetProcessDefinedStep()
95 ->GetProcessName();
96 } else {
97 G4cout << " UserLimit";
98 }
99
100 G4cout << std::setw(12) << G4BestUnit(fTrack->GetMomentumDirection().x(),"Length")
101 << std::setw(12) << G4BestUnit(fTrack->GetMomentumDirection().y(),"Length")
102 << std::setw(12) << G4BestUnit(fTrack->GetMomentumDirection().z(),"Length");
103
104 G4cout << G4endl;
105
106 if( verboseLevel == 2 ){
107 G4int tN2ndariesTot = fN2ndariesAtRestDoIt +
108 fN2ndariesAlongStepDoIt +
109 fN2ndariesPostStepDoIt;
110 if(tN2ndariesTot>0){
111 G4cout << " :----- List of 2ndaries - "
112 << "#SpawnInStep=" << std::setw(3) << tN2ndariesTot
113 << "(Rest=" << std::setw(2) << fN2ndariesAtRestDoIt
114 << ",Along=" << std::setw(2) << fN2ndariesAlongStepDoIt
115 << ",Post=" << std::setw(2) << fN2ndariesPostStepDoIt
116 << "), "
117 << "#SpawnTotal=" << std::setw(3) << (*fSecondary).size()
118 << " ---------------"
119 << G4endl;
120
121 for(G4int lp1=(*fSecondary).size()-tN2ndariesTot;
122 lp1<(*fSecondary).size(); lp1++){
123 G4cout << " : "
124 << std::setw(6)
125 << G4BestUnit((*fSecondary)[lp1]->GetPosition().x(),"Length")
126 << std::setw(6)
127 << G4BestUnit((*fSecondary)[lp1]->GetPosition().y(),"Length")
128 << std::setw(6)
129 << G4BestUnit((*fSecondary)[lp1]->GetPosition().z(),"Length")
130 << std::setw(6)
131 << G4BestUnit((*fSecondary)[lp1]->GetKineticEnergy(),"Energy")
132 << std::setw(10)
133 << (*fSecondary)[lp1]->GetDefinition()->GetParticleName();
134 G4cout << G4endl;
135 }
136
137 G4cout << " :-----------------------------"
138 << "----------------------------------"
139 << "-- EndOf2ndaries Info ---------------"
140 << G4endl;
141 }
142 }
143
144 }
145 G4cout.precision(prec);
146}
147
148//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
149
150void F03SteppingVerbose::TrackingStarted()
151{
152
153 CopyState();
154G4int prec = G4cout.precision(3);
155 if( verboseLevel > 0 ){
156
157 G4cout << std::setw( 5) << "Step#" << " "
158 << std::setw( 6) << "X" << " "
159 << std::setw( 6) << "Y" << " "
160 << std::setw( 6) << "Z" << " "
161 << std::setw( 9) << "KineE" << " "
162 << std::setw( 9) << "dEStep" << " "
163 << std::setw(10) << "StepLeng"
164 << std::setw(10) << "TrakLeng"
165 << std::setw(10) << "Volume" << " "
166 << std::setw(10) << "Process" << G4endl;
167
168 G4cout << std::setw( 5) << fTrack->GetCurrentStepNumber() << " "
169 << std::setw( 6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
170 << std::setw( 6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
171 << std::setw( 6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
172 << std::setw( 6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
173 << std::setw( 6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
174 << std::setw( 6) << G4BestUnit(fStep->GetStepLength(),"Length")
175 << std::setw( 6) << G4BestUnit(fTrack->GetTrackLength(),"Length");
176
177 if(fTrack->GetNextVolume()){
178 G4cout << std::setw(10) << fTrack->GetVolume()->GetName();
179 } else {
180 G4cout << std::setw(10) << "OutOfWorld";
181 }
182 G4cout << " initStep" << G4endl;
183 }
184 G4cout.precision(prec);
185}
186
187//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
Note: See TracBrowser for help on using the repository browser.