Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrkrClusLoc.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrkrClusLoc.h
1 #ifndef TRKRCLUSLOC__H
2 #define TRKRCLUSLOC__H
3 // A few simple structures that are used in the evaluation and matching of clusters
4 // Plus a few functions for working with clusters
5 
6 #include <trackbase/TrkrDefs.h>
7 #include <Eigen/Core>
8 
9 struct TrkrClusLoc {
10  int layer{0};
11  Eigen::Vector3d gloc{};
12  float phi{0};
13  float phisize{0};
14  float z{0};
15  float zsize{0};
17 };
18 
19 #endif