Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
|
#include <G4PhysicsVector.hh>
Public Member Functions | |
G4PhysicsVector (G4bool spline=false) | |
G4PhysicsVector (const G4PhysicsVector &)=default | |
G4PhysicsVector & | operator= (const G4PhysicsVector &)=default |
G4PhysicsVector (const G4PhysicsVector &&)=delete | |
G4PhysicsVector & | operator= (const G4PhysicsVector &&)=delete |
G4bool | operator== (const G4PhysicsVector &right) const =delete |
G4bool | operator!= (const G4PhysicsVector &right) const =delete |
virtual | ~G4PhysicsVector ()=default |
G4double | Value (const G4double energy, std::size_t &lastidx) const |
G4double | Value (const G4double energy) const |
G4double | GetValue (const G4double energy, G4bool &isOutRange) const |
G4double | LogVectorValue (const G4double energy, const G4double theLogEnergy) const |
G4double | LogFreeVectorValue (const G4double energy, const G4double theLogEnergy) const |
G4double | operator[] (const std::size_t index) const |
G4double | operator() (const std::size_t index) const |
void | PutValue (const std::size_t index, const G4double value) |
G4double | Energy (const std::size_t index) const |
G4double | GetLowEdgeEnergy (const std::size_t index) const |
G4double | GetMinEnergy () const |
G4double | GetMaxEnergy () const |
G4double | GetMinValue () const |
G4double | GetMaxValue () const |
std::size_t | GetVectorLength () const |
std::size_t | ComputeLogVectorBin (const G4double logenergy) const |
G4PhysicsVectorType | GetType () const |
G4bool | GetSpline () const |
void | SetVerboseLevel (G4int value) |
G4double | FindLinearEnergy (const G4double rand) const |
std::size_t | FindBin (const G4double energy, std::size_t idx) const |
void | ScaleVector (const G4double factorE, const G4double factorV) |
void | FillSecondDerivatives (const G4SplineType=G4SplineType::Base, const G4double dir1=0.0, const G4double dir2=0.0) |
G4double | GetEnergy (const G4double value) const |
G4bool | Store (std::ofstream &fOut, G4bool ascii=false) const |
G4bool | Retrieve (std::ifstream &fIn, G4bool ascii=false) |
void | DumpValues (G4double unitE=1.0, G4double unitV=1.0) const |
Protected Member Functions | |
virtual void | Initialise () |
void | PrintPutValueError (std::size_t index, G4double value, const G4String &text) |
Protected Attributes | |
G4double | edgeMin = 0.0 |
G4double | edgeMax = 0.0 |
G4double | invdBin = 0.0 |
G4double | logemin = 0.0 |
G4double | iBin1 = 0.0 |
G4double | lmin1 = 0.0 |
G4int | verboseLevel = 0 |
std::size_t | idxmax = 0 |
std::size_t | imax1 = 0 |
std::size_t | numberOfNodes = 0 |
std::size_t | nLogNodes = 0 |
G4PhysicsVectorType | type = T_G4PhysicsFreeVector |
std::vector< G4double > | binVector |
std::vector< G4double > | dataVector |
std::vector< G4double > | secDerivative |
std::vector< std::size_t > | scale |
Friends | |
std::ostream & | operator<< (std::ostream &out, const G4PhysicsVector &pv) |
Definition at line 54 of file G4PhysicsVector.hh.
|
explicit |
Definition at line 39 of file G4PhysicsVector.cc.
Referenced by FindLinearEnergy(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLogVector::G4PhysicsLogVector(), G4PhysicsLogVector::G4PhysicsLogVector(), G4PhysicsVector(), G4PhysicsVector(), operator!=(), operator<<, operator=(), operator=(), and operator==().
|
default |
|
delete |
|
virtualdefault |
|
inline |
Definition at line 165 of file G4PhysicsVector.cc.
Referenced by G4OpWLS2::DumpPhysicsTable(), G4OpWLS::DumpPhysicsTable(), and FillSecondDerivatives().
|
inline |
Referenced by G4MaterialPropertiesTable::AddEntry(), G4MaterialPropertiesTable::AddProperty(), G4LossTableBuilder::BuildInverseRangeTable(), G4Cerenkov::BuildPhysicsTable(), G4OpWLS2::BuildPhysicsTable(), G4OpWLS::BuildPhysicsTable(), G4Scintillation::BuildPhysicsTable(), G4LossTableBuilder::BuildRangeTable(), G4PenelopeBremsstrahlungFS::BuildScaledXSTable(), G4LossTableBuilder::BuildTableForModel(), G4AdjointCSManager::BuildTotalSigmaTables(), G4JAEAElasticScatteringModel::ComputeCrossSectionPerAtom(), G4JAEAPolarizedElasticScatteringModel::ComputeCrossSectionPerAtom(), G4LivermoreComptonModel::ComputeCrossSectionPerAtom(), G4LivermorePolarizedComptonModel::ComputeCrossSectionPerAtom(), G4LivermorePolarizedRayleighModel::ComputeCrossSectionPerAtom(), G4LivermoreRayleighModel::ComputeCrossSectionPerAtom(), G4LowEPComptonModel::ComputeCrossSectionPerAtom(), G4LowEPPolarizedComptonModel::ComputeCrossSectionPerAtom(), G4EmModelManager::DumpModelList(), G4EmModelManager::FillDEDXVector(), G4EmModelManager::FillLambdaVector(), G4EmUtility::FillPeaksStructure(), G4EmUtility::FindCrossSectionMax(), G4WentzelVIModel::Initialise(), G4NeutronCaptureXS::IsoCrossSection(), G4Cerenkov::PostStepDoIt(), G4GDMLWriteMaterials::PropertyVectorWrite(), G4PAIPhotData::SampleAlongStepPhotonTransfer(), G4PAIPhotData::SampleAlongStepPlasmonTransfer(), G4PAIModelData::SampleAlongStepTransfer(), G4PAIPhotData::SampleAlongStepTransfer(), and G4PAIModelData::SamplePostStepTransfer().
void G4PhysicsVector::FillSecondDerivatives | ( | const G4SplineType | stype = G4SplineType::Base, |
const G4double | dir1 = 0.0, | ||
const G4double | dir2 = 0.0 ) |
Definition at line 207 of file G4PhysicsVector.cc.
Referenced by G4EmTableUtil::BuildDEDXTable(), G4EmTableUtil::BuildLambdaTable(), G4EmTableUtil::BuildLambdaTable(), G4LossTableBuilder::BuildRangeTable(), G4LossTableBuilder::BuildTableForModel(), G4WentzelVIModel::Initialise(), G4PenelopeBremsstrahlungAngular::PrepareTables(), and G4ExtDEDXTable::RetrievePhysicsTable().
std::size_t G4PhysicsVector::FindBin | ( | const G4double | energy, |
std::size_t | idx ) const |
Definition at line 175 of file G4PhysicsVector.cc.
Definition at line 433 of file G4PhysicsVector.cc.
Referenced by G4OpWLS2::PostStepDoIt(), G4OpWLS::PostStepDoIt(), and G4Scintillation::PostStepDoIt().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Referenced by G4ExtDEDXTable::StorePhysicsTable().
Referenced by G4XNNElasticLowE::CrossSection(), G4PartialWidthTable::Dump(), and G4XNNElasticLowE::Print().
|
inline |
Referenced by G4MaterialPropertiesTable::AddEntry(), G4MaterialPropertiesTable::AddProperty(), G4LossTableBuilder::BuildDEDXTable(), G4LossTableBuilder::BuildInverseRangeTable(), G4Cerenkov::BuildPhysicsTable(), G4OpWLS2::BuildPhysicsTable(), G4OpWLS::BuildPhysicsTable(), G4Scintillation::BuildPhysicsTable(), G4LossTableBuilder::BuildRangeTable(), G4JAEAElasticScatteringModel::ComputeCrossSectionPerAtom(), G4JAEAPolarizedElasticScatteringModel::ComputeCrossSectionPerAtom(), G4LivermoreComptonModel::ComputeCrossSectionPerAtom(), G4LivermoreNuclearGammaConversionModel::ComputeCrossSectionPerAtom(), G4LivermorePolarizedComptonModel::ComputeCrossSectionPerAtom(), G4LivermorePolarizedGammaConversionModel::ComputeCrossSectionPerAtom(), G4LivermorePolarizedRayleighModel::ComputeCrossSectionPerAtom(), G4LivermoreRayleighModel::ComputeCrossSectionPerAtom(), G4LowEPComptonModel::ComputeCrossSectionPerAtom(), G4LowEPPolarizedComptonModel::ComputeCrossSectionPerAtom(), G4PenelopeRayleighModel::DumpFormFactorTable(), G4PenelopeRayleighModelMI::DumpFormFactorTable(), G4EmModelManager::DumpModelList(), G4EmModelManager::FillDEDXVector(), G4EmModelManager::FillLambdaVector(), G4EmUtility::FillPeaksStructure(), G4EmUtility::FindCrossSectionMax(), G4Cerenkov::GetAverageNumberOfPhotons(), G4PenelopeCrossSection::GetHardCrossSection(), G4PenelopeCrossSection::GetNormalizedShellCrossSection(), G4PenelopeCrossSection::GetShellCrossSection(), G4PenelopeCrossSection::GetSoftStoppingPower(), G4PenelopeCrossSection::GetTotalCrossSection(), and G4GDMLWriteMaterials::PropertyVectorWrite().
|
protectedvirtual |
Reimplemented in G4PhysicsLinearVector, and G4PhysicsLogVector.
Definition at line 44 of file G4PhysicsVector.cc.
Referenced by FillSecondDerivatives(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::InsertValues(), Retrieve(), and ScaleVector().
|
inline |
|
inline |
Referenced by G4IonICRU73Data::GetDEDX(), and G4NeutronCaptureXS::IsoCrossSection().
|
delete |
|
inline |
|
delete |
|
default |
|
delete |
|
inline |
|
protected |
Definition at line 460 of file G4PhysicsVector.cc.
Referenced by G4PhysicsFreeVector::PutValues().
|
inline |
Referenced by G4hRDEnergyLoss::BuildDEDXTable(), G4LossTableBuilder::BuildRangeTable(), G4LossTableBuilder::BuildTableForModel(), G4AdjointCSManager::BuildTotalSigmaTables(), G4EmModelManager::FillDEDXVector(), G4EmModelManager::FillLambdaVector(), G4XNNElasticLowE::G4XNNElasticLowE(), and G4WentzelVIModel::Initialise().
Definition at line 87 of file G4PhysicsVector.cc.
Referenced by G4ExtDEDXTable::RetrievePhysicsTable(), and G4PhysicsTable::RetrievePhysicsTable().
Definition at line 195 of file G4PhysicsVector.cc.
|
inline |
Definition at line 55 of file G4PhysicsVector.cc.
Referenced by G4ExtDEDXTable::StorePhysicsTable().
Referenced by G4BoldyshevTripletModel::ComputeCrossSectionPerAtom(), G4JAEAElasticScatteringModel::ComputeCrossSectionPerAtom(), G4JAEAPolarizedElasticScatteringModel::ComputeCrossSectionPerAtom(), G4LivermoreComptonModel::ComputeCrossSectionPerAtom(), G4LivermoreGammaConversion5DModel::ComputeCrossSectionPerAtom(), G4LivermoreGammaConversionModel::ComputeCrossSectionPerAtom(), G4LivermoreNuclearGammaConversionModel::ComputeCrossSectionPerAtom(), G4LivermorePolarizedComptonModel::ComputeCrossSectionPerAtom(), G4LivermorePolarizedGammaConversionModel::ComputeCrossSectionPerAtom(), G4LivermorePolarizedRayleighModel::ComputeCrossSectionPerAtom(), G4LivermoreRayleighModel::ComputeCrossSectionPerAtom(), G4LowEPComptonModel::ComputeCrossSectionPerAtom(), G4LowEPPolarizedComptonModel::ComputeCrossSectionPerAtom(), G4PenelopeGammaConversionModel::ComputeCrossSectionPerAtom(), G4PenelopePhotoElectricModel::ComputeCrossSectionPerAtom(), G4PenelopeRayleighModel::ComputeCrossSectionPerAtom(), G4PenelopeRayleighModelMI::ComputeCrossSectionPerAtom(), G4Cerenkov::GetAverageNumberOfPhotons(), G4PenelopeIonisationXSHandler::GetDensityCorrection(), G4PenelopeCrossSection::GetHardCrossSection(), G4OpAbsorption::GetMeanFreePath(), G4OpMieHG::GetMeanFreePath(), G4OpWLS2::GetMeanFreePath(), G4OpWLS::GetMeanFreePath(), G4PenelopeCrossSection::GetNormalizedShellCrossSection(), G4Scintillation::GetScintillationYieldByParticleType(), G4PenelopeCrossSection::GetShellCrossSection(), G4PenelopePhotoElectricModel::GetShellCrossSection(), G4PenelopeCrossSection::GetSoftStoppingPower(), G4PenelopeCrossSection::GetTotalCrossSection(), G4Cerenkov::PostStepDoIt(), G4OpBoundaryProcess::PostStepDoIt(), G4PenelopeBremsstrahlungAngular::PrepareTables(), G4XrayReflection::Reflectivity(), G4PAIModelData::SampleAlongStepTransfer(), G4PenelopeBremsstrahlungAngular::SampleDirection(), G4PAIModelData::SamplePostStepTransfer(), G4PenelopeRayleighModel::SampleSecondaries(), and G4PenelopeRayleighModelMI::SampleSecondaries().
|
friend |
Definition at line 414 of file G4PhysicsVector.cc.
|
protected |
Definition at line 226 of file G4PhysicsVector.hh.
Referenced by DumpValues(), G4PhysicsFreeVector::EnableLogBinSearch(), FillSecondDerivatives(), FindBin(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLogVector::G4PhysicsLogVector(), GetEnergy(), G4PhysicsLinearVector::Initialise(), G4PhysicsLogVector::Initialise(), Initialise(), G4PhysicsFreeVector::InsertValues(), operator<<, G4PhysicsFreeVector::PutValues(), Retrieve(), ScaleVector(), and Store().
|
protected |
Definition at line 227 of file G4PhysicsVector.hh.
Referenced by DumpValues(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLogVector::G4PhysicsLogVector(), GetEnergy(), G4PhysicsFreeVector::InsertValues(), operator<<, G4PhysicsFreeVector::PutValues(), Retrieve(), ScaleVector(), and Store().
|
protected |
Definition at line 209 of file G4PhysicsVector.hh.
Referenced by G4PhysicsFreeVector::EnableLogBinSearch(), GetEnergy(), G4PhysicsLinearVector::Initialise(), G4PhysicsLogVector::Initialise(), Initialise(), operator<<, G4PhysicsFreeVector::PutValues(), Retrieve(), and Store().
|
protected |
Definition at line 208 of file G4PhysicsVector.hh.
Referenced by G4PhysicsFreeVector::EnableLogBinSearch(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLogVector::G4PhysicsLogVector(), GetEnergy(), G4PhysicsLinearVector::Initialise(), G4PhysicsLogVector::Initialise(), Initialise(), operator<<, G4PhysicsFreeVector::PutValues(), Retrieve(), and Store().
|
protected |
Definition at line 214 of file G4PhysicsVector.hh.
Referenced by G4PhysicsFreeVector::EnableLogBinSearch().
|
protected |
Definition at line 218 of file G4PhysicsVector.hh.
Referenced by G4PhysicsFreeVector::EnableLogBinSearch(), FillSecondDerivatives(), FindBin(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLogVector::G4PhysicsLogVector(), GetEnergy(), G4PhysicsLinearVector::Initialise(), G4PhysicsLogVector::Initialise(), and Initialise().
|
protected |
Definition at line 219 of file G4PhysicsVector.hh.
Referenced by G4PhysicsFreeVector::EnableLogBinSearch().
|
protected |
Definition at line 211 of file G4PhysicsVector.hh.
Referenced by G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLogVector::G4PhysicsLogVector(), G4PhysicsLinearVector::Initialise(), and G4PhysicsLogVector::Initialise().
|
protected |
Definition at line 215 of file G4PhysicsVector.hh.
Referenced by G4PhysicsFreeVector::EnableLogBinSearch().
|
protected |
Definition at line 212 of file G4PhysicsVector.hh.
Referenced by G4PhysicsLogVector::Initialise().
|
protected |
Definition at line 221 of file G4PhysicsVector.hh.
Referenced by G4PhysicsFreeVector::EnableLogBinSearch().
|
protected |
Definition at line 220 of file G4PhysicsVector.hh.
Referenced by DumpValues(), G4PhysicsFreeVector::EnableLogBinSearch(), FillSecondDerivatives(), FindBin(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsFreeVector::G4PhysicsFreeVector(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLogVector::G4PhysicsLogVector(), GetEnergy(), G4PhysicsLinearVector::Initialise(), G4PhysicsLogVector::Initialise(), Initialise(), G4PhysicsFreeVector::InsertValues(), operator<<, PrintPutValueError(), G4PhysicsFreeVector::PutValues(), Retrieve(), ScaleVector(), and Store().
|
protected |
Definition at line 229 of file G4PhysicsVector.hh.
Referenced by G4PhysicsFreeVector::EnableLogBinSearch().
|
protected |
Definition at line 228 of file G4PhysicsVector.hh.
Referenced by FillSecondDerivatives(), and Retrieve().
|
protected |
Definition at line 223 of file G4PhysicsVector.hh.
Referenced by FillSecondDerivatives(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLinearVector::G4PhysicsLinearVector(), G4PhysicsLogVector::G4PhysicsLogVector(), G4PhysicsLogVector::G4PhysicsLogVector(), and PrintPutValueError().
|
protected |
Definition at line 217 of file G4PhysicsVector.hh.
Referenced by FillSecondDerivatives().