CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Typedefs | Functions | Variables
DQMHistPlotter.cc File Reference
#include "Validation/RecoTau/plugins/DQMHistPlotter.h"
#include "Validation/RecoTau/plugins/dqmAuxFunctions.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "DQMServices/Core/interface/MonitorElement.h"
#include <TCanvas.h>
#include <TPad.h>
#include <TPostScript.h>
#include <TStyle.h>
#include <TROOT.h>
#include <TMath.h>
#include <iostream>
#include "FWCore/Framework/interface/MakerMacros.h"

Go to the source code of this file.

Typedefs

typedef std::pair< TH1
*, std::string > 
histoDrawEntry
 

Functions

template<class T >
void checkCfgDef (const std::string &cfgEntryName, std::map< std::string, T > &def, int &errorFlag, const std::string &defType, const std::string &drawJobName)
 
template<class T >
void checkCfgDefs (const std::vector< std::string > &cfgEntryNames, std::map< std::string, T > &def, int &errorFlag, const std::string &defType, const std::string &drawJobName)
 
void drawHistograms (const std::list< histoDrawEntry > &histogramList, bool &isFirstHistogram)
 
bool find_vstring (const std::vector< std::string > &vs, const std::string &s)
 
template<class T >
const TfindCfgDef (const std::string &cfgEntryName, std::map< std::string, T > &def, const std::string &defType, const std::string &drawJobName)
 
static const
edm::ParameterSetDescriptionFillerPluginFactory::PMaker
< edm::ParameterSetDescriptionFiller
< TauDQMHistPlotter > > 
s_filler__LINE__ ("TauDQMHistPlotter")
 
static const
edm::MakerPluginFactory::PMaker
< edm::WorkerMaker
< TauDQMHistPlotter > > 
s_maker__LINE__ ("TauDQMHistPlotter")
 

Variables

const int defaultCanvasSizeX = 800
 
const int defaultCanvasSizeY = 600
 
const std::string defaultDrawOption = ""
 
const std::string defaultDrawOptionLegend = "lpf"
 
const int defaultFillColor = 0
 
const int defaultFillStyle = 1001
 
const int defaultLabelBorderSize = 0
 
const int defaultLabelFillColor = 0
 
const std::string defaultLabelOptions = "brNDC"
 
const double defaultLabelPosX = 0.66
 
const double defaultLabelPosY = 0.82
 
const double defaultLabelSizeX = 0.26
 
const double defaultLabelSizeY = 0.10
 
const int defaultLabelTextAlign = 22
 
const double defaultLabelTextAngle = 0.
 
const int defaultLabelTextColor = 1
 
const double defaultLabelTextSize = 0.05
 
const int defaultLegendBorderSize = 0
 
const int defaultLegendFillColor = 0
 
const std::string defaultLegendHeader = ""
 
const std::string defaultLegendOptions = "brNDC"
 
const double defaultLegendPosX = 0.50
 
const double defaultLegendPosY = 0.55
 
const double defaultLegendSizeX = 0.39
 
const double defaultLegendSizeY = 0.34
 
const int defaultLineColor = 0
 
const int defaultLineStyle = 1
 
const int defaultLineWidth = 2
 
const int defaultMarkerColor = 1
 
const int defaultMarkerSize = 1
 
const int defaultMarkerStyle = 2
 
const double defaultMaxX = -1.
 
const double defaultMaxY_linear = -1.
 
const double defaultMaxY_log = -1.
 
const double defaultMinX = -1.
 
const double defaultMinY_linear = 0.
 
const double defaultMinY_log = 1.e-2
 
const double defaultXaxisTitleOffset = 1.0
 
const double defaultXaxisTitleSize = 0.05
 
const double defaultYaxisMaximumScaleFactor_linear = 1.6
 
const double defaultYaxisMaximumScaleFactor_log = 5.e+2
 
const double defaultYaxisTitleOffset = 1.0
 
const double defaultYaxisTitleSize = 0.05
 
const std::string defaultYscale = yScale_linear
 
const std::string drawOption_eBand = "eBand"
 
const std::string drawOptionSeparator = "#.#"
 
const std::string type_bsmMC = "bsmMC"
 
const std::string type_Data = "Data"
 
const std::string type_smMC = "smMC"
 
const std::string type_smSumMC = "smSumMC"
 
const int verbosity = 0
 
const std::string yScale_linear = "linear"
 
const std::string yScale_log = "log"
 

Typedef Documentation

typedef std::pair<TH1*, std::string> histoDrawEntry

Definition at line 132 of file DQMHistPlotter.cc.

Function Documentation

template<class T >
void checkCfgDef ( const std::string &  cfgEntryName,
std::map< std::string, T > &  def,
int &  errorFlag,
const std::string &  defType,
const std::string &  drawJobName 
)

Definition at line 96 of file DQMHistPlotter.cc.

Referenced by checkCfgDefs().

98 {
99  if ( def.find(cfgEntryName) == def.end() ) {
100  edm::LogError ("checkCfgDef") << " " << defType << " = " << cfgEntryName << " undefined, needed by drawJob = " << drawJobName << " !!";
101  errorFlag = 1;
102  }
103 }
JetCorrectorParameters::Definitions def
Definition: classes.h:6
template<class T >
void checkCfgDefs ( const std::vector< std::string > &  cfgEntryNames,
std::map< std::string, T > &  def,
int &  errorFlag,
const std::string &  defType,
const std::string &  drawJobName 
)

Definition at line 106 of file DQMHistPlotter.cc.

References checkCfgDef().

108 {
109  for ( std::vector<std::string>::const_iterator cfgEntryName = cfgEntryNames.begin();
110  cfgEntryName != cfgEntryNames.end(); ++cfgEntryName ) {
111  checkCfgDef(*cfgEntryName, def, errorFlag, defType, drawJobName);
112  }
113 }
void checkCfgDef(const std::string &cfgEntryName, std::map< std::string, T > &def, int &errorFlag, const std::string &defType, const std::string &drawJobName)
JetCorrectorParameters::Definitions def
Definition: classes.h:6
void drawHistograms ( const std::list< histoDrawEntry > &  histogramList,
bool &  isFirstHistogram 
)

Definition at line 134 of file DQMHistPlotter.cc.

References histoStyle::drawOption, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by TauDQMHistPlotter::endRun().

135 {
136  for ( std::list<histoDrawEntry>::const_iterator it = histogramList.begin();
137  it != histogramList.end(); ++it ) {
138  std::string drawOption = ( isFirstHistogram ) ? it->second : std::string(it->second).append("same");
139  it->first->Draw(drawOption.data());
140  isFirstHistogram = false;
141  }
142 }
string drawOption
Definition: histoStyle.py:55
bool find_vstring ( const std::vector< std::string > &  vs,
const std::string &  s 
)

Definition at line 148 of file DQMHistPlotter.cc.

References alignCSCRings::s.

Referenced by TauDQMHistPlotter::TauDQMHistPlotter().

149 {
150  for ( std::vector<std::string>::const_iterator it = vs.begin();
151  it != vs.end(); ++it ) {
152  if ( (*it) == s ) return true;
153  }
154  return false;
155 }
template<class T >
const T* findCfgDef ( const std::string &  cfgEntryName,
std::map< std::string, T > &  def,
const std::string &  defType,
const std::string &  drawJobName 
)

Definition at line 116 of file DQMHistPlotter.cc.

References NULL.

118 {
119  typename std::map<std::string, T>::const_iterator it = def.find(cfgEntryName);
120  if ( it != def.end() ) {
121  return &(it->second);
122  } else {
123  edm::LogError ("findCfgDef") << " " << defType << " = " << cfgEntryName << " undefined, needed by drawJob = " << drawJobName << " !!";
124  return NULL;
125  }
126 }
#define NULL
Definition: scimark2.h:8
JetCorrectorParameters::Definitions def
Definition: classes.h:6
static const edm::ParameterSetDescriptionFillerPluginFactory::PMaker<edm::ParameterSetDescriptionFiller< TauDQMHistPlotter > > s_filler__LINE__ ( "TauDQMHistPlotter"  )
static
static const edm::MakerPluginFactory ::PMaker< edm::WorkerMaker< TauDQMHistPlotter > > s_maker__LINE__ ( "TauDQMHistPlotter"  )
static

Variable Documentation

const int defaultCanvasSizeX = 800

Definition at line 88 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::TauDQMHistPlotter().

const int defaultCanvasSizeY = 600

Definition at line 89 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::TauDQMHistPlotter().

const std::string defaultDrawOption = ""
const std::string defaultDrawOptionLegend = "lpf"
const int defaultFillColor = 0
const int defaultFillStyle = 1001
const int defaultLabelBorderSize = 0

Definition at line 66 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const int defaultLabelFillColor = 0

Definition at line 67 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const std::string defaultLabelOptions = "brNDC"

Definition at line 65 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const double defaultLabelPosX = 0.66

Definition at line 61 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const double defaultLabelPosY = 0.82

Definition at line 62 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const double defaultLabelSizeX = 0.26

Definition at line 63 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const double defaultLabelSizeY = 0.10

Definition at line 64 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const int defaultLabelTextAlign = 22

Definition at line 70 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const double defaultLabelTextAngle = 0.

Definition at line 71 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const int defaultLabelTextColor = 1

Definition at line 68 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const double defaultLabelTextSize = 0.05

Definition at line 69 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLabel::cfgEntryLabel().

const int defaultLegendBorderSize = 0

Definition at line 57 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLegend::cfgEntryLegend().

const int defaultLegendFillColor = 0

Definition at line 58 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLegend::cfgEntryLegend().

const std::string defaultLegendHeader = ""

Definition at line 55 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLegend::cfgEntryLegend().

const std::string defaultLegendOptions = "brNDC"

Definition at line 56 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryLegend::cfgEntryLegend().

const double defaultLegendPosX = 0.50
const double defaultLegendPosY = 0.55
const double defaultLegendSizeX = 0.39
const double defaultLegendSizeY = 0.34
const int defaultLineColor = 0
const int defaultLineStyle = 1
const int defaultLineWidth = 2
const int defaultMarkerColor = 1
const int defaultMarkerSize = 1
const int defaultMarkerStyle = 2
const double defaultMaxX = -1.
const double defaultMaxY_linear = -1.
const double defaultMaxY_log = -1.
const double defaultMinX = -1.
const double defaultMinY_linear = 0.

Definition at line 36 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisY::cfgEntryAxisY().

const double defaultMinY_log = 1.e-2

Definition at line 37 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisY::cfgEntryAxisY().

const double defaultXaxisTitleOffset = 1.0

Definition at line 32 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisX::cfgEntryAxisX().

const double defaultXaxisTitleSize = 0.05

Definition at line 33 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisX::cfgEntryAxisX().

const double defaultYaxisMaximumScaleFactor_linear = 1.6

Definition at line 45 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisY::applyTo().

const double defaultYaxisMaximumScaleFactor_log = 5.e+2

Definition at line 46 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisY::applyTo().

const double defaultYaxisTitleOffset = 1.0

Definition at line 43 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisY::cfgEntryAxisY().

const double defaultYaxisTitleSize = 0.05

Definition at line 44 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisY::cfgEntryAxisY().

const std::string defaultYscale = yScale_linear

Definition at line 42 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::cfgEntryAxisY::cfgEntryAxisY().

const std::string drawOption_eBand = "eBand"

Definition at line 85 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::endRun().

const std::string drawOptionSeparator = "#.#"

Definition at line 91 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::TauDQMHistPlotter().

const std::string type_bsmMC = "bsmMC"
const std::string type_Data = "Data"
const std::string type_smMC = "smMC"
const std::string type_smSumMC = "smSumMC"
const int verbosity = 0

Definition at line 93 of file DQMHistPlotter.cc.

const std::string yScale_linear = "linear"

Definition at line 40 of file DQMHistPlotter.cc.

const std::string yScale_log = "log"