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 | #include <TH1.h> | ||
10 | |||
11 | namespace iguana::clas12 { | ||
12 | |||
13 | /// @brief `iguana::clas12::SectorFinder` validator | ||
14 | class SectorFinderValidator : public Validator | ||
15 | { | ||
16 | |||
17 |
7/16✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 1 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 1 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 1 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 1 times.
✗ Branch 11 not taken.
✓ Branch 12 taken 1 times.
✗ Branch 13 not taken.
✗ Branch 14 not taken.
✗ Branch 15 not taken.
|
9 | DEFINE_IGUANA_VALIDATOR(SectorFinderValidator, clas12::SectorFinderValidator) |
18 | |||
19 | public: | ||
20 | |||
21 | void Start(hipo::banklist& banks) override; | ||
22 | void Run(hipo::banklist& banks) const override; | ||
23 | void Stop() override; | ||
24 | |||
25 | private: | ||
26 | |||
27 | hipo::banklist::size_type b_particle; | ||
28 | hipo::banklist::size_type b_sector; | ||
29 | hipo::banklist::size_type b_cal; | ||
30 | |||
31 | std::vector<int> const u_pdg_list = { | ||
32 | particle::PDG::electron, | ||
33 | particle::PDG::photon,}; | ||
34 | |||
35 | TString m_output_file_basename; | ||
36 | TFile* m_output_file; | ||
37 | mutable std::unordered_map<int, std::vector<TH2D*>> u_YvsX; | ||
38 | TH1D* u_IsInFD; | ||
39 | }; | ||
40 | |||
41 | } | ||
42 |