diff --git a/math/matrix/inc/TVectorT.h b/math/matrix/inc/TVectorT.h index d5573b21b1e44ce9f4b44c7f15117543697e9dd1..7f3d482725343a9a13b818884ff6e46a9f94f130 100644 --- a/math/matrix/inc/TVectorT.h +++ b/math/matrix/inc/TVectorT.h @@ -72,7 +72,7 @@ public: *this = another; } #ifndef __CINT__ - TVectorT(Int_t lwb,Int_t upb,Element iv1, ...); + TVectorT(Int_t lwb,Int_t upb,Double_t iv1, ...); #endif virtual ~TVectorT() { Clear(); } diff --git a/math/matrix/src/TVectorT.cxx b/math/matrix/src/TVectorT.cxx index 5bbfbc5efd1d3092c0c6f027e8a51541ddb8a075..f6868c619feca79cf6422c223fb3bd77b1dea4d8 100644 --- a/math/matrix/src/TVectorT.cxx +++ b/math/matrix/src/TVectorT.cxx @@ -260,7 +260,7 @@ TVectorT<Element>::TVectorT(const TMatrixTDiag_const<Element> &md) : TObject() /// TVectorT foo(1,3,0.0,1.0,1.5,"END"); template<class Element> -TVectorT<Element>::TVectorT(Int_t lwb,Int_t upb,Element iv1, ...) +TVectorT<Element>::TVectorT(Int_t lwb,Int_t upb,Double_t iv1, ...) { if (upb < lwb) { Error("TVectorT(Int_t, Int_t, ...)","upb(%d) < lwb(%d)",upb,lwb);