Skip to content
Snippets Groups Projects
Commit d66e14ca authored by Edoardo Rossi's avatar Edoardo Rossi
Browse files

Increase the bin size of Lumiblock histograms to increase statistics

Former-commit-id: 80eed7a1ddc8b8658e891fa5203ecec5dbfb94ca
parent 75e293d8
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,7 @@ StatusCode InDetGlobalBackgroundMonTool::bookHistograms() {
}
for (unsigned int k = 0; k < int(int(SCT_DISKS_N) / 2); k++) {
//Average over 5 Lumiblocks for increased statistics
m_AsymDisks[k] = new TH1I(Form("AsymDisks%i%i", 2 * k + 1, 2 * k + 2),
Form("Asymmetry of Disks %i and %i;Z Asymmetry;Counts", 2 * k + 1,
2 * k + 2), 201, -1.1, 1.1);
......@@ -75,16 +76,17 @@ StatusCode InDetGlobalBackgroundMonTool::bookHistograms() {
m_EndCapLB[0][k] = new TProfile(Form("EndCapLB%i%iAC", 2 * k + 1, 2 * k + 2),
Form(
"SPs per Event per LB on Disks %i-%i (both ECs) with beam AC; LumiBlock;Counts per Event",
2 * k + 1, 2 * k + 2), 3000, 0.5, 3000.5);
2 * k + 1, 2 * k + 2), 600, 0.5, 3000.5);
status &= regHist(m_EndCapLB[0][k], "InDetGlobal/BackgroundNCB", run, ATTRIB_MANAGED).isSuccess();
m_EndCapLB[1][k] = new TProfile(Form("EndCapLB%i%iCA", 2 * k + 1, 2 * k + 2),
Form(
"SPs per Event on Disks %i-%i (both ECs) with beam CA; LumiBlock;Counts per Event",
2 * k + 1, 2 * k + 2), 3000, 0.5, 3000.5);
2 * k + 1, 2 * k + 2), 600, 0.5, 3000.5);
status &= regHist(m_EndCapLB[1][k], "InDetGlobal/BackgroundNCB", run, ATTRIB_MANAGED).isSuccess();
}
m_asymLB = new TProfile("asymLB", "Fraction of Events with beam CA;LumiBlock;", 3000, 0.5, 3000.5);
//Average over 5 Lumiblocks for increased statistics
m_asymLB = new TProfile("asymLB", "Fraction of Events with beam CA;LumiBlock;", 600, 0.5, 3000.5);
status &= regHist(m_asymLB, "InDetGlobal/BackgroundNCB", run, ATTRIB_MANAGED).isSuccess();
m_asymBCID =
......
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