Skip to content

Commit

Permalink
fix hist Draw option for Strip monitoring tool
Browse files Browse the repository at this point in the history
  • Loading branch information
boudoul committed Apr 10, 2017
1 parent aec98a6 commit 0905af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQM/SiStripMonitorSummary/bin/makeModulePlots.cc
Expand Up @@ -81,7 +81,7 @@ int main(int argc, char *argv[]) {
void printPlot(TH1D* hist, char* prefix, char* postfix) {

TCanvas* cc= new TCanvas;
hist->Draw();
hist->Draw("hist");
std::stringstream filename;
filename << prefix << hist->GetName() << postfix << ".png";
cc->Print(filename.str().c_str());
Expand Down

0 comments on commit 0905af7

Please sign in to comment.