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