Import Geant4 11.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2023-12-08 10:43:34 +01:00
parent dd1f179cda
commit 860a2b92bf
3962 changed files with 139318 additions and 164259 deletions
@@ -68,6 +68,11 @@ class G4DNAPTBElasticModel : public G4VDNAModel
*/
~G4DNAPTBElasticModel() override = default;
// copy constructor and hide assignment operator
G4DNAPTBElasticModel(G4DNAPTBElasticModel&) = delete; // prevent copy-construction
G4DNAPTBElasticModel& operator=(
const G4DNAPTBElasticModel& right) = delete; // prevent assignement
/*!
* \brief Initialise
* Mandatory method for every model class. The material/particle for which the model
@@ -216,10 +221,6 @@ class G4DNAPTBElasticModel : public G4VDNAModel
*/
G4double RandomizeCosTheta(const G4double& k, const std::size_t& materialName);
// copy constructor and hide assignment operator
G4DNAPTBElasticModel(G4DNAPTBElasticModel&) = delete; // prevent copy-construction
G4DNAPTBElasticModel& operator=(
const G4DNAPTBElasticModel& right) = delete; // prevent assignement
};
#endif