Skip to content

Commit 8912cb5

Browse files
committed
bug-fix: you have to create a new histogram before filling it..
1 parent 8e4ac1b commit 8912cb5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tracking/modules/trackingDQM/src/TrackingHLTDQMModule.cc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,15 @@ void TrackingHLTDQMModule::DefineFlags()
149149
"Tracking Abort vs LER Injection;Time since last injection [#mus];Time in beam cycle [#mus];Events / bin",
150150
500, 0, c_noInjectionTime, 100, 0, c_revolutionTime);
151151

152+
//tracking all VS time after HER/LER injection and time within a beam cycle
153+
m_allVStimeHER = new TH2F(
154+
"allEvtsVsTimeHER",
155+
"Number Of Events vs HER Injection;Time since last injection [#mus];Time in beam cycle [#mus];Events / bin",
156+
500, 0, c_noInjectionTime, 100, 0, c_revolutionTime);
157+
158+
m_allVStimeLER = new TH2F(
159+
"allEvtsVsTimeLER",
160+
"Number of Events vs LER Injection;Time since last injection [#mus];Time in beam cycle [#mus];Events / bin",
161+
500, 0, c_noInjectionTime, 100, 0, c_revolutionTime);
162+
152163
}

0 commit comments

Comments
 (0)