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"
5#include "iguana/services/ConcurrentParam.h"
6#include "iguana/services/RCDBReader.h"
7
8namespace iguana::physics {
9
27 {
28
30
31 public:
32
33 void Start(hipo::banklist& banks) override;
34 void Run(hipo::banklist& banks) const override;
35 void Stop() override;
36
42 concurrent_key_t PrepareEvent(int const runnum, double const beam_energy = -1) const;
43
50 InclusiveKinematicsVars ComputeFromLepton(
51 vector_element_t const lepton_px,
52 vector_element_t const lepton_py,
53 vector_element_t const lepton_pz,
54 concurrent_key_t const key) const;
55
56 private:
57
66 int FindScatteredLepton(hipo::bank const& particle_bank, concurrent_key_t const key) const;
67
68 void Reload(int const runnum, double const user_beam_energy, concurrent_key_t key) const;
69
70 // banklist indices
71 hipo::banklist::size_type b_particle;
72 hipo::banklist::size_type b_config;
73 hipo::banklist::size_type b_result;
74
75 // `b_result` bank item indices
76 int i_pindex;
77 int i_Q2;
78 int i_x;
79 int i_y;
80 int i_W;
81 int i_nu;
82 int i_qx;
83 int i_qy;
84 int i_qz;
85 int i_qE;
86 int i_beamPz;
87 int i_targetM;
88
89 // config options
90 mutable std::unique_ptr<ConcurrentParam<int>> o_runnum;
91 mutable std::unique_ptr<ConcurrentParam<std::vector<double>>> o_target_PxPyPzM;
92 mutable std::unique_ptr<ConcurrentParam<std::vector<double>>> o_beam_PxPyPzM;
93 double o_beam_mass; // unlikely to change
94 int o_beam_pdg; // unlikely to change
95
96 enum method_reconstruction { scattered_lepton };
97 enum method_lepton_finder { highest_energy_FD_trigger };
98 method_reconstruction o_method_reconstruction;
99 method_lepton_finder o_method_lepton_finder;
100
101 std::unique_ptr<RCDBReader> m_rcdb;
102 };
103
104}
#define DEFINE_IGUANA_ALGORITHM(ALGO_NAME, ALGO_FULL_NAME)
Type definitions for common objects used in algorithms.
Algorithm(std::string_view name)
Definition Algorithm.h:45
Algorithm: Calculate inclusive kinematics quantities
Definition Algorithm.h:27
void Stop() override
Finalize this algorithm after all events are processed.
void Start(hipo::banklist &banks) override
Initialize this algorithm before any events are processed, with the intent to process banks
InclusiveKinematicsVars ComputeFromLepton(vector_element_t const lepton_px, vector_element_t const lepton_py, vector_element_t const lepton_pz, concurrent_key_t const key) const
Action Function: compute kinematics from the scattered lepton.
concurrent_key_t PrepareEvent(int const runnum, double const beam_energy=-1) const
Action Function: prepare the event
void Run(hipo::banklist &banks) const override
Run this algorithm for an event.
Physics algorithms.
Definition Algorithm.h:5
std::size_t concurrent_key_t
concurrent hash key type
double vector_element_t
Vector element type.
Definition TypeDefs.h:12