Skip to content

Commit db3412c

Browse files
authored
Update draw_Pulls.C
Fix for bug
1 parent 74d2145 commit db3412c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

benchmarks/tracking_performances/draw_Pulls.C

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ void draw_Pulls(TString particle = "pi-", double etamin = -1.0, double etamax =
3232
TH1D *hpull_theta = (TH1D*) fmom_real[i]->Get(Form("hpull_theta_%1.1f_%1.1f_pmax_%1.1f",mom[i],etamin,etamax));
3333

3434
can->cd(1);
35-
hpull_invp->Draw("hist")
35+
hpull_invp->Draw("hist");
3636

3737
can->cd(2);
38-
hpull_d0xy->Draw("hist")
38+
hpull_d0xy->Draw("hist");
3939

4040
can->cd(3);
41-
hpull_d0z->Draw("hist")
41+
hpull_d0z->Draw("hist");
4242

4343
can->cd(4);
44-
hpull_phi->Draw("hist")
44+
hpull_phi->Draw("hist");
4545

4646
can->cd(5);
47-
hpull_theta->Draw("hist")
47+
hpull_theta->Draw("hist");
4848
can->SaveAs(Form("Final_Results/%s/mom/hpulls_%1.1f_eta_%1.1f_pmax_%1.1f.png",particle.Data(),etamin,etamax,mom[i]));
4949
can->SaveAs(Form("Final_Results/%s/mom/hpulls_%1.1f_eta_%1.1f_pmax_%1.1f.root",particle.Data(),etamin,etamax,mom[i]));
5050
}

0 commit comments

Comments
 (0)