Import Geant4 10.4.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2017-06-30 10:49:55 +02:00
parent 3a5407696b
commit 1a1316fea4
2180 changed files with 237880 additions and 59109 deletions
@@ -23,7 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: G4FTFPProtonBuilder.hh 81935 2014-06-06 15:41:42Z gcosmo $
// $Id: G4FTFPProtonBuilder.hh 103555 2017-04-18 09:04:37Z gcosmo $
//
//---------------------------------------------------------------------------
//
@@ -61,11 +61,13 @@ class G4FTFPProtonBuilder : public G4VProtonBuilder
virtual ~G4FTFPProtonBuilder();
public:
virtual void Build(G4HadronElasticProcess * aP);
virtual void Build(G4ProtonInelasticProcess * aP);
virtual void Build(G4HadronElasticProcess *) final override {};
virtual void Build(G4ProtonInelasticProcess * aP) final override;
void SetMinEnergy(G4double aM) {theMin = aM;}
void SetMaxEnergy(G4double aM) {theMax = aM;}
virtual void SetMinEnergy(G4double aM) final override {theMin = aM;}
virtual void SetMaxEnergy(G4double aM) final override {theMax = aM;}
using G4VProtonBuilder::Build; //Prevent compiler warning
private:
G4TheoFSGenerator * theModel;