CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
TauDQMHistPlotter::plotDefEntry Struct Reference

Public Member Functions

 plotDefEntry (const std::string &, const std::string &, const std::string &, const std::string &, const std::string &, bool)
 
 plotDefEntry (const plotDefEntry &)
 
void print () const
 

Public Attributes

bool doStack_
 
std::string dqmMonitorElement_
 
std::string drawOptionEntry_
 
bool isErrorBand_
 
std::string legendEntry_
 
std::string legendEntryErrorBand_
 
std::string process_
 

Detailed Description

Definition at line 122 of file DQMHistPlotter.h.

Constructor & Destructor Documentation

◆ plotDefEntry() [1/2]

TauDQMHistPlotter::plotDefEntry::plotDefEntry ( const std::string &  dqmMonitorElement,
const std::string &  drawOptionEntry,
const std::string &  legendEntry,
const std::string &  legendEntryErrorBand,
const std::string &  process,
bool  doStack 
)

Definition at line 469 of file DQMHistPlotter.cc.

475  : dqmMonitorElement_(dqmMonitorElement),
476  drawOptionEntry_(drawOptionEntry),
478  legendEntryErrorBand_(legendEntryErrorBand),
479  process_(process),
480  doStack_(doStack),
481  isErrorBand_(false) {
482  //if ( verbosity ) print();
483 }

◆ plotDefEntry() [2/2]

TauDQMHistPlotter::plotDefEntry::plotDefEntry ( const plotDefEntry blueprint)

Definition at line 485 of file DQMHistPlotter.cc.

486  : dqmMonitorElement_(blueprint.dqmMonitorElement_),
487  drawOptionEntry_(blueprint.drawOptionEntry_),
488  legendEntry_(blueprint.legendEntry_),
489  legendEntryErrorBand_(blueprint.legendEntryErrorBand_),
490  process_(blueprint.process_),
491  doStack_(blueprint.doStack_),
492  isErrorBand_(false) {
493  //if ( verbosity ) print();
494 }

Member Function Documentation

◆ print()

void TauDQMHistPlotter::plotDefEntry::print ( void  ) const

Definition at line 496 of file DQMHistPlotter.cc.

References gather_cfg::cout.

496  {
497  std::cout << "<TauDQMHistPlotter::plotDefEntry::print>:" << std::endl;
498  std::cout << " dqmMonitorElement = " << dqmMonitorElement_ << std::endl;
499  std::cout << " drawOptionEntry = " << drawOptionEntry_ << std::endl;
500  std::cout << " legendEntry = " << legendEntry_ << std::endl;
501  std::cout << " legendEntryErrorBand = " << legendEntryErrorBand_ << std::endl;
502  std::cout << " process = " << process_ << std::endl;
503  std::cout << " doStack = " << doStack_ << std::endl;
504 }

Member Data Documentation

◆ doStack_

bool TauDQMHistPlotter::plotDefEntry::doStack_

Definition at line 132 of file DQMHistPlotter.h.

◆ dqmMonitorElement_

std::string TauDQMHistPlotter::plotDefEntry::dqmMonitorElement_

Definition at line 127 of file DQMHistPlotter.h.

◆ drawOptionEntry_

std::string TauDQMHistPlotter::plotDefEntry::drawOptionEntry_

Definition at line 128 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

◆ isErrorBand_

bool TauDQMHistPlotter::plotDefEntry::isErrorBand_

Definition at line 133 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

◆ legendEntry_

std::string TauDQMHistPlotter::plotDefEntry::legendEntry_

Definition at line 129 of file DQMHistPlotter.h.

◆ legendEntryErrorBand_

std::string TauDQMHistPlotter::plotDefEntry::legendEntryErrorBand_

Definition at line 130 of file DQMHistPlotter.h.

◆ process_

std::string TauDQMHistPlotter::plotDefEntry::process_

Definition at line 131 of file DQMHistPlotter.h.