47            Error(
"TFoamVect", 
"Constructor failed to allocate\n");
 
   49      for (i=0; i<
n; i++) *(
fCoords+i)=0.0;
 
   51   if(
gDebug>=3) 
Info(
"TFoamVect", 
"USER CONSTRUCTOR TFoamVect(const Int_t)\n ");
 
 
   64         Error(
"TFoamVect", 
"Constructor failed to allocate fCoords\n");
 
 
   78   if(
gDebug>=3) 
Info(
"TFoamVect",
" DESTRUCTOR TFoamVect~ \n");
 
 
   89   if (&Vect == 
this) 
return *
this;
 
   91       Error(
"TFoamVect",
"operator= : invalid  dimensions : %d and %d \n ",
fDim,Vect.
fDim);
 
   99   if(
gDebug>=3)  
Info(
"TFoamVect", 
"SUBSITUTE operator =\n ");
 
 
  112      Error( 
"TFoamVect",
"operator[], out of range \n");
 
 
  133      Error( 
"TFoamVect",
"operator+, different dimensions= %d %d \n",
fDim,Shift.
fDim);
 
 
  146      Error( 
"TFoamVect",
"operator+, different dimensions= %d %d \n",
fDim,Shift.
fDim);
 
 
  183   for(i=0; i<
fDim; i++)
 
 
  207   Int_t pr = std::cout.precision(7);
 
  209   for(i=0; i<
fDim-1; i++) std::cout  << std::setw(12) << *(
fCoords+i) << 
",";
 
  212   std::cout.precision(
pr);
 
 
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Auxiliary class TFoamVect of n-dimensional vector, with dynamic allocation used for the cartesian geo...
TFoamVect & operator=(const TFoamVect &)
substitution operator
TFoamVect operator+(const TFoamVect &)
addition operator +; sum of 2 vectors: c=a+b, a=a+b, NEVER USE IT, VERY SLOW!!!
TFoamVect operator-(const TFoamVect &)
subtraction operator -; difference of 2 vectors; c=a-b, a=a-b, NEVER USE IT, VERY SLOW!...
TFoamVect & operator*=(const Double_t &)
unary multiplication operator *=
TFoamVect & operator+=(const TFoamVect &)
unary addition operator +=; adding vector c*=x,
TFoamVect & operator-=(const TFoamVect &)
unary subtraction operator -=
Double_t * fCoords
[fDim] Coordinates
TFoamVect()
Default constructor for streamer.
Double_t & operator[](Int_t)
[] is for access to elements as in ordinary matrix like a[j]=b[j] (Perhaps against some strict rules ...
void Print(Option_t *option) const override
Printout of all vector components on "std::cout".
~TFoamVect() override
Destructor.
Mother of all ROOT objects.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.