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#include <Math/Vector3D.h>
5#include <Math/Vector4D.h>
6
7namespace iguana::physics {
8
31 {
32
34
35 public:
36
37 void Start(hipo::banklist& banks) override;
38 void Run(hipo::banklist& banks) const override;
39 void Stop() override;
40
41 private:
42
43 // banklist indices
44 hipo::banklist::size_type b_particle;
45 hipo::banklist::size_type b_inc_kin;
46 hipo::banklist::size_type b_result;
47
48 // `b_result` bank item indices
49 int i_pindex;
50 int i_pdg;
51 int i_z;
52 int i_PhPerp;
53 int i_MX2;
54 int i_xF;
55 int i_yB;
56 int i_phiH;
57 int i_xi;
58
59 // config options
60 std::set<int> o_hadron_pdgs;
61
62 };
63
64}
#define DEFINE_IGUANA_ALGORITHM(ALGO_NAME, ALGO_FULL_NAME)
Algorithm(std::string_view name)
Definition Algorithm.h:45
Algorithm: Calculate semi-inclusive hadron kinematic quantities
Definition Algorithm.h:31
void Run(hipo::banklist &banks) const override
Run this algorithm for an event.
void Start(hipo::banklist &banks) override
Initialize this algorithm before any events are processed, with the intent to process banks
void Stop() override
Finalize this algorithm after all events are processed.
Physics algorithms.
Definition Algorithm.h:5