You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// randomised eta,phi for tracks, to assess part of fluctuations coming from statistically independently emitted particles, removing tracks from 2 leading jets
666
+
double randomConePtWithoutOneLeadJet = 0;
667
+
double randomConePtWithoutTwoLeadJet = 0;
668
+
for (autoconst& track : tracks) {
669
+
if (jetderiveddatautilities::selectTrack(track, trackSelection)) {
670
+
float dPhi = RecoDecay::constrainAngle(randomNumber.Uniform(0.0, 2 * M_PI) - randomConePhi, static_cast<float>(-M_PI)); // ignores actual phi of track
671
+
float dEta = randomNumber.Uniform(trackEtaMin, trackEtaMax) - randomConeEta; // ignores actual eta of track
0 commit comments