Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Lawrence Davou Christopher
athena
Commits
d66e14ca
Commit
d66e14ca
authored
6 years ago
by
Edoardo Rossi
Browse files
Options
Downloads
Patches
Plain Diff
Increase the bin size of Lumiblock histograms to increase statistics
Former-commit-id: 80eed7a1ddc8b8658e891fa5203ecec5dbfb94ca
parent
75e293d8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
InnerDetector/InDetMonitoring/InDetGlobalMonitoring/src/InDetGlobalBackgroundMonTool.cxx
+5
-3
5 additions, 3 deletions
...nDetGlobalMonitoring/src/InDetGlobalBackgroundMonTool.cxx
with
5 additions
and
3 deletions
InnerDetector/InDetMonitoring/InDetGlobalMonitoring/src/InDetGlobalBackgroundMonTool.cxx
+
5
−
3
View file @
d66e14ca
...
...
@@ -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
),
30
00
,
0.5
,
3000.5
);
2
*
k
+
1
,
2
*
k
+
2
),
6
00
,
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
),
30
00
,
0.5
,
3000.5
);
2
*
k
+
1
,
2
*
k
+
2
),
6
00
,
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
=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment