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_hit_reader.hpp"
0010 
0011 namespace traccc::io::csv {
0012 
0013 dfe::NamedTupleCsvReader<hit> make_hit_reader(std::string_view filename) {
0014   return {filename.data(),
0015           {"particle_id", "geometry_id", "tx", "ty", "tz", "tt", "tpx", "tpy",
0016            "tpz", "te", "deltapx", "deltapy", "deltapz", "deltae", "index"}};
0017 }
0018 
0019 }  // namespace traccc::io::csv