Import Geant4 11.1.0 source tree
This commit is contained in:
@@ -94,7 +94,7 @@ class G4OpWLS : public G4VDiscreteProcess
|
||||
G4OpWLS(const G4OpWLS& right) = delete;
|
||||
G4OpWLS& operator=(const G4OpWLS& right) = delete;
|
||||
|
||||
size_t idx_wls = 0;
|
||||
std::size_t idx_wls = 0;
|
||||
};
|
||||
|
||||
////////////////////
|
||||
@@ -113,10 +113,10 @@ inline G4PhysicsTable* G4OpWLS::GetIntegralTable() const
|
||||
|
||||
inline void G4OpWLS::DumpPhysicsTable() const
|
||||
{
|
||||
G4int PhysicsTableSize = theIntegralTable->entries();
|
||||
std::size_t PhysicsTableSize = theIntegralTable->entries();
|
||||
G4PhysicsFreeVector* v;
|
||||
|
||||
for(G4int i = 0; i < PhysicsTableSize; ++i)
|
||||
for(std::size_t i = 0; i < PhysicsTableSize; ++i)
|
||||
{
|
||||
v = (G4PhysicsFreeVector*) (*theIntegralTable)[i];
|
||||
v->DumpValues();
|
||||
|
||||
Reference in New Issue
Block a user