Import Geant4 11.0.0.beta source tree
This commit is contained in:
@@ -202,7 +202,7 @@ class G4OpBoundaryProcess : public G4VDiscreteProcess
|
||||
G4double Rindex1;
|
||||
G4double Rindex2;
|
||||
|
||||
G4double cost1, cost2, sint1, sint2;
|
||||
G4double sint1;
|
||||
|
||||
G4OpBoundaryProcessStatus theStatus;
|
||||
|
||||
|
||||
@@ -91,7 +91,7 @@ class G4OpRayleigh : public G4VDiscreteProcess
|
||||
|
||||
/// Calculates the mean free paths for a material as a function of
|
||||
/// photon energy
|
||||
G4PhysicsOrderedFreeVector* CalculateRayleighMeanFreePaths(
|
||||
G4PhysicsFreeVector* CalculateRayleighMeanFreePaths(
|
||||
const G4Material* material) const;
|
||||
|
||||
size_t idx_rslength = 0;
|
||||
@@ -111,7 +111,7 @@ inline void G4OpRayleigh::DumpPhysicsTable() const
|
||||
{
|
||||
for(size_t i = 0; i < thePhysicsTable->entries(); ++i)
|
||||
{
|
||||
((G4PhysicsOrderedFreeVector*) (*thePhysicsTable)[i])->DumpValues();
|
||||
((G4PhysicsFreeVector*) (*thePhysicsTable)[i])->DumpValues();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -112,11 +112,11 @@ inline G4PhysicsTable* G4OpWLS::GetIntegralTable() const
|
||||
inline void G4OpWLS::DumpPhysicsTable() const
|
||||
{
|
||||
G4int PhysicsTableSize = theIntegralTable->entries();
|
||||
G4PhysicsOrderedFreeVector* v;
|
||||
G4PhysicsFreeVector* v;
|
||||
|
||||
for(G4int i = 0; i < PhysicsTableSize; ++i)
|
||||
{
|
||||
v = (G4PhysicsOrderedFreeVector*) (*theIntegralTable)[i];
|
||||
v = (G4PhysicsFreeVector*) (*theIntegralTable)[i];
|
||||
v->DumpValues();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -112,11 +112,11 @@ inline G4PhysicsTable* G4OpWLS2::GetIntegralTable() const
|
||||
inline void G4OpWLS2::DumpPhysicsTable() const
|
||||
{
|
||||
G4int PhysicsTableSize = theIntegralTable->entries();
|
||||
G4PhysicsOrderedFreeVector* v;
|
||||
G4PhysicsFreeVector* v;
|
||||
|
||||
for(G4int i = 0; i < PhysicsTableSize; ++i)
|
||||
{
|
||||
v = (G4PhysicsOrderedFreeVector*) (*theIntegralTable)[i];
|
||||
v = (G4PhysicsFreeVector*) (*theIntegralTable)[i];
|
||||
v->DumpValues();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user