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
// check if each event has two protons with 6800 GeV of energy
38
-
// exits if the particle is not a proton
37
+
// check if each event has two protons with 6500 GeV of energy
38
+
// exits if the particle is not a proton
39
39
for (inti=0; i<nEvents; i++)
40
40
{
41
41
auto check=tree->GetEntry(i);
@@ -44,7 +44,7 @@ int External()
44
44
{
45
45
auto track=tracks->at(idxMCTrack);
46
46
doubleenergy=track.GetEnergy();
47
-
// Check if track energy is approximately equal to 6800 GeV (a tolerance of 65 keV is considered, straight equality does not work due to floating point precision)
47
+
// Check if track energy is approximately equal to 6500 GeV (a tolerance of 65 keV is considered, straight equality does not work due to floating point precision)
0 commit comments