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 #pragma once
0009 
0010 namespace traccc {
0011 template <typename T1, typename T2>
0012 struct pair {
0013  public:
0014   using first_type = T1;
0015   using second_type = T2;
0016 
0017   T1 first;
0018   T2 second;
0019 };
0020 }  // namespace traccc