Import Geant4 10.5.0 source tree

This commit is contained in:
Gabriele Cosmo
2018-12-07 15:15:39 +01:00
parent 6aa23be517
commit db49709b53
11370 changed files with 187480 additions and 160142 deletions
+10 -20
View File
@@ -23,7 +23,6 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: Shielding.hh 83413 2014-08-21 15:21:43Z gcosmo $
//
//---------------------------------------------------------------------------
//
@@ -38,34 +37,25 @@
//
//----------------------------------------------------------------------------
//
#ifndef TShielding_h
#define TShielding_h 1
#include <CLHEP/Units/SystemOfUnits.h>
#ifndef Shielding_h
#define Shielding_h 1
#include "globals.hh"
#include "G4VModularPhysicsList.hh"
#include "CompileTimeConstraints.hh"
template<class T>
class TShielding: public T
class Shielding : public G4VModularPhysicsList
{
public:
//TShielding(G4int ver = 1);
//TShielding(G4int ver = 1, G4bool rad=true, G4bool lend=false);
explicit TShielding( G4int verbose = 1 , G4String low_energy_neutron_model = "HP",
G4String HadrPhysVariant = "");
virtual ~TShielding();
public:
// SetCuts()
virtual void SetCuts();
explicit Shielding(G4int verb = 1 , const G4String& n_model = "HP",
const G4String& HadrPhysVariant = "");
virtual ~Shielding();
private:
enum {ok = CompileTimeConstraints::IsA<T, G4VModularPhysicsList>::ok };
// copy constructor and hide assignment operator
Shielding(Shielding &);
Shielding & operator=(const Shielding &right);
};
#include "Shielding.icc"
typedef TShielding<G4VModularPhysicsList> Shielding;
#endif