Skip to content

Commit d410704

Browse files
committed
Use scalers instead of selections in Zorro accounting
1 parent f0145ae commit d410704

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Common/Core/Zorro.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ std::vector<int> Zorro::initCCDB(o2::ccdb::BasicCCDBManager* ccdb, int runNumber
210210
mZorroSummary.setupTOIs(mTOIs.size(), mTOIs);
211211
std::vector<double> toiCounters(mTOIs.size(), 0.);
212212
for (size_t i{0}; i < mTOIs.size(); ++i) {
213-
toiCounters[i] = mSelections->GetBinContent(mTOIidx[i] + 2);
213+
toiCounters[i] = mScalers->GetBinContent(mTOIidx[i] + 2);
214214
}
215215
mZorroSummary.setupRun(runNumber, mInspectedTVX->GetBinContent(1), toiCounters);
216216

EventFiltering/macros/run.pdf

20.8 KB
Binary file not shown.

EventFiltering/macros/selectivityPlot.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void selectivityPlot(int runNumber = 550781, TString inputfile = "AnalysisResult
7272
TLatex* tex = new TLatex();
7373
tex->SetTextSize(0.035);
7474
tex->SetTextFont(42);
75-
tex->DrawLatexNDC(0.09, 0.96, Form("ALICE Internal, pp #sqrt{s} = 13.6 TeV, Run %d, #it{L}_{int} #approx %.1f nb^{-1}", runNumber, nEvents / 78.e6));
75+
tex->DrawLatexNDC(0.09, 0.96, Form("ALICE Internal, pp #sqrt{s} = 13.6 TeV, Run %d, #it{L}_{int} #approx %.1f pb^{-1}", runNumber, nEvents / 78.e6 / 1000 / 0.75));
7676
ci = TColor::GetColor("#0000ff");
7777
arrow->SetLineColor(ci);
7878
arrow->Draw();

0 commit comments

Comments
 (0)