Loading [MathJax]/extensions/tex2jax.js
Iguana 0.8.0
Implementation Guardian of Analysis Algorithms
All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
Algorithm.h
1#pragma once
2
3#include "iguana/algorithms/Algorithm.h"
4
5#include <Math/Vector3D.h>
6#include <Math/VectorUtil.h>
7
8namespace iguana::clas12 {
9
25 {
26
28
29 public:
30
31 void Start(hipo::banklist& banks) override;
32 void Run(hipo::banklist& banks) const override;
33 void Stop() override;
34
38 bool ForwardDetectorFilter(float const theta) const;
39
40 private:
41
42 struct calo_row_data {
43 double pcal_x = 0;
44 double pcal_y = 0;
45 double pcal_z = 0;
46 double ecin_x = 0;
47 double ecin_y = 0;
48 double ecin_z = 0;
49 double ecout_x = 0;
50 double ecout_y = 0;
51 double ecout_z = 0;
52 double pcal_e = 0;
53 double pcal_m2u = 0;
54 double pcal_m2v = 0;
55 double ecin_e = 0;
56 double ecin_m2u = 0;
57 double ecin_m2v = 0;
58 double ecout_e = 0;
59 double ecout_m2u = 0;
60 double ecout_m2v = 0;
61 };
62
68 bool PidPurityPhotonFilter(float const E, float const Epcal, float const theta) const;
69
77 bool Filter(hipo::bank const &particleBank, hipo::bank const &caloBank, std::map<int, PhotonGBTFilter::calo_row_data> calo_map, int const row, int const runnum) const;
78
79
84 bool ClassifyPhoton(std::vector<float> const &input_data, int const runnum) const;
85
86
90 std::map<int, PhotonGBTFilter::calo_row_data> GetCaloMap(hipo::bank const &bank) const;
91
92
96 ROOT::Math::XYZVector GetParticleCaloVector(PhotonGBTFilter::calo_row_data calo_row) const;
97
101 std::function<double(std::vector<float> const &)> getModelFunction(int runnum) const;
102
104 hipo::banklist::size_type b_particle;
105 hipo::banklist::size_type b_calorimeter;
106 hipo::banklist::size_type b_config; // RUN::config
107
109 double o_threshold = 0.78;
110
112 int o_pass = 1;
113
115 static std::map<std::tuple<int, int, int>, std::function<double(std::vector<float> const &)>> const modelMap;
116 };
117
118}
#define DEFINE_IGUANA_ALGORITHM(ALGO_NAME, ALGO_FULL_NAME)
Algorithm(std::string_view name)
Definition Algorithm.h:45
Algorithm: Filter the REC::Particle photons using pretrained GBT models
Definition Algorithm.h:25
void Start(hipo::banklist &banks) override
Initialize this algorithm before any events are processed, with the intent to process banks
bool ForwardDetectorFilter(float const theta) const
void Stop() override
Finalize this algorithm after all events are processed.
void Run(hipo::banklist &banks) const override
Run this algorithm for an event.
CLAS12 algorithms.
Definition Algorithm.h:5