Import Geant4 11.2.0.beta source tree
This commit is contained in:
@@ -38,11 +38,6 @@
|
||||
class G4BosonConstructor
|
||||
{
|
||||
//This class is a utility class for constructBoson
|
||||
|
||||
public:
|
||||
G4BosonConstructor();
|
||||
~G4BosonConstructor();
|
||||
|
||||
public:
|
||||
static void ConstructParticle();
|
||||
};
|
||||
|
||||
@@ -55,7 +55,7 @@ class G4ChargedGeantino : public G4ParticleDefinition
|
||||
G4ChargedGeantino(){}
|
||||
|
||||
public:
|
||||
~G4ChargedGeantino(){}
|
||||
~G4ChargedGeantino() override= default;
|
||||
|
||||
static G4ChargedGeantino* Definition();
|
||||
static G4ChargedGeantino* ChargedGeantinoDefinition();
|
||||
|
||||
@@ -55,7 +55,7 @@ class G4Gamma : public G4ParticleDefinition
|
||||
G4Gamma(){}
|
||||
|
||||
public:
|
||||
~G4Gamma(){}
|
||||
~G4Gamma() override= default;
|
||||
|
||||
static G4Gamma* Definition();
|
||||
static G4Gamma* GammaDefinition();
|
||||
|
||||
@@ -55,7 +55,7 @@ class G4Geantino : public G4ParticleDefinition
|
||||
G4Geantino() {}
|
||||
|
||||
public:
|
||||
~G4Geantino(){}
|
||||
~G4Geantino() override= default;
|
||||
|
||||
static G4Geantino* Definition();
|
||||
static G4Geantino* GeantinoDefinition();
|
||||
|
||||
@@ -55,7 +55,7 @@ class G4OpticalPhoton : public G4ParticleDefinition
|
||||
G4OpticalPhoton () {}
|
||||
|
||||
public:
|
||||
~G4OpticalPhoton (){}
|
||||
~G4OpticalPhoton () override= default;
|
||||
|
||||
static G4OpticalPhoton* Definition();
|
||||
static G4OpticalPhoton* OpticalPhotonDefinition();
|
||||
|
||||
@@ -41,7 +41,7 @@ private:
|
||||
G4PhononLong() {;}
|
||||
|
||||
public:
|
||||
virtual ~G4PhononLong() {;}
|
||||
~G4PhononLong() override {;}
|
||||
|
||||
static G4PhononLong* Definition();
|
||||
static G4PhononLong* PhononDefinition();
|
||||
|
||||
@@ -42,7 +42,7 @@ private:
|
||||
G4PhononTransFast() {;}
|
||||
|
||||
public:
|
||||
virtual ~G4PhononTransFast() {;}
|
||||
~G4PhononTransFast() override {;}
|
||||
|
||||
static G4PhononTransFast* Definition();
|
||||
static G4PhononTransFast* PhononDefinition();
|
||||
|
||||
@@ -41,7 +41,7 @@ private:
|
||||
G4PhononTransSlow() {;}
|
||||
|
||||
public:
|
||||
virtual ~G4PhononTransSlow () {;}
|
||||
~G4PhononTransSlow () override {;}
|
||||
|
||||
static G4PhononTransSlow* Definition();
|
||||
static G4PhononTransSlow* PhononDefinition();
|
||||
|
||||
@@ -55,7 +55,7 @@ class G4UnknownParticle : public G4ParticleDefinition
|
||||
G4UnknownParticle(){}
|
||||
|
||||
public:
|
||||
~G4UnknownParticle(){}
|
||||
~G4UnknownParticle() override= default;
|
||||
|
||||
static G4UnknownParticle* Definition();
|
||||
static G4UnknownParticle* UnknownParticleDefinition();
|
||||
|
||||
Reference in New Issue
Block a user