Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 
0002 //--------------------------------------------------------------------
0003 //
0004 // 15.04.2021 V.Ivanchenko EM physics of CMS mirgrated to Geant4 10.7
0005 //                         based on option4 Geant4 EM and called EMZ
0006 //
0007 //--------------------------------------------------------------------
0008 
0009 #ifndef SimG4Core_PhysicsLists_CMSEmStandardPhysicsEMZ_h
0010 #define SimG4Core_PhysicsLists_CMSEmStandardPhysicsEMZ_h
0011 
0012 #include "G4VPhysicsConstructor.hh"
0013 #include "globals.hh"
0014 
0015 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0016 
0017 class CMSEmStandardPhysicsEMZ : public G4VPhysicsConstructor {
0018 public:
0019   CMSEmStandardPhysicsEMZ(G4int ver, const edm::ParameterSet& p);
0020   ~CMSEmStandardPhysicsEMZ() override = default;
0021 
0022   void ConstructParticle() override;
0023   void ConstructProcess() override;
0024 };
0025 
0026 #endif