81 Log() << kFATAL <<
"<PDEFoamKernelGauss::Estimate>: PDEFoam not set!" <<
Endl;
100 result += gau * cell_val;
104 return (norm != 0 ? result / norm : 0);
119 std::vector<Float_t> &txvec,
129 cell->
GetHcub(cellPosi, cellSize);
133 std::vector<Float_t> ntxvec(txvec);
138 ntxvec[dim] = cellPosi[dim] - xoffset;
146 ntxvec[dim] = cellPosi[dim] + cellSize[dim] + xoffset;
147 right_cell = foam->
FindCell(ntxvec);
154 if (norm > 0) result /= norm;
182 std::vector<Float_t> &txvec)
187 cell->
GetHcub(cellPosi, cellSize);
190 std::vector<Float_t> cell_center;
193 if (txvec[i] < 0.) txvec[i] = 0.;
194 if (txvec[i] > 1.) txvec[i] = 1.;
196 if (cellPosi[i] > txvec.at(i))
197 cell_center.push_back(cellPosi[i]);
198 else if (cellPosi[i] + cellSize[i] < txvec.at(i))
199 cell_center.push_back(cellPosi[i] + cellSize[i]);
201 cell_center.push_back(txvec.at(i));
206 distance +=
Sqr(txvec.at(i) - cell_center.at(i));
int Int_t
Signed integer 4 bytes (int).
long Long_t
Signed long integer 4 bytes (long). Size depends on architecture.
float Float_t
Float 4 bytes (float).
void GetHcub(PDEFoamVect &, PDEFoamVect &) const
Provides size and position of the cell These parameter are calculated by analyzing information in all...
PDEFoamKernelBase()
Default constructor for streamer.
Float_t GetAverageNeighborsValue(PDEFoam *, std::vector< Float_t > &, ECellValue)
This function returns the average value 'cv' of only nearest neighbor cells.
Float_t Estimate(PDEFoam *, std::vector< Float_t > &, ECellValue) override
Gaussian kernel estimator.
Float_t fSigma
width of gauss curve
PDEFoamKernelGauss(Float_t sigma)
Default constructor for streamer.
Float_t WeightGaus(PDEFoam *, PDEFoamCell *, std::vector< Float_t > &)
Returns the gauss weight between the 'cell' and a given coordinate 'txvec'.
Implementation of PDEFoam.
virtual Float_t GetCellValue(const std::vector< Float_t > &xvec, ECellValue cv, PDEFoamKernelBase *)
This function finds the cell, which corresponds to the given untransformed event vector 'xvec' and re...
virtual Bool_t CellValueIsUndefined(PDEFoamCell *)
Returns true, if the value of the given cell is undefined.
PDEFoamCell * FindCell(const std::vector< Float_t > &) const
Find cell that contains 'xvec' (in foam coordinates [0,1]).
PDEFoamCell ** fCells
[fNCells] Array of ALL cells
Int_t fLastCe
Index of the last cell.
MsgLogger & Endl(MsgLogger &ml)
Double_t Gaus(Double_t x, Double_t mean=0, Double_t sigma=1, Bool_t norm=kFALSE)
Calculates a gaussian function with mean and sigma.
Double_t Sqrt(Double_t x)
Returns the square root of x.