Skip to content

Commit

Permalink
fixed iSummary variable name (not iSummary_)
Browse files Browse the repository at this point in the history
  • Loading branch information
smorovic committed Feb 26, 2015
1 parent 26eabee commit 73121c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HLTrigger/JSONMonitoring/plugins/TriggerJSONMonitoring.cc
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ TriggerJSONMonitoring::globalEndLuminosityBlockSummary(const edm::LuminosityBloc
hltDaqJsn[DataPoint::DATA].append((unsigned int)hltJsnFilesize_.value());
hltDaqJsn[DataPoint::DATA].append(hltJsnInputFiles_.value());
hltDaqJsn[DataPoint::DATA].append((unsigned int)hltJsnFileAdler32_.value());
hltDaqJsn[DataPoint::DATA].append(iSummary_->streamHLTDestination);
hltDaqJsn[DataPoint::DATA].append(iSummary->streamHLTDestination);

result = writer.write(hltDaqJsn);

Expand Down Expand Up @@ -591,7 +591,7 @@ TriggerJSONMonitoring::globalEndLuminosityBlockSummary(const edm::LuminosityBloc
l1DaqJsn[DataPoint::DATA].append((unsigned int)l1JsnFilesize_.value());
l1DaqJsn[DataPoint::DATA].append(l1JsnInputFiles_.value());
l1DaqJsn[DataPoint::DATA].append((unsigned int)l1JsnFileAdler32_.value());
l1DaqJsn[DataPoint::DATA].append(iSummary_->streamL1Destination);
l1DaqJsn[DataPoint::DATA].append(iSummary->streamL1Destination);

result = writer.write(l1DaqJsn);

Expand Down

0 comments on commit 73121c8

Please sign in to comment.