Import Geant4 11.1.0 source tree
This commit is contained in:
@@ -109,7 +109,7 @@ G4NavigationLogger::PreComputeStepLog(const G4VPhysicalVolume* motherPhysical,
|
||||
if ( fVerbose > 1 )
|
||||
{
|
||||
static const G4int precVerf = 16; // Precision
|
||||
G4int oldprec = G4cout.precision(precVerf);
|
||||
G4long oldprec = G4cout.precision(precVerf);
|
||||
G4cout << " - Information on mother / key daughters ..." << G4endl;
|
||||
G4cout << " Type " << std::setw(12) << "Solid-Name" << " "
|
||||
<< std::setw(3*(6+precVerf)) << " local point" << " "
|
||||
@@ -236,7 +236,7 @@ G4NavigationLogger::AlongComputeStepLog(const G4VSolid* sampleSolid,
|
||||
if ( fVerbose > 1 )
|
||||
{
|
||||
static const G4int precVerf= 20; // Precision
|
||||
G4int oldprec = G4cout.precision(precVerf);
|
||||
G4long oldprec = G4cout.precision(precVerf);
|
||||
G4cout << "Daughter "
|
||||
<< std::setw(12) << sampleSolid->GetName() << " "
|
||||
<< std::setw(4+precVerf) << samplePoint << " "
|
||||
@@ -451,8 +451,8 @@ G4NavigationLogger::PostComputeStepLog(const G4VSolid* motherSolid,
|
||||
if( ( motherStep < 0.0 ) || ( motherStep >= kInfinity) )
|
||||
{
|
||||
G4String fType = fId + "::ComputeStep()";
|
||||
G4int oldPrOut = G4cout.precision(16);
|
||||
G4int oldPrErr = G4cerr.precision(16);
|
||||
G4long oldPrOut = G4cout.precision(16);
|
||||
G4long oldPrErr = G4cerr.precision(16);
|
||||
std::ostringstream message;
|
||||
message << "Current point is outside the current solid !" << G4endl
|
||||
<< " Problem in Navigation" << G4endl
|
||||
@@ -468,7 +468,7 @@ G4NavigationLogger::PostComputeStepLog(const G4VSolid* motherSolid,
|
||||
if ( fVerbose > 1 )
|
||||
{
|
||||
static const G4int precVerf = 20; // Precision
|
||||
G4int oldprec = G4cout.precision(precVerf);
|
||||
G4long oldprec = G4cout.precision(precVerf);
|
||||
G4cout << " Mother " << std::setw(12) << motherSolid->GetName() << " "
|
||||
<< std::setw(4+precVerf) << localPoint << " "
|
||||
<< std::setw(4+precVerf) << motherSafety << " "
|
||||
@@ -526,7 +526,7 @@ G4NavigationLogger::PrintDaughterLog (const G4VSolid* sampleSolid,
|
||||
{
|
||||
if ( fVerbose >= 1 )
|
||||
{
|
||||
G4int oldPrec = G4cout.precision(8);
|
||||
G4long oldPrec = G4cout.precision(8);
|
||||
G4cout << "Daughter "
|
||||
<< std::setw(15) << sampleSafety << " ";
|
||||
if (withStep) // (sampleStep != -1.0 )
|
||||
|
||||
Reference in New Issue
Block a user