Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:27

0001 #ifndef SimG4Core_PhysicsLists_DummyEMPhysics_h
0002 #define SimG4Core_PhysicsLists_DummyEMPhysics_h
0003 
0004 // Physics List equivalent to GeantV
0005 
0006 #include "G4VPhysicsConstructor.hh"
0007 
0008 class DummyEMPhysics : public G4VPhysicsConstructor {
0009 public:
0010   DummyEMPhysics(G4int verb);
0011   ~DummyEMPhysics() override = default;
0012   void ConstructParticle() override;
0013   void ConstructProcess() override;
0014 
0015 private:
0016   G4int verbose;
0017 };
0018 
0019 #endif