Skip to content

Commit

Permalink
fix EDMtoMEConverter for multiRun harvesting
Browse files Browse the repository at this point in the history
  • Loading branch information
deguio committed May 3, 2016
1 parent f520689 commit 515a61c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQMServices/Components/plugins/EDMtoMEConverter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ namespace {
MonitorElement *me = dbe->get(dir+"/"+metoedmobject->GetName());
if(me) {
auto histo = HistoTraits<T>::get(me);
if(histo && me->getTH1F()->CanExtendAllAxes()) {
if(histo && me->getTH1()->CanExtendAllAxes()) {
TList list;
list.Add(metoedmobject);
if (histo->Merge(&list) == -1)
Expand Down

0 comments on commit 515a61c

Please sign in to comment.