Skip to content
Snippets Groups Projects
Commit d4122fdd authored by Pierre-Alain Loizeau's avatar Pierre-Alain Loizeau Committed by Volker Friese
Browse files

[mRICH] increased TOT range for NCAL/FSD in monitor

parent 6463a47e
No related branches found
No related tags found
1 merge request!1738Fix mrich 2024 online crash
......@@ -54,8 +54,9 @@ Bool_t CbmRichUnpackMonitor::CreateHistograms(CbmMcbm2018RichPar* pUnpackPar)
for (Int_t i = 0; i < pUnpackPar->GetNaddresses(); ++i) {
auto DiRICH = pUnpackPar->GetAddress(i);
TH2* hist = new TH2D(Form("fhDigisToT_0x%04x", DiRICH),
Form("fhDigisToT_0x%04x; channel; ToT [ns]; Entries", DiRICH), 33, 0, 32, 450, 15, 30.);
TH2* hist =
new TH2D(Form("fhDigisToT_0x%04x", DiRICH), Form("fhDigisToT_0x%04x; channel; ToT [ns]; Entries", DiRICH), 33, 0,
32, 450, 0x7900 < DiRICH ? 0 : 15., 0x7900 < DiRICH ? 45 : 30.);
fhDigisToTDiRICH.push_back(hist);
AddHistoToVector(fhDigisToTDiRICH.back(), "");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment