Import Geant4 11.0.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2021-06-25 16:12:29 +02:00
parent c968e26a39
commit 6399a014b6
4200 changed files with 207479 additions and 237366 deletions
@@ -50,9 +50,7 @@
class G4VDataSetAlgorithm {
public:
G4VDataSetAlgorithm() { }
explicit G4VDataSetAlgorithm() { }
virtual ~G4VDataSetAlgorithm() { }
virtual G4double Calculate(G4double point, G4int bin,
@@ -67,11 +65,8 @@ public:
virtual G4VDataSetAlgorithm* Clone() const = 0;
private:
// Hide copy constructor and assignment operator
G4VDataSetAlgorithm(const G4VDataSetAlgorithm&);
G4VDataSetAlgorithm& operator=(const G4VDataSetAlgorithm& right);
G4VDataSetAlgorithm(const G4VDataSetAlgorithm&) = delete;
G4VDataSetAlgorithm& operator=(const G4VDataSetAlgorithm& right) = delete;
};