Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /** TRACCC library, part of the ACTS project (R&D line)
0002  *
0003  * (c) 2025 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/bfield/construct_const_bfield.hpp"
0010 
0011 namespace traccc {
0012 
0013 magnetic_field construct_const_bfield(const vector3& v) {
0014   return construct_const_bfield(v[0], v[1], v[2]);
0015 }
0016 
0017 }  // namespace traccc