Import Geant4 8.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 15:07:44 +02:00
parent fe73f43734
commit 75c7fd177d
764 changed files with 45230 additions and 95238 deletions
@@ -24,8 +24,8 @@
// ********************************************************************
//
//
// $Id: G4HESigmaZeroInelastic.hh,v 1.13 2006/06/29 20:29:46 gunter Exp $
// GEANT4 tag $Name: geant4-08-02 $
// $Id: G4HESigmaZeroInelastic.hh,v 1.14 2007/04/11 18:11:30 dennis Exp $
// GEANT4 tag $Name: geant4-08-03 $
//
//
// G4 Gheisha High Energy model class -- header file
@@ -54,27 +54,29 @@
class G4HESigmaZeroInelastic : public G4HEInelastic
{
public: // with description
G4HESigmaZeroInelastic() : G4HEInelastic()
{
theMinEnergy = 20*GeV;
theMaxEnergy = 10*TeV;
MAXPART = 2048;
verboseLevel = 0;
}
G4HESigmaZeroInelastic() : G4HEInelastic("G4HESigmaZeroInelastic")
{
theMinEnergy = 20*GeV;
theMaxEnergy = 10*TeV;
MAXPART = 2048;
verboseLevel = 0;
}
~G4HESigmaZeroInelastic(){ };
~G4HESigmaZeroInelastic(){ };
G4int verboseLevel;
G4int MAXPART;
G4int vecLength;
G4int verboseLevel;
G4int MAXPART;
G4int vecLength;
void SetMaxNumberOfSecondaries(G4int maxnumber)
{ MAXPART = maxnumber; };
void SetVerboseLevel(G4int verbose)
{ verboseLevel = verbose;};
G4HadFinalState * ApplyYourself( const G4HadProjectile &aTrack, G4Nucleus &targetNucleus );
G4int GetNumberOfSecondaries()
{ return vecLength; }
void SetMaxNumberOfSecondaries(G4int maxnumber)
{ MAXPART = maxnumber; };
void SetVerboseLevel(G4int verbose)
{ verboseLevel = verbose;};
G4HadFinalState* ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &targetNucleus);
G4int GetNumberOfSecondaries()
{ return vecLength; }
};
#endif