Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:11:38

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