Import Geant4 11.2.0 source tree
This commit is contained in:
@@ -44,30 +44,33 @@ class G4PhysicsVector;
|
||||
class G4DNABornExcitationModel2: public G4VEmModel
|
||||
{
|
||||
public:
|
||||
G4DNABornExcitationModel2(const G4ParticleDefinition* p = 0,
|
||||
G4DNABornExcitationModel2(const G4ParticleDefinition* p = nullptr,
|
||||
const G4String& nam = "DNABornExcitationModel");
|
||||
|
||||
virtual ~G4DNABornExcitationModel2();
|
||||
~G4DNABornExcitationModel2() override;
|
||||
|
||||
virtual void Initialise(const G4ParticleDefinition*,
|
||||
const G4DataVector& = *(new G4DataVector()));
|
||||
G4DNABornExcitationModel2 & operator=(const G4DNABornExcitationModel2 &right) = delete;
|
||||
G4DNABornExcitationModel2(const G4DNABornExcitationModel2&) = delete;
|
||||
|
||||
virtual G4double CrossSectionPerVolume(const G4Material* material,
|
||||
void Initialise(const G4ParticleDefinition*,
|
||||
const G4DataVector& = *(new G4DataVector())) override;
|
||||
|
||||
G4double CrossSectionPerVolume(const G4Material* material,
|
||||
const G4ParticleDefinition* p,
|
||||
G4double ekin,
|
||||
G4double emin,
|
||||
G4double emax);
|
||||
G4double emax) override;
|
||||
|
||||
virtual G4double GetPartialCrossSection(const G4Material*,
|
||||
G4double GetPartialCrossSection(const G4Material*,
|
||||
G4int level,
|
||||
const G4ParticleDefinition*,
|
||||
G4double kineticEnergy);
|
||||
G4double kineticEnergy) override;
|
||||
|
||||
virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
|
||||
void SampleSecondaries(std::vector<G4DynamicParticle*>*,
|
||||
const G4MaterialCutsCouple*,
|
||||
const G4DynamicParticle*,
|
||||
G4double tmin,
|
||||
G4double maxEnergy);
|
||||
G4double maxEnergy) override;
|
||||
|
||||
inline void SelectStationary(G4bool input);
|
||||
|
||||
@@ -82,14 +85,14 @@ private:
|
||||
// Water density table
|
||||
const std::vector<G4double>* fpMolWaterDensity;
|
||||
|
||||
G4bool isInitialised;
|
||||
G4bool isInitialised{false};
|
||||
G4int verboseLevel;
|
||||
const G4ParticleDefinition* fParticleDefinition;
|
||||
|
||||
G4double fLowEnergy;
|
||||
G4double fHighEnergy;
|
||||
|
||||
G4PhysicsTable* fTableData;
|
||||
G4PhysicsTable* fTableData{nullptr};
|
||||
G4PhysicsVector* fTotalXS;
|
||||
size_t fLastBinCallForFinalXS;
|
||||
|
||||
@@ -99,8 +102,6 @@ private:
|
||||
G4DNAWaterExcitationStructure waterStructure;
|
||||
|
||||
//
|
||||
G4DNABornExcitationModel2 & operator=(const G4DNABornExcitationModel2 &right);
|
||||
G4DNABornExcitationModel2(const G4DNABornExcitationModel2&);
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
Reference in New Issue
Block a user