Import Geant4 1.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:28:20 +02:00
parent aaa409b6ee
commit ca1c8cb059
2995 changed files with 106830 additions and 299600 deletions
@@ -0,0 +1,31 @@
#ifndef G4IsoResult_h
#define G4IsoResult_h
#include "globals.hh"
#include "G4Nucleus.hh"
class G4IsoResult
{
public:
G4IsoResult(const G4String & anIso, const G4Nucleus & aMother)
{
theIsoName = anIso;
theMotherNucleus = aMother;
}
G4String GetIsotope() { return theIsoName; }
G4Nucleus GetMotherNucleus() { return theMotherNucleus; }
private:
G4IsoResult() {}
G4IsoResult & operator = (const G4IsoResult & aResult) { return *this;}
private:
G4String theIsoName;
G4Nucleus theMotherNucleus;
};
#endif