123 Int_t nHits =
fHits->GetEntries();
130 for (Int_t i = 0; i < nHits; i++)
140 Int_t iBar = hit->GetBarId();
141 Int_t iSide = -1 == hit->fCoarseTime1LE ? 2 : 1;
151 iFine = hit->fFineTime1LE;
155 iFine = hit->fFineTime2LE;
158 fEngine->Fill(iPlane, iBar, (iSide - 1) * 2 + 1, iFine);
159 counts[iPlane - 1][iBar - 1][(iSide - 1) * 2]++;
163 std::cout << iPlane <<
"a " << iBar <<
" " << iSide << std::endl;
169 iFine = hit->fFineTime1TE;
173 iFine = hit->fFineTime2TE;
175 fEngine->Fill(iPlane, iBar, (iSide - 1) * 2 + 2, iFine);
176 counts[iPlane - 1][iBar - 1][(iSide - 1) * 2 + 1]++;
180 std::cout << iPlane <<
"b " << iBar <<
" " << iSide << std::endl;
189 for (Int_t i = 0; i < nHits; i++)
199 auto iFine = hit->fFineTime1LE;
201 fEngine->Fill(100, iBar, 10, iFine);