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::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 70 of file DQMHistPlotter.h.

Constructor & Destructor Documentation

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

Definition at line 288 of file DQMHistPlotter.cc.

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

288  {
289  name_ = name;
290 
291  posX_ = (cfg.exists("posX")) ? cfg.getParameter<double>("posX") : defaultLegendPosX;
292  posY_ = (cfg.exists("posY")) ? cfg.getParameter<double>("posY") : defaultLegendPosY;
293  sizeX_ = (cfg.exists("sizeX")) ? cfg.getParameter<double>("sizeX") : defaultLegendSizeX;
294  sizeY_ = (cfg.exists("sizeY")) ? cfg.getParameter<double>("sizeY") : defaultLegendSizeY;
295  header_ = (cfg.exists("header")) ? cfg.getParameter<std::string>("header") : defaultLegendHeader;
296  option_ = (cfg.exists("option")) ? cfg.getParameter<std::string>("option") : defaultLegendOptions;
297  borderSize_ = (cfg.exists("borderSize")) ? cfg.getParameter<int>("borderSize") : defaultLegendBorderSize;
298  fillColor_ = (cfg.exists("fillColor")) ? cfg.getParameter<int>("fillColor") : defaultLegendFillColor;
299 
300  if (verbosity)
301  print();
302 }
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
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
const int defaultLegendFillColor
const int defaultLegendBorderSize
const double defaultLegendPosY

Member Function Documentation

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

Definition at line 317 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 304 of file DQMHistPlotter.cc.

References gather_cfg::cout.

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

Member Data Documentation

int TauDQMHistPlotter::cfgEntryLegend::borderSize_

Definition at line 81 of file DQMHistPlotter.h.

int TauDQMHistPlotter::cfgEntryLegend::fillColor_

Definition at line 82 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::cfgEntryLegend::header_

Definition at line 79 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::cfgEntryLegend::name_

Definition at line 74 of file DQMHistPlotter.h.

std::string TauDQMHistPlotter::cfgEntryLegend::option_

Definition at line 80 of file DQMHistPlotter.h.

double TauDQMHistPlotter::cfgEntryLegend::posX_

Definition at line 75 of file DQMHistPlotter.h.

double TauDQMHistPlotter::cfgEntryLegend::posY_

Definition at line 76 of file DQMHistPlotter.h.

double TauDQMHistPlotter::cfgEntryLegend::sizeX_

Definition at line 77 of file DQMHistPlotter.h.

double TauDQMHistPlotter::cfgEntryLegend::sizeY_

Definition at line 78 of file DQMHistPlotter.h.