#ifndef minimal_repr_hh #define minimal_repr_hh #include #include #include #include "TObject.h" #include "TString.h" struct A : public TObject { std::map map; A() = default; A(std::map &&a_map) : map(a_map) {} ClassDef(A, 1); }; struct B : public TObject { std::vector> big_vec; B() = default; B(std::vector> &&a_big_vec) : big_vec(a_big_vec) {} ClassDef(B, 1); }; #endif