3#include "iguana/algorithms/Algorithm.h"
5#include "iguana/services/ConcurrentParam.h"
6#include "iguana/services/RCDBReader.h"
33 void Start(hipo::banklist& banks)
override;
34 void Run(hipo::banklist& banks)
const override;
66 int FindScatteredLepton(hipo::bank
const& particle_bank,
concurrent_key_t const key)
const;
68 void Reload(
int const runnum,
double const user_beam_energy,
concurrent_key_t key)
const;
71 hipo::banklist::size_type b_particle;
72 hipo::banklist::size_type b_config;
73 hipo::banklist::size_type b_result;
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;
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;
101 std::unique_ptr<RCDBReader> m_rcdb;
#define DEFINE_IGUANA_ALGORITHM(ALGO_NAME, ALGO_FULL_NAME)
Type definitions for common objects used in algorithms.
Algorithm(std::string_view name)
Algorithm: Calculate inclusive kinematics quantities
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.
std::size_t concurrent_key_t
concurrent hash key type
double vector_element_t
Vector element type.