@@ -52,7 +52,7 @@ auto printMatrix(Array2D<T> const& m)
5252}
5353
5454static constexpr float defaultm[3 ][4 ] = {{1.1 , 1.2 , 1.3 , 1.4 }, {2.1 , 2.2 , 2.3 , 2.4 }, {3.1 , 3.2 , 3.3 , 3.4 }};
55- static LabeledArray<float > la{&defaultm[0 ][0 ], 3 , 4 , {" r1 " , " r2 " , " r3 " }, {" c1 " , " c2 " , " c3 " , " c4 " }};
55+ static LabeledArray<float > la{&defaultm[0 ][0 ], 3 , 4 , {" r 1 " , " r 2 " , " r 3 " }, {" c 1 " , " c 2 " , " c 3 " , " c 4 " }};
5656
5757struct ConfigurableObjectDemo {
5858 Configurable<configurableCut> cut{" cut" , {0.5 , 1 , true }, " generic cut" };
@@ -61,7 +61,7 @@ struct ConfigurableObjectDemo {
6161 // note that size is fixed by this declaration - externally supplied vector needs to be the same size!
6262 Configurable<std::vector<int >> array{" array" , {0 , 0 , 0 , 0 , 0 , 0 , 0 }, " generic array" };
6363 Configurable<Array2D<float >> vmatrix{" matrix" , {&defaultm[0 ][0 ], 3 , 4 }, " generic matrix" };
64- Configurable<LabeledArray<float >> vla{" vla" , {defaultm[0 ], 3 , 4 , {" r1 " , " r2 " , " r3 " }, {" c1 " , " c2 " , " c3 " , " c4 " }}, " labeled array" };
64+ Configurable<LabeledArray<float >> vla{" vla" , {defaultm[0 ], 3 , 4 , {" r 1 " , " r 2 " , " r 3 " }, {" c 1 " , " c 2 " , " c 3 " , " c 4 " }}, " labeled array" };
6565
6666 void init (InitContext const &){};
6767 void process (aod::Collision const &, aod::Tracks const & tracks)
0 commit comments