Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 10:31:20

0001 //----------------------------------*-C++-*----------------------------------//
0002 // Copyright 2020-2024 UT-Battelle, LLC, and other Celeritas developers.
0003 // See the top-level COPYRIGHT file for details.
0004 // SPDX-License-Identifier: (Apache-2.0 OR MIT)
0005 //---------------------------------------------------------------------------//
0006 //! \file celeritas/ext/detail/CelerEmPhysicsList.hh
0007 //! \todo Move out of detail since this is used by celer-g4
0008 //---------------------------------------------------------------------------//
0009 #pragma once
0010 
0011 #include <G4VModularPhysicsList.hh>
0012 
0013 #include "../GeantPhysicsOptions.hh"
0014 
0015 namespace celeritas
0016 {
0017 namespace detail
0018 {
0019 //---------------------------------------------------------------------------//
0020 /*!
0021  * Construct a user-defined physics list of particles and physics processes.
0022  */
0023 class CelerEmPhysicsList : public G4VModularPhysicsList
0024 {
0025   public:
0026     //!@{
0027     //! \name Type aliases
0028     using Options = GeantPhysicsOptions;
0029     //!@}
0030 
0031   public:
0032     // Set up during construction
0033     explicit CelerEmPhysicsList(Options const& options);
0034 };
0035 
0036 //---------------------------------------------------------------------------//
0037 }  // namespace detail
0038 }  // namespace celeritas