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
iguana_ex_cpp_01_action_functions.cc
Go to the documentation of this file.
1
19#include <hipo4/reader.h>
20#include <iguana/algorithms/clas12/EventBuilderFilter/Algorithm.h>
21#include <iguana/algorithms/clas12/MomentumCorrection/Algorithm.h>
22
24int main(int argc, char** argv)
25{
26
27 // parse arguments
28 int argi = 1;
29 char const* inFileName = argc > argi ? argv[argi++] : "data.hipo";
30 int const numEvents = argc > argi ? std::stoi(argv[argi++]) : 1;
31
32 // read input file
33 hipo::reader reader(inFileName,{0});
34
35 // set list of banks to be read
36 hipo::banklist banks = reader.getBanks({"REC::Particle", "RUN::config"});
37
38 // get bank index, for each bank we want to use after Iguana algorithms run
39 auto b_particle = hipo::getBanklistIndex(banks, "REC::Particle");
40 auto b_config = hipo::getBanklistIndex(banks, "RUN::config");
41
42 // set the concurrency model to single-threaded, since this example is single-threaded;
43 // not doing this will use the thread-safe model, `"memoize"`
45
46 // create the algorithms
47 iguana::clas12::EventBuilderFilter algo_eventbuilder_filter;
48 iguana::clas12::MomentumCorrection algo_momentum_correction;
49
50 // set log levels
51 algo_eventbuilder_filter.SetOption("log", "debug");
52 algo_momentum_correction.SetOption("log", "debug");
53
54 // set algorithm options
55 algo_eventbuilder_filter.SetOption<std::vector<int>>("pids", {11, 211, -211});
56
57 // start the algorithms
58 algo_eventbuilder_filter.Start();
59 algo_momentum_correction.Start();
60
61 // run the algorithm sequence on each event
62 int iEvent = 0;
63 while(reader.next(banks) && (numEvents == 0 || iEvent++ < numEvents)) {
64
65 // show the particle bank
66 auto& particleBank = banks.at(b_particle);
67 auto& configBank = banks.at(b_config);
68 particleBank.show();
69
70 // loop over bank rows
71 for(auto const& row : particleBank.getRowList()) {
72
73 // check the PID with EventBuilderFilter
74 auto pid = particleBank.getInt("pid", row);
75 if(algo_eventbuilder_filter.Filter(pid)) {
76
77 int sector = 1; // FIXME: get the sector number. The algorithm `clas12::SectorFinder` can do this, however
78 // it requires reading full `hipo::bank` objects, whereas this example is meant to demonstrate
79 // `iguana` usage operating _only_ on bank row elements
80
81 // if accepted PID, correct its momentum
82 auto [px, py, pz] = algo_momentum_correction.Transform(
83 particleBank.getFloat("px", row),
84 particleBank.getFloat("py", row),
85 particleBank.getFloat("pz", row),
86 sector,
87 pid,
88 configBank.getFloat("torus", 0));
89
90 // then print the result
91 fmt::print("Accepted PID {}:\n", pid);
92 auto printMomentum = [](auto v1, auto v2)
93 { fmt::print(" {:>20} {:>20}\n", v1, v2); };
94 printMomentum("p_old", "p_new");
95 printMomentum("--------", "--------");
96 printMomentum(particleBank.getFloat("px", row), px);
97 printMomentum(particleBank.getFloat("py", row), py);
98 printMomentum(particleBank.getFloat("pz", row), pz);
99 }
100 }
101 }
102
103 // stop the algorithms
104 algo_eventbuilder_filter.Stop();
105 algo_momentum_correction.Stop();
106 return 0;
107}
OPTION_TYPE SetOption(std::string const &key, const OPTION_TYPE val)
Definition Algorithm.h:79
Algorithm: Filter the REC::Particle (or similar) bank by PID from the Event Builder
Definition Algorithm.h:18
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
bool Filter(int const pid) const
Action Function: checks if the PDG pid is a part of the list of user-specified PDGs
Algorithm: Momentum Corrections
Definition Algorithm.h:17
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.
Momentum3 Transform(vector_element_t const px, vector_element_t const py, vector_element_t const pz, int const sec, int const pid, float const torus) const
Action Function: Apply the momentum correction
int main(int argc, char **argv)
main function
GlobalParam< std::string > GlobalConcurrencyModel
The concurrency model, for running certain algorithms in a thread-safe way.