21 lines
300 B
C++
21 lines
300 B
C++
#ifndef PhysicsList_h
|
|
#define PhysicsList_h
|
|
|
|
#include "G4VModularPhysicsList.hh"
|
|
|
|
namespace uLib {
|
|
namespace Geant {
|
|
|
|
class PhysicsList : public G4VModularPhysicsList {
|
|
public:
|
|
PhysicsList();
|
|
virtual ~PhysicsList();
|
|
|
|
virtual void SetCuts();
|
|
};
|
|
|
|
} // namespace Geant
|
|
} // namespace uLib
|
|
|
|
#endif
|