SND@LHC Software
Loading...
Searching...
No Matches
boardMappingParser.h
Go to the documentation of this file.
1// This is the C++ version of shipLHC/rawData/boardMappingParser.py
2#ifndef BOARDMAP_H
3#define BOARDMAP_H 1
4
5#include <iostream>
6#include <string>
7#include <map>
8#include <tuple>
9#include "nlohmann/json.hpp"
10
11using std::map;
12using std::string;
13using json = nlohmann::json;
14
15std::tuple<map<string, map<string, map<string, int>> >,
16 map<string, map<string, map<string, string>> > > getBoardMapping(json j);
17
18#endif
nlohmann::json json
std::tuple< map< string, map< string, map< string, int > > >, map< string, map< string, map< string, string > > > > getBoardMapping(json j)