Line | Branch | Exec | Source |
---|---|---|---|
1 | #pragma once | ||
2 | |||
3 | #include "iguana/algorithms/TypeDefs.h" | ||
4 | #include "iguana/algorithms/Validator.h" | ||
5 | |||
6 | #include <TCanvas.h> | ||
7 | #include <TFile.h> | ||
8 | #include <TH2.h> | ||
9 | |||
10 | namespace iguana::clas12 { | ||
11 | |||
12 | /// @brief `iguana::clas12::MomentumCorrection` validator | ||
13 | class MomentumCorrectionValidator : public Validator | ||
14 | { | ||
15 | |||
16 |
7/16✓ Branch 0 (2→3) taken 1 times.
✗ Branch 1 (2→6) not taken.
✓ Branch 2 (7→8) taken 1 times.
✗ Branch 3 (7→20) not taken.
✓ Branch 4 (8→9) taken 1 times.
✗ Branch 5 (8→11) not taken.
✓ Branch 6 (11→12) taken 1 times.
✗ Branch 7 (11→32) not taken.
✓ Branch 8 (12→13) taken 1 times.
✗ Branch 9 (12→28) not taken.
✓ Branch 10 (13→14) taken 1 times.
✗ Branch 11 (13→24) not taken.
✓ Branch 12 (16→17) taken 1 times.
✗ Branch 13 (16→24) not taken.
✗ Branch 14 (20→21) not taken.
✗ Branch 15 (20→23) not taken.
|
9 | DEFINE_IGUANA_VALIDATOR(MomentumCorrectionValidator, clas12::MomentumCorrectionValidator) |
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_particle; | ||
27 | hipo::banklist::size_type b_sector; | ||
28 | |||
29 | double const m_p_max = 12.0; | ||
30 | double const m_deltaP_max = 1.0; | ||
31 | double const m_deltaP_zoom = 0.2; | ||
32 | |||
33 | std::vector<int> const u_pdg_list = { | ||
34 | particle::PDG::electron, | ||
35 | particle::PDG::pi_plus, | ||
36 | particle::PDG::pi_minus, | ||
37 | particle::PDG::proton}; | ||
38 | |||
39 | TString m_output_file_basename; | ||
40 | TFile* m_output_file; | ||
41 | mutable std::unordered_map<int, std::vector<TH2D*>> u_deltaPvsP; | ||
42 | }; | ||
43 | |||
44 | } | ||
45 |