CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups 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 122 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  //if ( verbosity ) print();
482 }
tuple process
Definition: LaserDQM_cfg.py:3
TauDQMHistPlotter::plotDefEntry::plotDefEntry ( const plotDefEntry blueprint)

Definition at line 484 of file DQMHistPlotter.cc.

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

Member Function Documentation

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

Definition at line 495 of file DQMHistPlotter.cc.

References gather_cfg::cout.

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

Member Data Documentation

bool TauDQMHistPlotter::plotDefEntry::doStack_

Definition at line 132 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::plotDefEntry::dqmMonitorElement_

Definition at line 127 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::plotDefEntry::drawOptionEntry_

Definition at line 128 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

bool TauDQMHistPlotter::plotDefEntry::isErrorBand_

Definition at line 133 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

std::string TauDQMHistPlotter::plotDefEntry::legendEntry_

Definition at line 129 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

std::string TauDQMHistPlotter::plotDefEntry::legendEntryErrorBand_

Definition at line 130 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().

std::string TauDQMHistPlotter::plotDefEntry::process_

Definition at line 131 of file DQMHistPlotter.h.

Referenced by TauDQMHistPlotter::endRun().