Skip to content

Commit

Permalink
feat: validator
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Oct 28, 2024
1 parent 6c3f33e commit 88713dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/iguana/algorithms/physics/DihadronKinematics/Validator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ namespace iguana::physics {
new TH1D("z_dist", "z", n_bins, 0, 1),
[](auto const& b, auto const r) { return b.getDouble("z", r); }
},
{
new TH1D("PhPerp_dist", "P_{h}^{{}^{#perp}}", n_bins, 0, 2),
[](auto const& b, auto const r) { return b.getDouble("PhPerp", r); }
},
{
new TH1D("MX_dist", "missing mass M_{X} [GeV];", n_bins, 0, 4),
[](auto const& b, auto const r) { return b.getDouble("MX", r); }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ namespace iguana::physics {
new TH1D("z_dist", "z", n_bins, 0, 1),
[](auto const& b, auto const r) { return b.getDouble("z", r); }
},
{
new TH1D("PhPerp_dist", "P_{h}^{{}^{#perp}}", n_bins, 0, 2),
[](auto const& b, auto const r) { return b.getDouble("PhPerp", r); }
},
{
new TH1D("MX_dist", "missing mass M_{X} [GeV];", n_bins, 0, 4),
[](auto const& b, auto const r) { return b.getDouble("MX", r); }
Expand Down

0 comments on commit 88713dc

Please sign in to comment.