Import Geant4 11.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2024-12-06 11:11:40 +01:00
parent e58e650b32
commit 32390e802b
1984 changed files with 98713 additions and 83996 deletions
@@ -49,11 +49,11 @@ void ProcessesCount::Count(const G4String& procName)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ProcessesCount::Print()
void ProcessesCount::Print(G4PrintOptions /*options*/) const
{
G4int index = 0;
std::map<G4String, G4int>::iterator it;
for (it = fProcCounter.begin(); it != fProcCounter.end(); it++) {
std::map<G4String, G4int>::const_iterator it;
for (it = fProcCounter.cbegin(); it != fProcCounter.cend(); it++) {
G4String procName = it->first;
G4int count = it->second;
G4cout << " " << std::setw(20) << procName << "=" << std::setw(7) << count