34template <
typename DataT>
40template <
typename DataT>
43 return mIDCOne[
side] ? mIDCOne[
side]->getNIDCs() : 0;
46template <
typename DataT>
51 return !mIDCZero[
side] ? -1 : (mIDCZero[
side]->getNIDC0() == Mapper::getNumberOfPadsPerSide()) ? mIDCZero[
side]->getValueIDCZero(getUngroupedIndexGlobal(sector, region, urow, upad, 0))
52 : mIDCZero[
side]->getValueIDCZero(mHelperSector[
side]->getIndexUngrouped(sector, region, urow, upad, 0));
55template <
typename DataT>
59 return (!mIDCDelta[
side] || !mHelperSector[
side]) ? -1 : mIDCDelta[
side]->getValue(mHelperSector[
side]->getIndexUngrouped(sector, region, urow, upad, integrationInterval));
62template <
typename DataT>
65 return !mIDCOne[
side] ? -1 : mIDCOne[
side]->getValueIDCOne(integrationInterval);
68template <
typename DataT>
71 return (getIDCDeltaVal(sector, region, urow, upad, integrationInterval) + 1.f) * getIDCZeroVal(sector, region, urow, upad) * getIDCOneVal(
Sector(sector).
side(), integrationInterval);
74template <
typename DataT>
77 std::function<float(
const unsigned int,
const unsigned int,
const unsigned int,
const unsigned int)> idcFunc = [
this](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
78 return this->getIDCZeroVal(sector, region, irow, pad);
83 const std::string zAxisTitle = IDCDrawHelper::getZAxisTitle(IDCType::IDCZero);
84 type ? IDCDrawHelper::drawSide(drawFun, sector.
side(), zAxisTitle,
filename,
minZ,
maxZ) :
IDCDrawHelper::drawSector(drawFun, 0,
Mapper::NREGIONS, sector, zAxisTitle,
filename,
minZ,
maxZ);
87template <
typename DataT>
90 std::function<float(
const unsigned int,
const unsigned int,
const unsigned int,
const unsigned int)> idcFunc = [
this, integrationInterval](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
91 return this->getIDCDeltaVal(sector, region, irow, pad, integrationInterval);
96 const std::string zAxisTitle = IDCDrawHelper::getZAxisTitle(IDCType::IDCDelta);
97 type ? IDCDrawHelper::drawSide(drawFun, sector.
side(), zAxisTitle,
filename,
minZ,
maxZ) :
IDCDrawHelper::drawSector(drawFun, 0,
Mapper::NREGIONS, sector, zAxisTitle,
filename,
minZ,
maxZ);
100template <
typename DataT>
103 std::function<float(
const unsigned int,
const unsigned int,
const unsigned int,
const unsigned int)> idcFunc = [
this, integrationInterval](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
104 return this->getIDCVal(sector, region, irow, pad, integrationInterval);
109 const std::string zAxisTitle = IDCDrawHelper::getZAxisTitle(IDCType::IDC);
110 type ? IDCDrawHelper::drawSide(drawFun, sector.
side(), zAxisTitle,
filename,
minZ,
maxZ) :
IDCDrawHelper::drawSector(drawFun, 0,
Mapper::NREGIONS, sector, zAxisTitle,
filename,
minZ,
maxZ);
113template <
typename DataT>
117 LOGP(info,
"Status map not set returning");
121 std::function<float(
const unsigned int,
const unsigned int,
const unsigned int,
const unsigned int)> idcFunc = [
this, flag](
const unsigned int sector,
const unsigned int region,
const unsigned int row,
const unsigned int pad) {
122 const unsigned int padInRegion = Mapper::OFFSETCRULOCAL[region][
row] + pad;
123 const auto flagDraw = mPadFlagsMap->getCalArray(region + sector * Mapper::NREGIONS).getValue(padInRegion);
124 if ((flagDraw & flag) == flag) {
133 const std::string zAxisTitle =
"status flag";
137template <
typename DataT>
140 return IDCGroupHelperSector::getUngroupedIndexGlobal(sector, region, urow, upad, integrationInterval);
143template <
typename DataT>
146 TCanvas* canv =
nullptr;
148 std::function<float(
const unsigned int,
const unsigned int,
const unsigned int,
const unsigned int)> idcFunc;
150 if (
type ==
"IDC0") {
151 idcFunc = [
this](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
152 return this->getIDCZeroVal(sector, region, irow, pad);
154 }
else if (
type ==
"IDCDelta") {
155 idcFunc = [
this, integrationInterval](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
156 return this->getIDCDeltaVal(sector, region, irow, pad, integrationInterval);
158 if (integrationInterval <= 0) {
159 integrationInterval = std::min(getNIntegrationIntervalsIDCDelta(Side::A), getNIntegrationIntervalsIDCDelta(Side::C));
161 }
else if (
type ==
"IDC") {
162 idcFunc = [
this, integrationInterval](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
163 return this->getIDCVal(sector, region, irow, pad, integrationInterval);
165 if (integrationInterval <= 0) {
166 integrationInterval = std::min(getNIntegrationIntervalsIDCDelta(Side::A), getNIntegrationIntervalsIDCDelta(Side::C));
169 LOGP(error,
"Please provide a valid IDC data type. 'IDC0', 'IDCDelta', or 'IDC'.");
176 canv =
new TCanvas(fmt::format(
"c_sides_{}",
type.data()).data(), fmt::format(
"{}",
type.data()).data(), 1000, 1000);
181 const std::string zAxisTitle = IDCDrawHelper::getZAxisTitle(IDCType::IDCZero);
183 auto hAside2D = IDCDrawHelper::drawSide(drawFun, Side::A, zAxisTitle);
184 auto hCside2D = IDCDrawHelper::drawSide(drawFun, Side::C, zAxisTitle);
185 hAside2D->SetTitle(fmt::format(
"{} (A-Side)",
type.data()).data());
186 hCside2D->SetTitle(fmt::format(
"{} (C-Side)",
type.data()).data());
187 hAside2D->SetMinimum(xMin1D);
188 hAside2D->SetMaximum(xMax1D);
189 hCside2D->SetMinimum(xMin1D);
190 hCside2D->SetMaximum(xMax1D);
192 auto hAside1D = IDCDrawHelper::drawSide(drawFun, fmt::format(
"{}",
type.data()).data(), Side::A, nbins1D, xMin1D, xMax1D);
193 auto hCside1D = IDCDrawHelper::drawSide(drawFun, fmt::format(
"{}",
type.data()).data(), Side::C, nbins1D, xMin1D, xMax1D);
197 hAside2D->Draw(
"colz");
198 hAside2D->SetStats(0);
199 hAside2D->SetTitleOffset(1.05,
"XY");
200 hAside2D->SetTitleSize(0.05,
"XY");
204 hCside2D->Draw(
"colz");
205 hCside2D->SetStats(0);
206 hCside2D->SetTitleOffset(1.05,
"XY");
207 hCside2D->SetTitleSize(0.05,
"XY");
216 hAside2D->SetBit(TObject::kCanDelete);
217 hCside2D->SetBit(TObject::kCanDelete);
218 hAside1D->SetBit(TObject::kCanDelete);
219 hCside1D->SetBit(TObject::kCanDelete);
224template <
typename DataT>
227 TCanvas* canv =
nullptr;
232 canv =
new TCanvas(
"c_sides_IDC0_scale",
"IDC0", 1000, 1000);
235 double xsides[] = {0, 1};
236 double yTotIDC0[] = {mScaleIDC0Aside, mScaleIDC0Cside};
237 auto gIDC0Scale =
new TGraph(2, xsides, yTotIDC0);
238 gIDC0Scale->SetName(
"g_IDC0ScaleFactor");
239 gIDC0Scale->SetTitle(
"Scaling Factor (IDC0);Sides;IDC0 Total (arb. unit)");
240 gIDC0Scale->SetMarkerColor(kBlue);
241 gIDC0Scale->SetMarkerStyle(21);
242 gIDC0Scale->SetMarkerSize(1);
243 gIDC0Scale->GetXaxis()->SetLabelColor(0);
244 gIDC0Scale->GetXaxis()->CenterTitle();
246 gIDC0Scale->Draw(
"ap");
248 TText* t =
new TText();
249 t->SetTextSize(0.035);
250 const char* labels[2] = {
"A",
"C"};
251 for (Int_t
i = 0;
i < 2;
i++) {
252 t->DrawText(xsides[
i], 0.5, labels[
i]);
254 gIDC0Scale->GetXaxis()->SetLimits(-0.5, 1.5);
257 gIDC0Scale->SetBit(TObject::kCanDelete);
258 t->SetBit(TObject::kCanDelete);
262template <
typename DataT>
265 std::function<float(
const unsigned int,
const unsigned int,
const unsigned int,
const unsigned int)> idcFunc = [
this](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
266 return this->getIDCZeroVal(sector, region, irow, pad);
269 TCanvas* canv =
nullptr;
274 canv =
new TCanvas(
"c_sides_IDC0_radialProfile",
"IDC0", 1000, 1000);
282 auto hAside2D =
new TH2F(
"h_IDC0_radialProfile_Aside",
"IDC0: Radial profile (A-Side)", radialBinning.size() - 1, radialBinning.data(), nbinsY, yMin,
yMax);
283 hAside2D->GetXaxis()->SetTitle(
"x (cm)");
284 hAside2D->GetYaxis()->SetTitle(
"IDC0 (ADC)");
285 hAside2D->SetTitleOffset(1.05,
"XY");
286 hAside2D->SetTitleSize(0.05,
"XY");
287 hAside2D->SetStats(0);
289 auto hCside2D =
new TH2F(
"h_IDC0_radialProfile_Cside",
"IDC0: Radial profile (C-Side)", radialBinning.size() - 1, radialBinning.data(), nbinsY, yMin,
yMax);
290 hCside2D->GetXaxis()->SetTitle(
"x (cm)");
291 hCside2D->GetYaxis()->SetTitle(
"IDC0 (ADC)");
292 hCside2D->SetTitleOffset(1.05,
"XY");
293 hCside2D->SetTitleSize(0.05,
"XY");
294 hCside2D->SetStats(0);
296 IDCDrawHelper::drawRadialProfile(drawFun, *hAside2D, Side::A);
297 IDCDrawHelper::drawRadialProfile(drawFun, *hCside2D, Side::C);
301 hAside2D->Draw(
"colz");
302 hAside2D->ProfileX(
"profile_ASide", 1, -1,
"d,same");
304 hAside2D->SetStats(0);
307 hCside2D->Draw(
"colz");
308 hCside2D->ProfileX(
"profile_CSide", 1, -1,
"d,same");
310 hAside2D->SetStats(0);
312 hAside2D->SetBit(TObject::kCanDelete);
313 hCside2D->SetBit(TObject::kCanDelete);
318template <
typename DataT>
321 TCanvas* canv =
nullptr;
323 std::function<float(
const unsigned int,
const unsigned int,
const unsigned int,
const unsigned int)> idcFunc;
325 if (
type ==
"IDC0") {
326 idcFunc = [
this](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
327 return this->getIDCZeroVal(sector, region, irow, pad);
329 }
else if (
type ==
"IDCDelta") {
330 idcFunc = [
this, integrationInterval](
const unsigned int sector,
const unsigned int region,
const unsigned int irow,
const unsigned int pad) {
331 return this->getIDCDeltaVal(sector, region, irow, pad, integrationInterval);
333 if (integrationInterval <= 0) {
334 integrationInterval = std::min(getNIntegrationIntervalsIDCDelta(Side::A), getNIntegrationIntervalsIDCDelta(Side::C));
337 LOGP(error,
"Please provide a valid IDC data type. 'IDC0' or 'IDCDelta'.");
344 canv =
new TCanvas(fmt::format(
"c_GEMStacks_{}_1D_{}Side",
type.data(), (
side == Side::A) ?
"A" :
"C").
data(), fmt::format(
"{} value 1D distribution for each GEM stack {}-Side",
type.data(), (
side == Side::A) ?
"A" :
"C").
data(), 1000, 1000);
349 IDCDrawHelper::drawIDCZeroStackCanvas(drawFun,
side,
type, nbins1D, xMin1D, xMax1D, *canv, integrationInterval);
354template <
typename DataT>
357 TCanvas* canv =
nullptr;
362 canv =
new TCanvas(
"c_sides_IDC1_1D",
"IDC1 1D distribution for each side", 1000, 1000);
365 auto hAside1D =
new TH1F(
"h_IDC1_1D_ASide",
"IDC1 distribution over integration intervals A-Side", nbins1D, xMin1D, xMax1D);
366 auto hCside1D =
new TH1F(
"h_IDC1_1D_CSide",
"IDC1 distribution over integration intervals C-Side", nbins1D, xMin1D, xMax1D);
368 hAside1D->GetXaxis()->SetTitle(
"IDC1");
369 hAside1D->SetTitleOffset(1.05,
"XY");
370 hAside1D->SetTitleSize(0.05,
"XY");
371 hCside1D->GetXaxis()->SetTitle(
"IDC1");
372 hCside1D->SetTitleOffset(1.05,
"XY");
373 hCside1D->SetTitleSize(0.05,
"XY");
375 if (integrationIntervals <= 0) {
376 integrationIntervals = std::min(mIDCOne[Side::A]->getNIDCs(), mIDCOne[Side::C]->getNIDCs());
379 for (
unsigned int integrationInterval = 0; integrationInterval < integrationIntervals; ++integrationInterval) {
380 hAside1D->Fill(getIDCOneVal(Side::A, integrationInterval));
381 hCside1D->Fill(getIDCOneVal(Side::C, integrationInterval));
390 hAside1D->SetBit(TObject::kCanDelete);
391 hCside1D->SetBit(TObject::kCanDelete);
396template <
typename DataT>
399 TCanvas* canv =
nullptr;
404 canv =
new TCanvas(fmt::format(
"c_FourierCoefficients_1D_{}Side", (
side == Side::A) ?
"A" :
"C").
data(), fmt::format(
"1D distributions of Fourier Coefficients ({}-Side)", (
side == Side::A) ?
"A" :
"C").
data(), 1000, 1000);
407 std::vector<TH1F*> histos;
409 for (
int i = 0;
i < mFourierCoeff[
side]->getNCoefficientsPerTF();
i++) {
410 histos.emplace_back(
new TH1F(fmt::format(
"h_FourierCoeff{}_{}Side",
i, (
side == Side::A) ?
"A" :
"C").
data(), fmt::format(
"1D distribution of Fourier Coefficient {} ({}-Side)",
i, (
side == Side::A) ?
"A" :
"C").
data(), nbins1D, xMin1D, xMax1D));
411 histos.back()->GetXaxis()->SetTitle(fmt::format(
"Fourier Coefficient {}",
i).data());
412 histos.back()->SetBit(TObject::kCanDelete);
415 const auto&
coeffs = mFourierCoeff[
side]->getFourierCoefficients();
416 const auto nCoeffPerTF = mFourierCoeff[
side]->getNCoefficientsPerTF();
418 for (
int i = 0;
i < mFourierCoeff[
side]->getNCoefficients();
i++) {
419 histos.at(
i % nCoeffPerTF)->Fill(
coeffs.at(
i));
422 canv->DivideSquare(mFourierCoeff[
side]->getNCoefficientsPerTF());
426 for (
const auto& hist : histos) {
428 hist->SetTitleOffset(1.05,
"XY");
429 hist->SetTitleSize(0.05,
"XY");
437template <
typename DataT>
440 const Mapper& mapper = Mapper::instance();
444 const unsigned int nIDCsSector = Mapper::getPadsInSector() * Mapper::NSECTORS;
445 std::vector<int> vRow(nIDCsSector);
446 std::vector<int> vPad(nIDCsSector);
447 std::vector<float> vXPos(nIDCsSector);
448 std::vector<float> vYPos(nIDCsSector);
449 std::vector<float> vGlobalXPos(nIDCsSector);
450 std::vector<float> vGlobalYPos(nIDCsSector);
451 std::vector<float> idcsZero(nIDCsSector);
452 std::vector<unsigned int> sectorv(nIDCsSector);
453 std::vector<int> outlier(nIDCsSector);
454 std::vector<float> stackMedian(nIDCsSector);
456 if (!mIDCZero[
side]) {
457 LOGP(info,
"IDC0 not set. returning");
460 auto stacksMedianTmp = getStackMedian(*mIDCZero[
side],
side);
461 const std::array<int, Mapper::NREGIONS> stackInSector{0, 0, 0, 0, 1, 1, 2, 2, 3, 3};
462 unsigned int index = 0;
465 for (
unsigned int sector = secStart; sector < secEnd; ++sector) {
466 for (
unsigned int region = 0; region < Mapper::NREGIONS; ++region) {
467 for (
unsigned int irow = 0; irow < Mapper::ROWSPERREGION[region]; ++irow) {
468 for (
unsigned int ipad = 0; ipad < Mapper::PADSPERROW[region][irow]; ++ipad) {
469 const auto padNum = Mapper::getGlobalPadNumber(irow, ipad, region);
470 const auto padTmp = (sector <
SECTORSPERSIDE) ? ipad : (Mapper::PADSPERROW[region][irow] - ipad - 1);
471 const auto& padPosLocal = mapper.
padPos(padNum);
472 vRow[
index] = padPosLocal.getRow();
473 vPad[
index] = padPosLocal.getPad();
477 vGlobalXPos[
index] = globalPos.X();
478 vGlobalYPos[
index] = globalPos.Y();
479 idcsZero[
index] = getIDCZeroVal(sector, region, irow, padTmp);
481 const unsigned int padInRegion = Mapper::OFFSETCRULOCAL[region][irow] + padTmp;
482 outlier[
index] =
static_cast<int>(mPadFlagsMap->getCalArray(region + sector * Mapper::NREGIONS).getValue(padInRegion));
485 sectorv[
index++] = sector;
490 std::vector<float> idcOne = !mIDCOne[
side] ? std::vector<float>() : mIDCOne[
side]->mIDCOne;
493 <<
"IDC0.=" << idcsZero
499 <<
"gx.=" << vGlobalXPos
500 <<
"gy.=" << vGlobalYPos
501 <<
"outlier.=" << outlier
502 <<
"sector.=" << sectorv
503 <<
"stacksMedian=" << stackMedian
508template <
typename DataT>
513 const unsigned int nIDCsSector = Mapper::getPadsInSector() *
SECTORSPERSIDE;
514 std::vector<float> idcsDelta(nIDCsSector);
515 for (
int integrationInterval = 0; integrationInterval < getNIntegrationIntervalsIDCDelta(
side); ++integrationInterval) {
516 unsigned int index = 0;
519 for (
unsigned int sector = secStart; sector < secEnd; ++sector) {
520 for (
unsigned int region = 0; region < Mapper::NREGIONS; ++region) {
521 for (
unsigned int irow = 0; irow < Mapper::ROWSPERREGION[region]; ++irow) {
522 for (
unsigned int ipad = 0; ipad < Mapper::PADSPERROW[region][irow]; ++ipad) {
523 const auto padTmp = (sector <
SECTORSPERSIDE) ? ipad : (Mapper::PADSPERROW[region][irow] - ipad - 1);
524 idcsDelta[
index++] = getIDCDeltaVal(sector, region, irow, padTmp, integrationInterval);
529 float idcOne = getIDCOneVal(
side, integrationInterval);
533 <<
"IDCDelta.=" << idcsDelta
539template <
typename DataT>
545 for (
int iside = 0; iside <
SIDES; ++iside) {
546 const Side side = (iside == 0) ? Side::A : Side::C;
548 if (!mFourierCoeff[
side]) {
552 const int nTFs = mFourierCoeff[
side]->getNCoefficients() / mFourierCoeff[
side]->getNCoefficientsPerTF();
553 for (
int iTF = 0; iTF < nTFs; ++iTF) {
554 std::vector<float> coeff;
555 std::vector<int> ind;
556 int coeffPerTF = mFourierCoeff[
side]->getNCoefficientsPerTF();
557 for (
int i = 0;
i < coeffPerTF; ++
i) {
558 const int index = mFourierCoeff[
side]->getIndex(iTF,
i);
559 coeff.emplace_back((*mFourierCoeff[
side])(
index));
566 <<
"coeffPerTF=" << coeffPerTF
567 <<
"coeff.=" << coeff
575template <
typename DataT>
579 for (
unsigned int cru = 0; cru < CRU::MaxCRU; ++cru) {
582 const int region = cruTmp.
region();
583 const int sector = cruTmp.
sector();
584 for (
unsigned int lrow = 0; lrow < Mapper::ROWSPERREGION[region]; ++lrow) {
585 const unsigned int integrationInterval = 0;
586 for (
unsigned int pad = 0; pad < Mapper::PADSPERROW[region][lrow]; ++pad) {
587 const auto idcZero = getIDCZeroVal(sector, region, lrow, pad);
588 calIDC0.
setValue(sector, Mapper::ROWOFFSET[region] + lrow, pad, idcZero);
595template <
typename DataT>
598 const unsigned int nIntervalsA = getNIntegrationIntervalsIDCDelta(Side::A);
599 const unsigned int nIntervalsC = getNIntegrationIntervalsIDCDelta(Side::C);
600 if (nIntervalsA != nIntervalsC) {
601 LOGP(info,
"Number of integration interval for A Side {} unequal for C side {}", nIntervalsA, nIntervalsC);
604 std::vector<CalPad> calIDCDelta(std::max(nIntervalsA, nIntervalsC));
605 for (
auto& calpadIDC : calIDCDelta) {
606 calpadIDC =
CalPad(
"IDCDelta", PadSubset::ROC);
609 for (
unsigned int cru = 0; cru < CRU::MaxCRU; ++cru) {
612 const int region = cruTmp.
region();
613 const int sector = cruTmp.
sector();
615 const unsigned int nIntervals = getNIntegrationIntervalsIDCDelta(
side);
616 for (
unsigned int integrationInterval = 0; integrationInterval < nIntervals; ++integrationInterval) {
617 for (
unsigned int lrow = 0; lrow < Mapper::ROWSPERREGION[region]; ++lrow) {
618 for (
unsigned int pad = 0; pad < Mapper::PADSPERROW[region][lrow]; ++pad) {
619 const auto idcdelta = getIDCDeltaVal(sector, region, lrow, pad, integrationInterval);
620 calIDCDelta[integrationInterval].setValue(sector, Mapper::ROWOFFSET[region] + lrow, pad, idcdelta);
628template <
typename DataT>
631 if (!mIDCZero[Side::A] && !mIDCZero[Side::C]) {
632 LOGP(info,
"IDC0 not set. returning");
636 if (mIDCZero[Side::A]) {
637 nCRUS += CRU::MaxCRU / 2;
640 if (mIDCZero[Side::C]) {
641 nCRUS += CRU::MaxCRU / 2;
644 std::vector<uint32_t> crus(nCRUS);
645 std::iota(crus.begin(), crus.end(), mIDCZero[Side::A] ? 0 : (CRU::MaxCRU / 2));
648 if (mIDCZero[Side::A]) {
651 if (mIDCZero[Side::C]) {
658template <
typename DataT>
661 if (!mIDCZero[
side]) {
662 LOGP(info,
"IDC0 not set. returning");
666 *mIDCZero[
side] /= factor;
669template <
typename DataT>
676 if (mIDCZero[Side::A]) {
677 mScaleIDC0Aside = getMeanIDC0(Side::A, *mIDCZero[Side::A], rejectOutlier ? mPadFlagsMap.get() :
nullptr);
678 scaleIDC0(mScaleIDC0Aside, Side::A);
683 if (mIDCZero[Side::C]) {
684 mScaleIDC0Cside = getMeanIDC0(Side::C, *mIDCZero[Side::C], rejectOutlier ? mPadFlagsMap.get() :
nullptr);
685 scaleIDC0(mScaleIDC0Cside, Side::C);
691 if (mScaleIDC0Aside == 0.0 || mScaleIDC0Cside == 0.0) {
692 LOGP(error,
"Please check the IDC0 total A side {} and C side {}, is zero, therefore no scaling applied!", mScaleIDC0Aside, mScaleIDC0Cside);
693 mScaleIDC0Aside = 1.0;
694 mScaleIDC0Cside = 1.0;
698template <
typename DataT>
702 std::vector<double> idc0Sum(Mapper::PADROWS);
703 std::vector<unsigned int> idcChannelsCount(Mapper::PADROWS);
704 const unsigned int firstCRU = (
side == Side::A) ? 0 : CRU::MaxCRU / 2;
705 for (
unsigned int cru = firstCRU; cru < firstCRU + CRU::MaxCRU / 2; ++cru) {
707 const int region = cruTmp.
region();
708 const int sector = cruTmp.
sector();
709 for (
unsigned int lrow = 0; lrow < Mapper::ROWSPERREGION[region]; ++lrow) {
710 const unsigned int glRow = lrow + Mapper::ROWOFFSET[region];
711 for (
unsigned int pad = 0; pad < Mapper::PADSPERROW[region][lrow]; ++pad) {
712 const unsigned int padInRegion = Mapper::OFFSETCRULOCAL[region][lrow] + pad;
715 if ((flag & PadFlags::flagSkip) == PadFlags::flagSkip) {
719 const auto index = getUngroupedIndexGlobal(sector, region, lrow, pad, 0);
721 ++idcChannelsCount[glRow];
727 double idc0SumGlobal = 0;
728 unsigned int idc0CountGlobal = 0;
729 for (
unsigned int i = 0;
i < Mapper::PADROWS; ++
i) {
730 if (idcChannelsCount[
i]) {
731 idc0SumGlobal += idc0Sum[
i] / idcChannelsCount[
i];
736 if (idc0CountGlobal == 0) {
740 return idc0SumGlobal /= idc0CountGlobal;
743template <
typename DataT>
746 int cruStart = sector * CRU::CRUperSector;
747 if (
stack == GEMstack::OROC1gem) {
748 cruStart += CRU::CRUperIROC;
749 }
else if (
stack == GEMstack::OROC2gem) {
750 cruStart += CRU::CRUperIROC + CRU::CRUperPartition;
751 }
else if (
stack == GEMstack::OROC3gem) {
752 cruStart += CRU::CRUperIROC + 2 * CRU::CRUperPartition;
754 int cruEnd = (
stack == GEMstack::IROCgem) ? (cruStart + CRU::CRUperIROC) : (cruStart + CRU::CRUperPartition);
758 for (
int cru = cruStart; cru < cruEnd; ++cru) {
760 const int region = cruTmp.
region();
761 for (
unsigned int lrow = 0; lrow < Mapper::ROWSPERREGION[region]; ++lrow) {
762 const unsigned int integrationInterval = 0;
763 for (
unsigned int pad = 0; pad < Mapper::PADSPERROW[region][lrow]; ++pad) {
764 const auto index = getUngroupedIndexGlobal(sector, region, lrow, pad, integrationInterval);
766 if ((idcZero != -1) && (idcZero != 0)) {
775template <
typename DataT>
779 std::array<float, stacksPerSide> median;
782 for (
unsigned int sector = sectorStart; sector < sectorEnd; ++sector) {
790template <
typename DataT>
793 std::pair<int, int> nOutliers{};
795 LOGP(info,
"Status map not set returning");
799 const auto& calArray = mPadFlagsMap->getCalArray(cru);
800 for (
auto flag : calArray.getData()) {
801 if ((flag & PadFlags::flagSkip) == PadFlags::flagSkip) {
802 (cru.side() == Side::A) ? ++nOutliers.first : ++nOutliers.second;
helper class for accessing IDCs from CCDB
This file provides the structs for storing the factorized IDC values and fourier coefficients to be s...
helper class for drawing IDCs per region/side
class for aggregating IDCs for the full TPC (all sectors) and factorization of aggregated IDCs
helper class for grouping of pads and rows for one sector
class for performing robust averaging and outlier filtering
unsigned char region() const
const Sector sector() const
const T getValue(const size_t channel) const
const CalType & getCalArray(size_t position) const
void setValue(const int sec, const int globalPadInSector, const T &value)
CalDet< float > getIDCZeroCalDet() const
TCanvas * drawIDCOneCanvas(TCanvas *outputCanvas, int nbins1D, float xMin1D, float xMax1D, int integrationIntervals=-1) const
void scaleIDC0(const float factor, const Side side)
void dumpToFourierCoeffToTree(const char *outFileName="FourierCCDBTree.root") const
float getIDCZeroVal(const unsigned int sector, const unsigned int region, unsigned int urow, unsigned int upad) const
void setIDCZeroScale(const bool rejectOutlier=true)
TCanvas * drawIDCZeroScale(TCanvas *outputCanvas, const bool rejectOutlier=true) const
void createOutlierMap()
create the outlier map with the set unscaled IDC0 map
std::vector< CalDet< float > > getIDCDeltaCalDet() const
TCanvas * drawIDCZeroCanvas(TCanvas *outputCanvas, std::string_view type, int nbins1D, float xMin1D, float xMax1D, int integrationInterval=-1) const
TCanvas * drawFourierCoeff(TCanvas *outputCanvas, Side side, int nbins1D, float xMin1D, float xMax1D) const
std::pair< int, int > getNOutliers() const
float getIDCVal(const unsigned int sector, const unsigned int region, unsigned int urow, unsigned int upad, unsigned int integrationInterval) const
static float getMeanIDC0(const Side side, const IDCZero &idcZero, const CalDet< PadFlags > *outlierMap)
unsigned int getNIntegrationIntervalsIDCDelta(const o2::tpc::Side side) const
float getIDCOneVal(const o2::tpc::Side side, const unsigned int integrationInterval) const
void dumpToTree(const Side side, const char *outFileName="IDCCCDBTree.root") const
static float getStackMedian(const IDCZero &idczero, const Sector sector, const GEMstack stack)
unsigned int getNIntegrationIntervalsIDCOne(const o2::tpc::Side side) const
TCanvas * drawIDCZeroStackCanvas(TCanvas *outputCanvas, Side side, std::string_view type, int nbins1D, float xMin1D, float xMax1D, int integrationInterval=-1) const
TCanvas * drawIDCZeroRadialProfile(TCanvas *outputCanvas, int nbinsY, float yMin, float yMax) const
float getIDCDeltaVal(const unsigned int sector, const unsigned int region, unsigned int urow, unsigned int upad, unsigned int integrationInterval) const
void dumpToTreeIDCDelta(const Side side, const char *outFileName="IDCCCDBTreeDeltaIDC.root") const
void setIDCZero(const Side side, const IDCZero &idcZero)
set the IDCZero object
std::unique_ptr< CalDet< PadFlags > > getPadStatusMap()
const PadPos & padPos(GlobalPadNumber padNumber) const
static GlobalPosition3D LocalToGlobal(const LocalPosition3D &pos, const double alpha)
GlobalPosition2D getPadCentre(const PadSecPos &padSec) const
void addValue(const float value, const float weight=1)
void reserve(const unsigned int maxValues)
GLint GLint GLsizei GLint GLenum GLenum type
GLint GLenum GLint const GLfloat * coeffs
GLfloat GLfloat GLfloat GLfloat GLfloat GLfloat maxZ
GEMstack
TPC GEM stack types.
constexpr unsigned char SECTORSPERSIDE
constexpr unsigned char SIDES
constexpr unsigned short GEMSTACKSPERSECTOR
std::function< float(const unsigned int, const unsigned int, const unsigned int, const unsigned int)> mIDCFunc
function returning the value which will be drawn for sector, region, row, pad
struct containing the ITPC0 values (integrated TPC clusters)
std::vector< float > mIDCZero
I_0(r,\phi) = <I(r,\phi,t)>_t.
float getValueIDCZero(const unsigned int index) const
static std::vector< double > getRowBinningCM(uint32_t roc=72)
static void drawSectorsXY(Side side, int sectorLineColor=920, int sectorTextColor=1)
draw sector boundaris, side name and sector numbers