Back to home page

EIC code displayed by LXR

 
 

    


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

0001 //----------------------------------*-C++-*----------------------------------//
0002 // Copyright 2021-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/grid/EnergyLossCalculator.hh
0007 //---------------------------------------------------------------------------//
0008 #pragma once
0009 
0010 #include "XsCalculator.hh"
0011 
0012 namespace celeritas
0013 {
0014 //---------------------------------------------------------------------------//
0015 /*!
0016  * For now, energy loss calculation has the same behavior as cross sections.
0017  *
0018  * The return value is [MeV / len] but isn't wrapped with a Quantity.
0019  */
0020 using EnergyLossCalculator = XsCalculator;
0021 
0022 //---------------------------------------------------------------------------//
0023 }  // namespace celeritas