Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
@@ -34,35 +34,23 @@
//
//----------------------------------------------------------------------------
//
#ifndef TQGSP_BERT_h
#define TQGSP_BERT_h 1
#include <CLHEP/Units/SystemOfUnits.h>
#ifndef QGSP_BERT_h
#define QGSP_BERT_h 1
#include "globals.hh"
#include "G4VModularPhysicsList.hh"
#include "CompileTimeConstraints.hh"
template<class T>
class TQGSP_BERT: public T
class QGSP_BERT: public G4VModularPhysicsList
{
public:
TQGSP_BERT(G4int ver = 1);
virtual ~TQGSP_BERT();
QGSP_BERT(G4int ver = 1);
virtual ~QGSP_BERT()=default;
QGSP_BERT(const QGSP_BERT &) = delete;
QGSP_BERT & operator=(const QGSP_BERT &)=delete;
public:
// SetCuts()
virtual void SetCuts();
private:
enum {ok = CompileTimeConstraints::IsA<T, G4VModularPhysicsList>::ok };
};
#include "QGSP_BERT.icc"
typedef TQGSP_BERT<G4VModularPhysicsList> QGSP_BERT;
// 2002 by J.P. Wellisch
#endif