Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:18:01

0001 #ifndef TRKRCLUSLOC__H
0002 #define TRKRCLUSLOC__H
0003 // A few simple structures that are used in the evaluation and matching of clusters
0004 // Plus a few functions for working with clusters
0005 
0006 #include <trackbase/TrkrDefs.h>
0007 #include <Eigen/Core>
0008 
0009 struct TrkrClusLoc {
0010   int layer{0};
0011   Eigen::Vector3d gloc{};
0012   float phi{0};
0013   float phisize{0};
0014   float z{0};
0015   float zsize{0};
0016   TrkrDefs::cluskey ckey{};
0017 };
0018 
0019 #endif