CMS 3D CMS Logo

DummyEMPhysics.h
Go to the documentation of this file.
1 #ifndef SimG4Core_PhysicsLists_DummyEMPhysics_h
2 #define SimG4Core_PhysicsLists_DummyEMPhysics_h
3 
4 // Physics List equivalent to GeantV
5 
6 #include "G4VPhysicsConstructor.hh"
7 
8 class DummyEMPhysics : public G4VPhysicsConstructor {
9 public:
10  DummyEMPhysics(G4int verb);
11  ~DummyEMPhysics() override = default;
12  void ConstructParticle() override;
13  void ConstructProcess() override;
14 
15 private:
16  G4int verbose;
17 };
18 
19 #endif
void ConstructParticle() override
void ConstructProcess() override
~DummyEMPhysics() override=default
DummyEMPhysics(G4int verb)