Import Geant4 6.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:49:58 +02:00
parent 96686e0c8f
commit 1d812b78b1
4545 changed files with 24433 additions and 175005 deletions
@@ -45,7 +45,7 @@ T* G4FastSimulationVector<T>::remove (const T* a)
if (**it==*a)
{
T* tmp=*it;
erase(it);
std_pvector::erase(it);
return tmp;
}
}
@@ -61,7 +61,7 @@ T* G4FastSimulationVector<T>::removeAt (G4int i)
if(it!=std_pvector::end())
{
T* tmp = std_pvector::operator[](i);
erase(it);
std_pvector::erase(it);
return tmp;
}
else