Line | Branch | Exec | Source |
---|---|---|---|
1 | #pragma once | ||
2 | |||
3 | #include "iguana/algorithms/Validator.h" | ||
4 | |||
5 | #include <TCanvas.h> | ||
6 | #include <TFile.h> | ||
7 | #include <TH1.h> | ||
8 | #include <TH2.h> | ||
9 | |||
10 | namespace iguana::physics { | ||
11 | |||
12 | /// @brief `iguana::physics::SingleHadronKinematics` validator | ||
13 | class SingleHadronKinematicsValidator : public Validator | ||
14 | { | ||
15 | |||
16 |
7/16✓ Branch 0 (2→3) taken 1 times.
✗ Branch 1 (2→6) not taken.
✗ Branch 2 (5→7) not taken.
✓ Branch 3 (5→8) taken 1 times.
✓ Branch 4 (9→10) taken 1 times.
✗ Branch 5 (9→33) not taken.
✓ Branch 6 (10→11) taken 1 times.
✗ Branch 7 (10→17) not taken.
✓ Branch 8 (17→18) taken 1 times.
✗ Branch 9 (17→43) not taken.
✓ Branch 10 (18→19) taken 1 times.
✗ Branch 11 (18→41) not taken.
✓ Branch 12 (25→26) taken 1 times.
✗ Branch 13 (25→41) not taken.
✗ Branch 14 (33→34) not taken.
✗ Branch 15 (33→40) not taken.
|
9 | DEFINE_IGUANA_VALIDATOR(SingleHadronKinematicsValidator, physics::SingleHadronKinematicsValidator) |
17 | |||
18 | public: | ||
19 | |||
20 | void Start(hipo::banklist& banks) override; | ||
21 | void Run(hipo::banklist& banks) const override; | ||
22 | void Stop() override; | ||
23 | |||
24 | private: | ||
25 | |||
26 | hipo::banklist::size_type b_result; | ||
27 | |||
28 |
1/2✗ Branch 0 (3→4) not taken.
✓ Branch 1 (3→6) taken 7 times.
|
21 | struct Plot1D { |
29 | TH1D* hist; | ||
30 | std::function<double(hipo::bank const&, int const)> get_val; | ||
31 | }; | ||
32 | std::vector<Plot1D> plot_list; | ||
33 | |||
34 | TString m_output_file_basename; | ||
35 | TFile* m_output_file; | ||
36 | }; | ||
37 | |||
38 | } | ||
39 |