Import Geant4 10.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2017-12-08 12:52:30 +01:00
parent 98e455a940
commit fc6af9e721
2166 changed files with 276760 additions and 100873 deletions
+7 -1
View File
@@ -1,4 +1,4 @@
$Id: History 103766 2017-04-26 14:19:53Z gcosmo $
$Id: History 105271 2017-07-18 07:35:12Z gcosmo $
-------------------------------------------------------------------
=========================================================
@@ -16,6 +16,12 @@ committal in the CVS repository !
----------------------------------------------------------
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
- Jul. 17, 2017 Dennis Wright (procman-V10-03-02)
- Add method
virtual void G4VProcess::ProcessDescription(std::ostream& outfile) const;
so that all processes can output a description to html documentation
- Apr. 26, 2017 H.Kurashige (procman-V10-03-01)
- Use G4Log in G4VProcess
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4VProcess.hh 73928 2013-09-17 08:00:50Z gcosmo $
// $Id: G4VProcess.hh 105271 2017-07-18 07:35:12Z gcosmo $
//
//
// ------------------------------------------------------------
@@ -355,6 +355,9 @@ class G4VProcess
virtual void DumpInfo() const;
// dump out process information
virtual void ProcessDescription(std::ostream& outfile) const;
// write out to html file for automatic documentation
public: // with description
void SetVerboseLevel(G4int value);
G4int GetVerboseLevel() const;
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4VProcess.cc 103766 2017-04-26 14:19:53Z gcosmo $
// $Id: G4VProcess.cc 105271 2017-07-18 07:35:12Z gcosmo $
//
//
// --------------------------------------------------------------
@@ -183,7 +183,11 @@ void G4VProcess::DumpInfo() const
G4cout << " : SubType[" << theProcessSubType << "]"<< G4endl;
}
void G4VProcess::ProcessDescription(std::ostream& outFile) const
{
outFile << "This process has not yet been described\n";
}
const G4String& G4VProcess::GetPhysicsTableFileName(const G4ParticleDefinition* particle,
const G4String& directory,
const G4String& tableName,