Skip to content

Commit d903772

Browse files
committed
[Minuit2] Add missing operator to add algebraic vector objects
This is to accomodate the mathematical operations in recent Fumili developments.
1 parent f14a9ba commit d903772

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

math/minuit2/inc/Minuit2/MnMatrix.h

+6
Original file line numberDiff line numberDiff line change
@@ -1109,6 +1109,12 @@ operator+(const ABObj<vec, LAVector> &a, const ABObj<vec, LAVector> &b)
11091109
return {ABSum<ABObj<vec, LAVector>, ABObj<vec, LAVector>>(a, b)};
11101110
}
11111111

1112+
template <class V>
1113+
ABObj<vec, ABSum<ABObj<vec, LAVector>, ABObj<vec, V>>> operator+(const ABObj<vec, LAVector> &a, const ABObj<vec, V> &b)
1114+
{
1115+
return {ABSum<ABObj<vec, LAVector>, ABObj<vec, V>>(a, b)};
1116+
}
1117+
11121118
inline ABObj<vec, ABSum<ABObj<vec, LAVector>, ABObj<vec, LAVector>>>
11131119
operator-(const ABObj<vec, LAVector> &a, const ABObj<vec, LAVector> &b)
11141120
{

0 commit comments

Comments
 (0)