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 
10 public:
11  DummyEMPhysics(G4int verb);
12  ~DummyEMPhysics() override = default;
13  void ConstructParticle() override;
14  void ConstructProcess() override;
15 
16 private:
17 
18  G4int verbose;
19 };
20 
21 #endif
22 
void ConstructParticle() override
void ConstructProcess() override
~DummyEMPhysics() override=default
DummyEMPhysics(G4int verb)