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 1b1fd86 commit a75f5cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions analySIDIS_split.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1436,23 +1436,23 @@ void save_kin_plots()
fKinematicsRICH->SetStats(0);
fKinematicsRICH->Draw("COLZ");
gPad->SetLogz();
TF1 *fe = new TF1("fe","acos((1/1.0014)*sqrt((pow(0.000511,2)/pow(x,2))+1))*1000",0,60);
TF1 *fe = new TF1("fe","acos((1/1.001447)*sqrt((pow(0.000511,2)/pow(x,2))+1))*1000",0,60);
fe->SetLineColor(10);
fe->SetLineStyle(9);
fe->Draw("SAME");
TF1 *fmu = new TF1("fmu","acos((1/1.0014)*sqrt((pow(0.10566,2)/pow(x,2))+1))*1000",0,60);
TF1 *fmu = new TF1("fmu","acos((1/1.001447)*sqrt((pow(0.10566,2)/pow(x,2))+1))*1000",0,60);
fmu->SetLineColor(10);
fmu->SetLineStyle(9);
fmu->Draw("SAME");
TF1 *fpi = new TF1("fpi","acos((1/1.0014)*sqrt((pow(0.13957,2)/pow(x,2))+1))*1000",0,60);
TF1 *fpi = new TF1("fpi","acos((1/1.001447)*sqrt((pow(0.13957,2)/pow(x,2))+1))*1000",0,60);
fpi->SetLineColor(10);
fpi->SetLineStyle(9);
fpi->Draw("SAME");
TF1 *fk = new TF1("fk","acos((1/1.0014)*sqrt((pow(0.4937,2)/pow(x,2))+1))*1000",0,60);
TF1 *fk = new TF1("fk","acos((1/1.001447)*sqrt((pow(0.4937,2)/pow(x,2))+1))*1000",0,60);
fk->SetLineColor(10);
fk->SetLineStyle(9);
fk->Draw("SAME");
TF1 *fp = new TF1("fp","acos((1/1.0014)*sqrt((pow(0.93827,2)/pow(x,2))+1))*1000",0,60);
TF1 *fp = new TF1("fp","acos((1/1.001447)*sqrt((pow(0.93827,2)/pow(x,2))+1))*1000",0,60);
fp->SetLineColor(10);
fp->SetLineStyle(9);
fp->Draw("SAME");
Expand Down

0 comments on commit a75f5cf

Please sign in to comment.