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
5namespace iguana::physics {
6
20 {
21
23
24 public:
25
26 void Start(hipo::banklist& banks) override;
27 void Run(hipo::banklist& banks) const override;
28 void Stop() override;
29
36 DepolarizationVars Compute(double const Q2, double const x, double const y, double const targetM) const;
37
38 private:
39
40 // banklist indices
41 hipo::banklist::size_type b_inc_kin;
42 hipo::banklist::size_type b_result;
43
44 // `b_result` bank item indices
45 int i_epsilon;
46 int i_A;
47 int i_B;
48 int i_C;
49 int i_V;
50 int i_W;
51
52 };
53
54}
#define DEFINE_IGUANA_ALGORITHM(ALGO_NAME, ALGO_FULL_NAME)
Algorithm(std::string_view name)
Definition Algorithm.h:45
Algorithm: Calculate depolarization factors
Definition Algorithm.h:20
void Start(hipo::banklist &banks) override
Initialize this algorithm before any events are processed, with the intent to process banks
DepolarizationVars Compute(double const Q2, double const x, double const y, double const targetM) const
Action Function: compute depolarization factors
void Stop() override
Finalize this algorithm after all events are processed.
void Run(hipo::banklist &banks) const override
Run this algorithm for an event.
Physics algorithms.
Definition Algorithm.h:5