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-2025 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/edm/seed_collection.hpp"
0012 #include "traccc/edm/spacepoint_collection.hpp"
0013 
0014 // System include(s).
0015 #include <string_view>
0016 
0017 namespace traccc::io::obj {
0018 
0019 /// Write a seed collection into a Wavefront OBJ file.
0020 ///
0021 /// @param filename is the name of the output file
0022 /// @param seeds is the seed collection to write
0023 /// @param spacepoints is the spacepoint collection that the seeds reference
0024 ///
0025 void write_seeds(std::string_view filename,
0026                  edm::seed_collection::const_view seeds,
0027                  edm::spacepoint_collection::const_view spacepoints);
0028 
0029 }  // namespace traccc::io::obj