Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-18 09:16:17

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 geocel/rasterize/ImageIO.json.hh
0006 //---------------------------------------------------------------------------//
0007 #pragma once
0008 
0009 #include <nlohmann/json.hpp>
0010 
0011 namespace celeritas
0012 {
0013 //---------------------------------------------------------------------------//
0014 struct ImageInput;
0015 class ImageParams;
0016 
0017 //---------------------------------------------------------------------------//
0018 void to_json(nlohmann::json& j, ImageInput const&);
0019 void from_json(nlohmann::json const& j, ImageInput&);
0020 
0021 void to_json(nlohmann::json& j, ImageParams const&);
0022 //---------------------------------------------------------------------------//
0023 }  // namespace celeritas