Import Geant4 11.3.0 source tree
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user