Skip to content

Commit

Permalink
Add finer binning in Phistar to ZFinderPlotter
Browse files Browse the repository at this point in the history
We now use bins of size 0.001 (down from 0.01) and extend the total
range out to 4 from 1. ATLAS uses these finer bins, and goes out to the
mid 3s.

The range in the ZDefinitionWorkspace is changed to a maximum of 10 to
insure that we have no problems with clipping.
  • Loading branch information
Alexander Gude committed May 8, 2014
1 parent cfaf6d2 commit d5ebc4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ZFinder/Event/src/ZDefinitionWorkspace.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace zf {
z_eta_ = new RooRealVar("z_eta", "Z_{#eta}", -6, 6);
z_y_ = new RooRealVar("z_y", "Z_{Y}", -6, 6);
z_pt_ = new RooRealVar("z_pt", "Z_{p_{T}}", 0, 1000, "GeV");
phistar_ = new RooRealVar("phistar", "#phi*", -0.1, 2);
phistar_ = new RooRealVar("phistar", "#phi*", -0.1, 10);
// Electrons
e0_pt_ = new RooRealVar("e0_pt", "p_{T}^{e_{0}}", 0, 1000, "GeV");
e0_eta_ = new RooRealVar("e0_eta", "#eta_{e_{0}}", -6, 6);
Expand Down
2 changes: 1 addition & 1 deletion ZFinder/Event/src/ZFinderPlotter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ namespace zf {

// phistar
const std::string phistar_name = "#phi*";
phistar_ = tdir.make<TH1D>(phistar_name.c_str(), phistar_name.c_str(), 100, 0., 1.);
phistar_ = tdir.make<TH1D>(phistar_name.c_str(), phistar_name.c_str(), 4000, 0., 4.);
phistar_->GetXaxis()->SetTitle("#phi*");
phistar_->GetYaxis()->SetTitle("Counts");

Expand Down

0 comments on commit d5ebc4f

Please sign in to comment.