Skip to content

Commit

Permalink
Invert DeltaPhi arguments in CMSSW to harmonize with standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
VourMa committed Aug 28, 2024
1 parent b5a1383 commit 24f587e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoTracker/LSTCore/src/alpaka/LST.dev.cc
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void ALPAKA_ACCELERATOR_NAMESPACE::lst::LST::prepareInput(std::vector<float> con
XYZVector r3PCA(calculateR3FromPCA(p3PCA, see_dxy[iSeed], see_dz[iSeed]));

// The charge could be used directly in the line below
float pixelSegmentDeltaPhiChange = ROOT::Math::VectorUtil::DeltaPhi(r3LH, p3LH);
float pixelSegmentDeltaPhiChange = ROOT::Math::VectorUtil::DeltaPhi(p3LH, r3LH);
float etaErr = see_etaErr[iSeed];
float px = p3LH.x();
float py = p3LH.y();
Expand Down

0 comments on commit 24f587e

Please sign in to comment.