WireCellToolkit
Wire Cell Simulation, Signal Process and Reconstruction Toolki for Liquid Argon Detectors
wcsonnet.cxx
Go to the documentation of this file.
1 // A wire cell version of the jsonnet cli.
2 
3 #include "WireCellUtil/Persist.h"
4 #include <iostream>
5 
6 using namespace std;
7 using namespace WireCell;
8 
9 int main(int argc, char* argv[])
10 {
11  Persist::Parser parser;
12  auto jdat = parser.load(argv[1]);
13  cout << jdat << endl;
14 
15  return 0;
16 }
Definition: Main.h:22
If we are still before C++14, supply the fodder for doing the "indices trick".
Definition: format.h:297
int main(int argc, char *argv[])
Definition: wcsonnet.cxx:9
Json::Value load(const std::string &filename)
Definition: Persist.cxx:276