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
Validator.h
1#pragma once
2
3#include "iguana/algorithms/Validator.h"
4
5#include <TCanvas.h>
6#include <TFile.h>
7#include <TH2.h>
8
9namespace iguana::physics {
10
13 {
14
16
17 public:
18
19 void Start(hipo::banklist& banks) override;
20 void Run(hipo::banklist& banks) const override;
21 void Stop() override;
22
23 private:
24
25 hipo::banklist::size_type b_inc_kin;
26 hipo::banklist::size_type b_depol;
27
28 struct Plot2D {
29 TH2D* hist;
30 std::function<double(hipo::bank const&, int const)> get_val;
31 };
32 std::vector<Plot2D> plots_vs_Q2;
33 std::vector<Plot2D> plots_vs_x;
34 std::vector<Plot2D> plots_vs_y;
35
36 TString m_output_file_basename;
37 TFile* m_output_file;
38 };
39
40}
#define DEFINE_IGUANA_VALIDATOR(VDOR_NAME, VDOR_FULL_NAME)
Validator(std::string_view name="validator")
Definition Validator.h:23
iguana::physics::Depolarization validator
Definition Validator.h:13
void Start(hipo::banklist &banks) override
Initialize this algorithm before any events are processed, with the intent to process banks
void Run(hipo::banklist &banks) const override
Run this algorithm for an event.
void Stop() override
Finalize this algorithm after all events are processed.
Physics algorithms.
Definition Algorithm.h:5