Back to home page

EIC code displayed by LXR

 
 

    


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

0001 //----------------------------------*-C++-*----------------------------------//
0002 // Copyright 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/MuHadEmStandardPhysics.hh
0007 //---------------------------------------------------------------------------//
0008 #pragma once
0009 
0010 #include <G4VPhysicsConstructor.hh>
0011 
0012 namespace celeritas
0013 {
0014 namespace detail
0015 {
0016 //---------------------------------------------------------------------------//
0017 /*!
0018  * Construct EM standard physics not implemented in Celeritas.
0019  *
0020  * \todo Remove muon physics from this constructor once it is fully supported
0021  * in Celeritas.
0022  */
0023 class MuHadEmStandardPhysics : public G4VPhysicsConstructor
0024 {
0025   public:
0026     // Set up during construction
0027     explicit MuHadEmStandardPhysics(int verbosity);
0028 
0029     // Set up minimal EM particle list
0030     void ConstructParticle() override;
0031     // Set up process list
0032     void ConstructProcess() override;
0033 
0034   private:
0035     void construct_particle();
0036     void construct_process();
0037 };
0038 
0039 //---------------------------------------------------------------------------//
0040 }  // namespace detail
0041 }  // namespace celeritas