Skip to content

Commit

Permalink
Fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
HGCAL DAQ committed Jun 9, 2018
1 parent af7c523 commit b1a518d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions monitors/cmshgcal_onlinemon/src/HexagonHistos.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ HexagonHistos::HexagonHistos(eudaq::StandardPlane p, RootMonitor *mon)

sprintf(out, "%s-%i, Signal at LG", _sensor.c_str(), _id);
sprintf(out2, "h_sigAdcLG_TS3_%s_%i", _sensor.c_str(), _id);
_sigAdcLG = new TH1I(out2, out, 100, -100, 700);
_sigAdcLG = new TH1I(out2, out, 100, -50, 500);
SetHistoAxisLabelx(_sigAdcLG, "LG (peak) - PED, ADC counts");

sprintf(out, "%s-%i, Signal at HG", _sensor.c_str(), _id);
Expand Down Expand Up @@ -98,7 +98,7 @@ HexagonHistos::HexagonHistos(eudaq::StandardPlane p, RootMonitor *mon)

sprintf(out, "%s-%i, Number of Hits", _sensor.c_str(), _id);
sprintf(out2, "h_raw_nHits_%s_%i", _sensor.c_str(), _id);
_nHits = new TH1I(out2, out, 40, 0, 40);
_nHits = new TH1I(out2, out, 50, 0, 50);
SetHistoAxisLabelx(_nHits, "Number of Hits above ZS");
//_nHits->SetStats(1);

Expand Down

0 comments on commit b1a518d

Please sign in to comment.