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
@@ -747,7 +747,7 @@ std::vector< G4LightIonQMDNucleus* > G4LightIonQMDMeanField::DoClusterJudgment()
clusters_tmp.insert ( std::multimap<G4int,G4int>::value_type ( it->first , it->second ) );
}
}
clusters = clusters_tmp;
clusters = std::move(clusters_tmp);
}
}
}
@@ -88,7 +88,7 @@ G4QMDGroundStateNucleus::G4QMDGroundStateNucleus( G4int z , G4int a )
//edepth = 0.0;
for ( int i = 0 ; i < a ; i++ )
for ( G4int i = 0 ; i < a ; ++i )
{
G4ParticleDefinition* pd;
@@ -109,7 +109,7 @@ G4QMDGroundStateNucleus::G4QMDGroundStateNucleus( G4int z , G4int a )
}
G4double radious = r00 * G4Pow::GetInstance()->A13( double ( GetMassNumber() ) );
G4double radious = r00 * G4Pow::GetInstance()->A13( G4double ( GetMassNumber() ) );
rt00 = radious - r01;
radm = radious - rada * ( gamm - 1.0 ) + radb;
@@ -674,7 +674,7 @@ std::vector< G4QMDNucleus* > G4QMDMeanField::DoClusterJudgment()
clusters_tmp.insert(std::multimap<G4int,G4int>::value_type(it->first, it->second));
}
}
clusters = clusters_tmp;
clusters = std::move(clusters_tmp);
}
}
}