#include "TH2F.h"
#include <string>
#include <cmath>
Go to the source code of this file.
◆ countEmptyRows()
int countEmptyRows |
( |
std::vector< float > & |
vec | ) |
|
|
inline |
◆ fillFunctionParamsValues()
void fillFunctionParamsValues |
( |
TH2F *& |
align, |
|
|
std::vector< float > & |
m_params, |
|
|
std::string |
title, |
|
|
int & |
gridRows, |
|
|
int & |
NbColumns |
|
) |
| |
|
inline |
Definition at line 14 of file EcalFunctionParametersUtils.h.
References reco::ceil(), countEmptyRows(), mps_fire::i, and runGCPTkAlMap::title.
16 const int maxInCol = 25;
21 gridRows = (NbRows <= maxInCol) ? NbRows : maxInCol;
22 NbColumns =
ceil(1.0 * NbRows / maxInCol) + 1;
27 align =
new TH2F(
title.c_str(),
"Ecal Function Parameters", NbColumns, 0, NbColumns, gridRows, 0, gridRows);
29 double row = gridRows - 0.5;
33 for (
int i = 0;
i < gridRows;
i++) {
34 align->Fill(0.5, gridRows -
i - 0.5,
i + 1);
37 for (std::vector<float>::const_iterator it = m_params.begin(); it != m_params.end(); it++) {
40 align->Fill(column, row, *it);
43 column = floor(1.0 * cnt / maxInCol) + 1.5;
44 row = (row == 0.5 ? (gridRows - 0.5) : row - 1);
constexpr int32_t ceil(float num)
int countEmptyRows(std::vector< float > &vec)