Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
npierre committed Apr 19, 2019
1 parent f2e7e2f commit 4d0bcb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analySIDIS_split.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,7 @@ void load_rich_mat_dummy(string prich, string prich_err)

Double_t th_cerenkov(double x, double m)
{
return acos(1/(1.45)*sqrt((pow(m,2)/x^2)+1));
return acos((1/1.45)*sqrt((pow(m,2)/pow(x,2))+1))*1000;
}

Double_t th_cerenkov_e(double x)
Expand Down

0 comments on commit 4d0bcb1

Please sign in to comment.