Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-08-30 08:14:28

0001 #ifndef TPCCALIB_STRIPEMATCHINGTYPES_H
0002 #define TPCCALIB_STRIPEMATCHINGTYPES_H
0003 
0004 #include <array>
0005 
0006 // A stripe is stored as std::array<double, 3> everywhere in v3.
0007 // The indices below replace the old StripeCluster object fields.
0008 inline constexpr int stripe_phi = 0;
0009 inline constexpr int stripe_r = 1;
0010 inline constexpr int stripe_content = 2;
0011 
0012 #endif