File indexing completed on 2024-04-25 02:14:12
0001 #ifndef RecoTracker_MkFitCore_interface_IdxChi2List_h
0002 #define RecoTracker_MkFitCore_interface_IdxChi2List_h
0003
0004 namespace mkfit {
0005
0006 struct IdxChi2List {
0007 public:
0008 unsigned int module;
0009 int hitIdx;
0010 int trkIdx;
0011 int nhits;
0012 int ntailholes;
0013 int noverlaps;
0014 int nholes;
0015 float pt;
0016 float chi2;
0017 float chi2_hit;
0018 float score;
0019
0020
0021 void reset() {
0022 module = 0u;
0023 hitIdx = trkIdx = 0;
0024 nhits = ntailholes = noverlaps = nholes = 0;
0025 pt = chi2 = chi2_hit = score = 0;
0026 }
0027 };
0028
0029 }
0030
0031 #endif