Skip to content

Commit

Permalink
Fix logic error in DQM/EcalEndcapMonitorModule
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf committed Oct 8, 2013
1 parent b1be5a1 commit dc47c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQM/EcalEndcapMonitorModule/src/EcalEndcapMonitorModule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ void EcalEndcapMonitorModule::reset(void) {
for (int i = 0; i < 2; i++) {
if ( meEEdigis_[i] ) meEEdigis_[i]->Reset();

if ( meEEhits_[i] ) meEEdigis_[i]->Reset();
if ( meEEhits_[i] ) meEEhits_[i]->Reset();

if ( meEEtpdigis_[i] ) meEEtpdigis_[i]->Reset();
}
Expand Down

0 comments on commit dc47c94

Please sign in to comment.