Import Geant4 10.0.0 source tree
This commit is contained in:
@@ -30,8 +30,6 @@
|
||||
// Sylvie Leray, CEA
|
||||
// Joseph Cugnon, University of Liege
|
||||
//
|
||||
// INCL++ revision: v5.1.8
|
||||
//
|
||||
#define INCLXX_IN_GEANT4_MODE 1
|
||||
|
||||
#include "globals.hh"
|
||||
@@ -51,17 +49,17 @@ namespace G4INCL {
|
||||
class Geant4RandomGenerator : public G4INCL::IRandomGenerator {
|
||||
public:
|
||||
Geant4RandomGenerator() {};
|
||||
Geant4RandomGenerator(const SeedVector &) {};
|
||||
Geant4RandomGenerator(const Random::SeedVector &) {};
|
||||
virtual ~Geant4RandomGenerator() {};
|
||||
|
||||
SeedVector getSeeds() const {
|
||||
WARN("getSeeds not supported.");
|
||||
SeedVector sv;
|
||||
Random::SeedVector getSeeds() {
|
||||
INCL_WARN("getSeeds not supported.");
|
||||
Random::SeedVector sv;
|
||||
return sv;
|
||||
}
|
||||
|
||||
void setSeeds(const SeedVector &) {
|
||||
WARN("setSeeds not supported.");
|
||||
void setSeeds(const Random::SeedVector &) {
|
||||
INCL_WARN("setSeeds not supported.");
|
||||
}
|
||||
|
||||
G4double flat() {
|
||||
|
||||
Reference in New Issue
Block a user