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_00_run_functions.cc
Go to the documentation of this file.
1
15
16#include <hipo4/reader.h>
17#include <iguana/algorithms/AlgorithmSequence.h>
18
22void prettyPrint(std::string header, hipo::bank& bank)
23{
24 fmt::print("{:=^70}\n", " " + header + " ");
25 bank.show();
26}
27
29int main(int argc, char** argv)
30{
31
32 // parse arguments
33 int argi = 1;
34 char const* inFileName = argc > argi ? argv[argi++] : "data.hipo";
35 int const numEvents = argc > argi ? std::stoi(argv[argi++]) : 1;
36
37 // read input file
38 hipo::reader reader(inFileName,{0});
39
40 // set list of banks to be read
41 hipo::banklist banks = reader.getBanks({"RUN::config",
42 "REC::Particle",
43 "REC::Calorimeter",
44 "REC::Track",
45 "REC::Scintillator"});
46
47 // get bank index, for each bank we want to use after Iguana algorithms run
48 auto b_particle = hipo::getBanklistIndex(banks, "REC::Particle");
49
50 // iguana algorithm sequence
52 seq.Add("clas12::EventBuilderFilter"); // filter by Event Builder PID
53 seq.Add("clas12::SectorFinder"); // get the sector for each particle
54 seq.Add("clas12::MomentumCorrection"); // momentum corrections
55 // TODO:
56 // - getRowList for filter
57 // - add a creator algo
58
59 // set log levels
60 seq.SetOption("clas12::EventBuilderFilter", "log", "debug");
61 seq.SetOption("clas12::MomentumCorrection", "log", "debug");
62
63 // set algorithm options (overrides configuration files)
64 seq.SetOption<std::vector<int>>("clas12::EventBuilderFilter", "pids", {11, 211, -211});
65
66 // start the algorithms
67 seq.Start(banks);
68
69 // run the algorithm sequence on each event
70 int iEvent = 0;
71 while(reader.next(banks) && (numEvents == 0 || iEvent++ < numEvents)) {
72 prettyPrint("BEFORE", banks.at(b_particle));
73 seq.Run(banks);
74 prettyPrint("AFTER", banks.at(b_particle));
75 }
76
77 // stop algorithms
78 seq.Stop();
79 return 0;
80}
An algorithm that can run a sequence of algorithms.
void SetOption(std::string const &algo_name, std::string const &key, const OPTION_TYPE val)
void Stop() override
Finalize this algorithm after all events are processed.
void Run(hipo::banklist &banks) const override
Run this algorithm for an event.
void Add(std::string const &class_name, std::string const &instance_name="")
void Start(hipo::banklist &banks) override
Initialize this algorithm before any events are processed, with the intent to process banks
int main(int argc, char **argv)
main function
void prettyPrint(std::string header, hipo::bank &bank)
show a bank along with a header