CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 128 of file DQMHistPlotter.h.

Constructor & Destructor Documentation

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 468 of file DQMHistPlotter.cc.

474  : dqmMonitorElement_(dqmMonitorElement),
475  drawOptionEntry_(drawOptionEntry),
476  legendEntry_(legendEntry),
477  legendEntryErrorBand_(legendEntryErrorBand),
478  process_(process),
479  doStack_(doStack),
480  isErrorBand_(false)
481 {
482  //if ( verbosity ) print();
483 }
tuple process
Definition: LaserDQM_cfg.py:3
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 {
494  //if ( verbosity ) print();
495 }

Member Function Documentation

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

Definition at line 497 of file DQMHistPlotter.cc.

References gather_cfg::cout.

498 {
499  std::cout << "<TauDQMHistPlotter::plotDefEntry::print>:" << std::endl;
500  std::cout << " dqmMonitorElement = " << dqmMonitorElement_ << std::endl;
501  std::cout << " drawOptionEntry = " << drawOptionEntry_ << std::endl;
502  std::cout << " legendEntry = " << legendEntry_ << std::endl;
503  std::cout << " legendEntryErrorBand = " << legendEntryErrorBand_ << std::endl;
504  std::cout << " process = " << process_ << std::endl;
505  std::cout << " doStack = " << doStack_ << std::endl;
506 }
tuple cout
Definition: gather_cfg.py:121

Member Data Documentation

bool TauDQMHistPlotter::plotDefEntry::doStack_

Definition at line 138 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::plotDefEntry::dqmMonitorElement_

Definition at line 133 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::plotDefEntry::drawOptionEntry_

Definition at line 134 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

bool TauDQMHistPlotter::plotDefEntry::isErrorBand_

Definition at line 139 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

std::string TauDQMHistPlotter::plotDefEntry::legendEntry_

Definition at line 135 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

std::string TauDQMHistPlotter::plotDefEntry::legendEntryErrorBand_

Definition at line 136 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

std::string TauDQMHistPlotter::plotDefEntry::process_

Definition at line 137 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().