Skip to content
Snippets Groups Projects
Commit de9dbcff authored by Emanuele Nocera's avatar Emanuele Nocera
Browse files

Modified cuts for SHIP

parent 5cfbd527
No related branches found
No related tags found
No related merge requests found
......@@ -272,4 +272,10 @@ def pass_kincuts(dataset, idat, theoryid, q2min, w2min):
Q2cut1_f2c = 8
if Q2 <= Q2cut1_f2c:
return False
return True
\ No newline at end of file
##Remove data points where we might have positivity issues
if dataset.GetSetName() in ('SHIPNU', 'SHIPNB', 'SHIPNUnucl', 'SHIPNBnucl'):
if dataset.GetKinematics(idat, 0) > 0.35:
return False
return True
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment