Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-17 08:53:37

0001 //------------------------------- -*- C++ -*- -------------------------------//
0002 // Copyright Celeritas contributors: see top-level COPYRIGHT file for details
0003 // SPDX-License-Identifier: (Apache-2.0 OR MIT)
0004 //---------------------------------------------------------------------------//
0005 //! \file celeritas/ext/EmPhysicsList.hh
0006 //---------------------------------------------------------------------------//
0007 #pragma once
0008 
0009 #include <G4VModularPhysicsList.hh>
0010 
0011 #include "GeantPhysicsOptions.hh"
0012 
0013 namespace celeritas
0014 {
0015 //---------------------------------------------------------------------------//
0016 /*!
0017  * Construct highly configurable EM-only physics.
0018  */
0019 class EmPhysicsList : public G4VModularPhysicsList
0020 {
0021   public:
0022     //!@{
0023     //! \name Type aliases
0024     using Options = GeantPhysicsOptions;
0025     //!@}
0026 
0027   public:
0028     // Set up during construction
0029     explicit EmPhysicsList(Options const& options);
0030 };
0031 
0032 //---------------------------------------------------------------------------//
0033 }  // namespace celeritas