File indexing completed on 2024-04-06 12:30:27
0001 #ifndef SimG4Core_PhysicsLists_CMSEmNoDeltaRay_h
0002 #define SimG4Core_PhysicsLists_CMSEmNoDeltaRay_h
0003
0004 #include "G4VPhysicsConstructor.hh"
0005 #include "globals.hh"
0006 #include <string>
0007
0008 class CMSEmNoDeltaRay : public G4VPhysicsConstructor {
0009 public:
0010 CMSEmNoDeltaRay(const G4String& name, G4int ver, const std::string& reg);
0011 ~CMSEmNoDeltaRay() override;
0012
0013 void ConstructParticle() override;
0014 void ConstructProcess() override;
0015
0016 private:
0017 std::string region;
0018 };
0019
0020 #endif