Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,9 @@ struct lambdaspincorrderived {
double deta_pair = std::abs(deta1 - deta2);
double dphi_pair = RecoDecay::constrainAngle(particle1.Phi() - particle2.Phi(), -TMath::Pi(), harmonicDphi);

double deltaR = TMath::Sqrt(deta_pair * deta_pair + dphi_pair * dphi_pair);
// double deltaR = TMath::Sqrt(deta_pair * deta_pair + dphi_pair * dphi_pair);
double deltaRap = std::abs(particle1.Rapidity() - particle2.Rapidity());
double deltaR = TMath::Sqrt(deltaRap * deltaRap + dphi_pair * dphi_pair);

double epsWeight1 = 1.0;
double epsWeight2 = 1.0;
Expand Down
Loading