Import Geant4 10.7.0 source tree

This commit is contained in:
Gabriele Cosmo
2020-12-04 12:30:43 +01:00
parent 67ba86d073
commit dab42d2018
3770 changed files with 226369 additions and 286486 deletions
@@ -32,13 +32,13 @@
// File name: G4VWLSTimeGeneratorProfile.hh
//
// Author: Pedro Rodrigues, Andreia Trindade
//
//
//
//
// Creation date: 2006-05-07
//
// Modifications:
// Modifications:
//
// Class Description:
// Class Description:
//
// Abstract class for a WLSTimeGeneratorProfile
@@ -51,28 +51,24 @@
#include "G4ios.hh"
//#include "globals.hh"
#include "G4MaterialPropertiesTable.hh"
//class G4MaterialPropertiesTable;
// class G4MaterialPropertiesTable;
class G4VWLSTimeGeneratorProfile
{
public:
public:
G4VWLSTimeGeneratorProfile(const G4String& name);
virtual ~G4VWLSTimeGeneratorProfile();
virtual G4double GenerateTime(const G4double time_constant) = 0;
virtual G4double GenerateTime(const G4double time_constant) = 0;
virtual G4double GenerateTime(const G4MaterialPropertiesTable*) = 0;
private:
private:
// hide assignment operator
G4VWLSTimeGeneratorProfile & operator=
(const G4VWLSTimeGeneratorProfile &right) = delete;
G4VWLSTimeGeneratorProfile(const G4VWLSTimeGeneratorProfile&) = delete;
G4VWLSTimeGeneratorProfile& operator=
(const G4VWLSTimeGeneratorProfile& right) = delete;
G4VWLSTimeGeneratorProfile(const G4VWLSTimeGeneratorProfile&) = delete;
};
#endif