Back to home page

EIC code displayed by LXR

 
 

    


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

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/optical/Types.hh
0007 //---------------------------------------------------------------------------//
0008 #pragma once
0009 
0010 #include "corecel/OpaqueId.hh"
0011 
0012 namespace celeritas
0013 {
0014 //---------------------------------------------------------------------------//
0015 // TYPE ALIASES
0016 //---------------------------------------------------------------------------//
0017 
0018 //! Opaque index to a scintillation particle id
0019 using ScintillationParticleId = OpaqueId<struct ScintillationParticle_>;
0020 
0021 //! Opaque index to a scintillation spectrum
0022 using ParticleScintSpectrumId = OpaqueId<struct ParScintSpectrumRecord>;
0023 
0024 //---------------------------------------------------------------------------//
0025 /*!
0026  * Physics classes used inside the optical physics loop.
0027  *
0028  * Interface classes that integrate with the main Celeritas stepping loop are
0029  * in the main namespace.
0030  */
0031 namespace optical
0032 {
0033 }
0034 
0035 //---------------------------------------------------------------------------//
0036 }  // namespace celeritas