Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/celeritas/io/ImportAtomicRelaxation.hh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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/io/ImportAtomicRelaxation.hh
0006 //---------------------------------------------------------------------------//
0007 #pragma once
0008 
0009 #include <vector>
0010 
0011 namespace celeritas
0012 {
0013 //---------------------------------------------------------------------------//
0014 /*!
0015  * EADL transition data for atomic relaxation for a single element.
0016  */
0017 struct ImportAtomicTransition
0018 {
0019     int initial_shell{};  //!< Originating shell designator
0020     int auger_shell{};  //!< Auger shell designator
0021     double probability{};  //!< Transition probability
0022     double energy{};  //!< Transition energy [MeV]
0023 };
0024 
0025 struct ImportAtomicSubshell
0026 {
0027     int designator{};  //!< Subshell designator
0028     std::vector<ImportAtomicTransition> fluor;  //!< Radiative transitions
0029     std::vector<ImportAtomicTransition> auger;  //!< Non-radiative transitions
0030 };
0031 
0032 struct ImportAtomicRelaxation
0033 {
0034     std::vector<ImportAtomicSubshell> shells;
0035 };
0036 
0037 //---------------------------------------------------------------------------//
0038 }  // namespace celeritas