80 Error(
"PDEFoamVect",
"COPY CONSTRUCTOR NOT IMPLEMENTED" );
101 if (&vect ==
this)
return *
this;
103 Error(
"PDEFoamVect",
"operator=Dims. are different: %d and %d \n ",
fDim, vect.
fDim);
122 if ((n<0) || (n>=
fDim)) {
123 Error(
"PDEFoamVect",
"operator[], out of range \n");
144 Error(
"PDEFoamVect",
"operator+, different dimensions= %d %d \n",
fDim, shift.
fDim);
157 Error(
"PDEFoamVect",
"operator+, different dimensions= %d %d \n",
fDim, shift.
fDim);
219 streamsize wid = std::cout.width();
220 if(!option)
Error(
"Print ",
"No option set \n");
223 std::cout << std::setw(12) << *(
fCoords+i) <<
",";
224 std::cout << std::setw(12) << *(
fCoords+fDim-1);
226 std::cout.width(wid);
PDEFoamVect & operator*=(const Double_t &)
unary multiplication operator *=
PDEFoamVect & operator-=(const PDEFoamVect &)
unary subtraction operator -=
PDEFoamVect & operator=(const PDEFoamVect &)
substitution operator
void Print(Option_t *option) const
Printout of all vector components.
virtual ~PDEFoamVect()
Destructor.
Double_t & operator[](Int_t)
[] is for access to elements as in ordinary matrix like a[j]=bj Range protection is built in...
static double p2(double t, double a, double b, double c)
PDEFoamVect()
Default constructor for streamer.
PDEFoamVect & operator+=(const PDEFoamVect &)
unary addition operator +=; adding vector c*=x,
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
PDEFoamVect operator+(const PDEFoamVect &)
addition operator +; sum of 2 vectors: c=a+b, a=a+b, NEVER USE IT, VERY SLOW!!!
Mother of all ROOT objects.
PDEFoamVect operator-(const PDEFoamVect &)
subtraction operator -; difference of 2 vectors; c=a-b, a=a-b, NEVER USE IT, VERY SLOW!!! ...