Import Geant4 10.7.0 source tree

This commit is contained in:
Gabriele Cosmo
2020-12-04 12:30:43 +01:00
parent 67ba86d073
commit dab42d2018
3770 changed files with 226369 additions and 286486 deletions
@@ -32,9 +32,8 @@
#include <iostream>
//_____________________________________________________________________________
G4AnalysisVerbose::G4AnalysisVerbose(const G4String& type, G4int verboseLevel)
: fType(type),
fToBeDoneText(),
G4AnalysisVerbose::G4AnalysisVerbose(G4int verboseLevel)
: fToBeDoneText(),
fDoneText(),
fFailureText()
{
@@ -64,17 +63,17 @@ void G4AnalysisVerbose::Message(const G4String& action,
<< fToBeDoneText
<< action
<< " "
<< fType
<< " "
<< object
<< object;
if ( objectName.size() ) {
G4cout
<< " : "
<< objectName
<< " ";
<< objectName;
}
if ( success )
G4cout << fDoneText;
G4cout << " " << fDoneText;
else
G4cout << fFailureText;
G4cout << " " << fFailureText;
G4cout << G4endl;
}
@@ -89,9 +88,7 @@ void G4AnalysisVerbose::Message(const G4String& action,
<< fToBeDoneText
<< action
<< " "
<< fType
<< " "
<< object
<< object
<< " : "
<< description.str()
<< " ";
@@ -103,4 +100,3 @@ void G4AnalysisVerbose::Message(const G4String& action,
G4cout << G4endl;
}