#include "fhiclcpp/ParameterSet.h"
#include <cassert>
#include <string>
#include <vector>
Go to the source code of this file.
Definition at line 12 of file seq_of_seq_t.cc.
14 string const doc =
"v1: [[ ],[ 1],[-1, 2,3]]";
16 assert(
p.get_names() == vector<string>({
"v1"}));
17 auto vvi =
p.get<vector<vector<int>>>(
"v1");
18 assert(vvi.size() == 3);