|
|
|||
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_particle_reader.hpp" 0010 0011 namespace traccc::io::csv { 0012 0013 dfe::NamedTupleCsvReader<particle> make_particle_reader( 0014 std::string_view filename) { 0015 return {filename.data(), 0016 {"particle_id", "particle_type", "process", "vx", "vy", "vz", "vt", 0017 "px", "py", "pz", "m", "q"}}; 0018 } 0019 0020 } // namespace traccc::io::csv
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|