Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
main_db.cpp
Go to the documentation of this file.
1#include "DBManager.h"
2#include <iostream>
3
4int main(int argc, char** argv) {
5
6 auto dbm = DBManager();
7
8 const std::string input = argc > 1 ? argv[1] : "Assets/lha/camilia.flha";
9 auto node = dbm.read_from_file(input);
10
11 node->printJSON();
12 return 0;
13}
High-level interface to load and save DBNodetrees from/to various file formats.
Front-end for reading and writing structured data as DBNodetrees.
Definition DBManager.h:46