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
@@ -56,23 +56,19 @@ class G4Element;
class G4CrossSectionHandler : public G4VCrossSectionHandler {
public:
G4CrossSectionHandler();
explicit G4CrossSectionHandler();
~G4CrossSectionHandler();
protected:
virtual std::vector<G4VEMDataSet*>* BuildCrossSectionsForMaterials(const G4DataVector& energyVector,
const G4DataVector* energyCuts = 0);
std::vector<G4VEMDataSet*>* BuildCrossSectionsForMaterials(const G4DataVector& energyVector,
const G4DataVector* energyCuts = 0) override;
private:
// Hide copy constructor and assignment operator
G4CrossSectionHandler(const G4CrossSectionHandler&);
G4CrossSectionHandler & operator=(const G4CrossSectionHandler &right);
G4CrossSectionHandler(const G4CrossSectionHandler&) = delete;
G4CrossSectionHandler & operator=(const G4CrossSectionHandler &right) = delete;
};
#endif