Skip to content

Commit

Permalink
Merge pull request #103 from AndrewEdmonds11/fix-nightly
Browse files Browse the repository at this point in the history
Fix nightly: change in CRV accessor
  • Loading branch information
AndrewEdmonds11 authored Sep 18, 2023
2 parents f75a0db + 99d519d commit 9ebbf78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/InfoStructHelper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -422,9 +422,9 @@ namespace mu2e {

void InfoStructHelper::fillCrvHitInfo(art::Ptr<CrvCoincidenceCluster> const& crvCoinc, CrvHitInfoReco& crvHitInfo) {
crvHitInfo._crvSectorType = crvCoinc->GetCrvSectorType();
crvHitInfo._x = crvCoinc->GetAvgCounterPos().x();
crvHitInfo._y = crvCoinc->GetAvgCounterPos().y();
crvHitInfo._z = crvCoinc->GetAvgCounterPos().z();
crvHitInfo._x = crvCoinc->GetAvgHitPos().x();
crvHitInfo._y = crvCoinc->GetAvgHitPos().y();
crvHitInfo._z = crvCoinc->GetAvgHitPos().z();
crvHitInfo._timeWindowStart = crvCoinc->GetStartTime();
crvHitInfo._timeWindowEnd = crvCoinc->GetEndTime();
crvHitInfo._PEs = crvCoinc->GetPEs();
Expand Down

0 comments on commit 9ebbf78

Please sign in to comment.