CMS 3D CMS Logo

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

Public Member Functions

void applyTo (TLegend *) const
 
 cfgEntryLegend (const std::string &, const edm::ParameterSet &)
 
void print () const
 

Public Attributes

int borderSize_
 
int fillColor_
 
std::string header_
 
std::string name_
 
std::string option_
 
double posX_
 
double posY_
 
double sizeX_
 
double sizeY_
 

Detailed Description

Definition at line 71 of file DQMHistPlotter.h.

Constructor & Destructor Documentation

TauDQMHistPlotter::cfgEntryLegend::cfgEntryLegend ( const std::string &  name,
const edm::ParameterSet cfg 
)

Definition at line 286 of file DQMHistPlotter.cc.

References defaultLegendBorderSize, defaultLegendFillColor, defaultLegendHeader, defaultLegendOptions, defaultLegendPosX, defaultLegendPosY, defaultLegendSizeX, defaultLegendSizeY, edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), dataset::name, TauDQMHistPlotter::cfgEntryProcess::name_, TauDQMHistPlotter::cfgEntryProcess::print(), AlCaHLTBitMon_QueryRunRegistry::string, and verbosity.

287 {
288  name_ = name;
289 
290  posX_ = ( cfg.exists("posX") ) ? cfg.getParameter<double>("posX") : defaultLegendPosX;
291  posY_ = ( cfg.exists("posY") ) ? cfg.getParameter<double>("posY") : defaultLegendPosY;
292  sizeX_ = ( cfg.exists("sizeX") ) ? cfg.getParameter<double>("sizeX") : defaultLegendSizeX;
293  sizeY_ = ( cfg.exists("sizeY") ) ? cfg.getParameter<double>("sizeY") : defaultLegendSizeY;
294  header_ = ( cfg.exists("header") ) ? cfg.getParameter<std::string>("header") : defaultLegendHeader;
295  option_ = ( cfg.exists("option") ) ? cfg.getParameter<std::string>("option") : defaultLegendOptions;
296  borderSize_ = ( cfg.exists("borderSize") ) ? cfg.getParameter<int>("borderSize") : defaultLegendBorderSize;
297  fillColor_ = ( cfg.exists("fillColor") ) ? cfg.getParameter<int>("fillColor") : defaultLegendFillColor;
298 
299  if ( verbosity ) print();
300 }
T getParameter(std::string const &) const
bool exists(std::string const &parameterName) const
checks if a parameter exists
const double defaultLegendSizeX
const std::string defaultLegendOptions
const std::string defaultLegendHeader
const double defaultLegendSizeY
const double defaultLegendPosX
const int defaultLegendFillColor
const int defaultLegendBorderSize
const int verbosity
const double defaultLegendPosY

Member Function Documentation

void TauDQMHistPlotter::cfgEntryLegend::applyTo ( TLegend *  legend) const

Definition at line 316 of file DQMHistPlotter.cc.

317 {
318  if ( legend ) {
319  legend->SetX1(posX_);
320  legend->SetY1(posY_);
321  legend->SetX2(posX_ + sizeX_);
322  legend->SetY2(posY_ + sizeY_);
323  legend->SetHeader(header_.data());
324  legend->SetOption(option_.data());
325  legend->SetBorderSize(borderSize_);
326  legend->SetFillColor(fillColor_);
327  }
328 }
void TauDQMHistPlotter::cfgEntryLegend::print ( void  ) const

Definition at line 302 of file DQMHistPlotter.cc.

References gather_cfg::cout, and TauDQMHistPlotter::cfgEntryProcess::name_.

303 {
304  std::cout << "<TauDQMHistPlotter::cfgEntryLegend::print>:" << std::endl;
305  std::cout << " name = " << name_ << std::endl;
306  std::cout << " posX = " << posX_ << std::endl;
307  std::cout << " posY = " << posY_ << std::endl;
308  std::cout << " sizeX = " << sizeX_ << std::endl;
309  std::cout << " sizeY = " << sizeY_ << std::endl;
310  std::cout << " header = " << header_ << std::endl;
311  std::cout << " option = " << option_ << std::endl;
312  std::cout << " borderSize = " << borderSize_ << std::endl;
313  std::cout << " fillColor = " << fillColor_ << std::endl;
314 }

Member Data Documentation

int TauDQMHistPlotter::cfgEntryLegend::borderSize_

Definition at line 83 of file DQMHistPlotter.h.

int TauDQMHistPlotter::cfgEntryLegend::fillColor_

Definition at line 84 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::cfgEntryLegend::header_

Definition at line 81 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::cfgEntryLegend::name_

Definition at line 76 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::cfgEntryLegend::option_

Definition at line 82 of file DQMHistPlotter.h.

double TauDQMHistPlotter::cfgEntryLegend::posX_

Definition at line 77 of file DQMHistPlotter.h.

double TauDQMHistPlotter::cfgEntryLegend::posY_

Definition at line 78 of file DQMHistPlotter.h.

double TauDQMHistPlotter::cfgEntryLegend::sizeX_

Definition at line 79 of file DQMHistPlotter.h.

double TauDQMHistPlotter::cfgEntryLegend::sizeY_

Definition at line 80 of file DQMHistPlotter.h.