Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-07-26 08:22:19

0001 /** TRACCC library, part of the ACTS project (R&D line)
0002  *
0003  * (c) 2024 CERN for the benefit of the ACTS project
0004  *
0005  * Mozilla Public License Version 2.0
0006  */
0007 
0008 #pragma once
0009 
0010 // Project include(s).
0011 #include "traccc/io/digitization_config.hpp"
0012 
0013 // System include(s).
0014 #include <string_view>
0015 
0016 namespace traccc::io::json {
0017 
0018 /// Write a digitization configuration to a file
0019 ///
0020 /// @param filename The name of the file to write the data to
0021 /// @param config The digitization configuration to write
0022 ///
0023 void write_digitization_config(std::string_view filename,
0024                                const digitization_config& config);
0025 
0026 }  // namespace traccc::io::json