Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /** TRACCC library, part of the ACTS project (R&D line)
0002  *
0003  * (c) 2022 CERN for the benefit of the ACTS project
0004  *
0005  * Mozilla Public License Version 2.0
0006  */
0007 
0008 // Local include(s).
0009 #include "traccc/io/csv/make_surface_reader.hpp"
0010 
0011 namespace traccc::io::csv {
0012 
0013 dfe::NamedTupleCsvReader<surface> make_surface_reader(
0014     std::string_view filename) {
0015   return {filename.data(),
0016           {"geometry_id", "cx", "cy", "cz", "rot_xu", "rot_xv", "rot_xw",
0017            "rot_zu", "rot_zv", "rot_zw"}};
0018 }
0019 
0020 }  // namespace traccc::io::csv