Import Geant4 7.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 12:11:21 +02:00
parent 516dbf1a58
commit d93e1e39a9
5384 changed files with 125662 additions and 82444 deletions
@@ -29,6 +29,7 @@
#include "G4MultipleScattering.hh"
#include "G4hIonisation.hh"
#include "G4ProcessManager.hh"
#include "G4ParticleTable.hh"
#include "G4Proton.hh"
#include "G4AntiProton.hh"
@@ -36,11 +36,11 @@ struct Apply
{
template <class current, class Rest> struct CallBack {
static void Call_Back() {
typedef typename functor::Fun<current> it;
typedef typename functor::template Fun<current> it;
it aF; aF();
typedef typename Rest::first first;
typedef typename Rest::rest second;
Apply::CallBack<first, second>::Call_Back();
Apply<functor>::template CallBack<first, second>::Call_Back();
}
};
template <class Rest> struct CallBack<PNullType, Rest > {