Import Geant4 11.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2022-12-09 14:43:28 +01:00
parent c07cea1fe0
commit 9f34590941
3810 changed files with 200490 additions and 182326 deletions
+3 -3
View File
@@ -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();