169 lines
6.4 KiB
C++
169 lines
6.4 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: F02SteppingVerbose.cc,v 1.4 2001/10/15 17:20:45 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-04-00 $
|
|
//
|
|
//
|
|
//---------------------------------------------------------------
|
|
//
|
|
// F02SteppingVerbose.cc
|
|
//
|
|
// Description:
|
|
// Implementation of the F02SteppingVerbose class
|
|
// Contact:
|
|
// Questions and comments to this code should be sent to
|
|
// Katsuya Amako (e-mail: Katsuya.Amako@kek.jp)
|
|
// Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
|
|
//
|
|
//---------------------------------------------------------------
|
|
|
|
#include "F02SteppingVerbose.hh"
|
|
#include "G4SteppingManager.hh"
|
|
|
|
#include "G4UnitsTable.hh"
|
|
|
|
////////////////////////////////////////////////
|
|
F02SteppingVerbose::F02SteppingVerbose()
|
|
////////////////////////////////////////////////
|
|
{
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
F02SteppingVerbose::~F02SteppingVerbose()
|
|
//////////////////////////////////////////////////
|
|
{
|
|
}
|
|
|
|
/////////////////////////////////////////
|
|
void F02SteppingVerbose::StepInfo()
|
|
/////////////////////////////////////////
|
|
{
|
|
CopyState();
|
|
|
|
G4int prec = G4cout.precision(3);
|
|
|
|
if( verboseLevel >= 1 ){
|
|
if( verboseLevel >= 4 ) VerboseTrack();
|
|
if( verboseLevel >= 3 ){
|
|
G4cout << G4endl;
|
|
G4cout << G4std::setw( 5) << "#Step#" << " "
|
|
<< G4std::setw( 6) << "X" << " "
|
|
<< G4std::setw( 6) << "Y" << " "
|
|
<< G4std::setw( 6) << "Z" << " "
|
|
<< G4std::setw( 9) << "KineE" << " "
|
|
<< G4std::setw( 9) << "dEStep" << " "
|
|
<< G4std::setw(10) << "StepLeng"
|
|
<< G4std::setw(10) << "TrakLeng"
|
|
<< G4std::setw(10) << "NextVolu"
|
|
<< G4std::setw(10) << "Process" << G4endl;
|
|
}
|
|
|
|
G4cout << G4std::setw( 5) << fTrack->GetCurrentStepNumber() << " "
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
|
|
<< G4std::setw( 6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
|
|
<< G4std::setw( 6) << G4BestUnit(fStep->GetStepLength(),"Length")
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetTrackLength(),"Length");
|
|
|
|
// if( fStepStatus != fWorldBoundary){
|
|
if( fTrack->GetNextVolume() != 0 ) {
|
|
G4cout << G4std::setw(10) << fTrack->GetNextVolume()->GetName();
|
|
} else {
|
|
G4cout << G4std::setw(10) << "OutOfWorld";
|
|
}
|
|
|
|
if(fStep->GetPostStepPoint()->GetProcessDefinedStep() != 0){
|
|
G4cout << G4std::setw(10) << fStep->GetPostStepPoint()->GetProcessDefinedStep()
|
|
->GetProcessName();
|
|
} else {
|
|
G4cout << "User Limit";
|
|
}
|
|
|
|
G4cout << G4endl;
|
|
|
|
if( verboseLevel == 2 ){
|
|
G4int tN2ndariesTot = fN2ndariesAtRestDoIt +
|
|
fN2ndariesAlongStepDoIt +
|
|
fN2ndariesPostStepDoIt;
|
|
if(tN2ndariesTot>0){
|
|
G4cout << " :----- List of 2ndaries - "
|
|
<< "#SpawnInStep=" << G4std::setw(3) << tN2ndariesTot
|
|
<< "(Rest=" << G4std::setw(2) << fN2ndariesAtRestDoIt
|
|
<< ",Along=" << G4std::setw(2) << fN2ndariesAlongStepDoIt
|
|
<< ",Post=" << G4std::setw(2) << fN2ndariesPostStepDoIt
|
|
<< "), "
|
|
<< " ---------------"
|
|
<< G4endl;
|
|
G4cout << " :-----------------------------"
|
|
<< "----------------------------------"
|
|
<< "-- EndOf2ndaries Info ---------------"
|
|
<< G4endl;
|
|
}
|
|
}
|
|
|
|
}
|
|
G4cout.precision(prec);
|
|
}
|
|
|
|
////////////////////////////////////////////////
|
|
void F02SteppingVerbose::TrackingStarted()
|
|
////////////////////////////////////////////////
|
|
{
|
|
|
|
CopyState();
|
|
G4int prec = G4cout.precision(3);
|
|
if( verboseLevel > 0 ){
|
|
|
|
G4cout << G4std::setw( 5) << "Step#" << " "
|
|
<< G4std::setw( 6) << "X" << " "
|
|
<< G4std::setw( 6) << "Y" << " "
|
|
<< G4std::setw( 6) << "Z" << " "
|
|
<< G4std::setw( 9) << "KineE" << " "
|
|
<< G4std::setw( 9) << "dEStep" << " "
|
|
<< G4std::setw(10) << "StepLeng"
|
|
<< G4std::setw(10) << "TrakLeng"
|
|
<< G4std::setw(10) << "NextVolu"
|
|
<< G4std::setw(10) << "Process" << G4endl;
|
|
|
|
G4cout << G4std::setw( 5) << fTrack->GetCurrentStepNumber() << " "
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetPosition().x(),"Length")
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetPosition().y(),"Length")
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetPosition().z(),"Length")
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetKineticEnergy(),"Energy")
|
|
<< G4std::setw( 6) << G4BestUnit(fStep->GetTotalEnergyDeposit(),"Energy")
|
|
<< G4std::setw( 6) << G4BestUnit(fStep->GetStepLength(),"Length")
|
|
<< G4std::setw( 6) << G4BestUnit(fTrack->GetTrackLength(),"Length");
|
|
|
|
if(fTrack->GetNextVolume()){
|
|
G4cout << G4std::setw(10) << fTrack->GetNextVolume()->GetName() << " ";
|
|
} else {
|
|
G4cout << G4std::setw(10) << "OutOfWorld" << " ";
|
|
}
|
|
G4cout << G4std::setw(10) << "initStep" << G4endl;
|
|
}
|
|
G4cout.precision(prec);
|
|
}
|