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)
 
 DEFINE_FWK_MODULE (TauDQMHistPlotter)
 
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)
 

Variables

const int defaultCanvasSizeX = 800
 
const int defaultCanvasSizeY = 600
 
const bool defaultDoOverlayPlots = false
 
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 defaultScaleFactor = 1.
 
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 136 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 100 of file DQMHistPlotter.cc.

Referenced by checkCfgDefs().

102 {
103  if ( def.find(cfgEntryName) == def.end() ) {
104  edm::LogError ("checkCfgDef") << " " << defType << " = " << cfgEntryName << " undefined, needed by drawJob = " << drawJobName << " !!";
105  errorFlag = 1;
106  }
107 }
JetCorrectorParameters::Definitions def
Definition: classes.h:10
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 110 of file DQMHistPlotter.cc.

References checkCfgDef().

112 {
113  for ( std::vector<std::string>::const_iterator cfgEntryName = cfgEntryNames.begin();
114  cfgEntryName != cfgEntryNames.end(); ++cfgEntryName ) {
115  checkCfgDef(*cfgEntryName, def, errorFlag, defType, drawJobName);
116  }
117 }
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:10
DEFINE_FWK_MODULE ( TauDQMHistPlotter  )
void drawHistograms ( const std::list< histoDrawEntry > &  histogramList,
bool &  isFirstHistogram 
)

Definition at line 138 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::endRun().

139 {
140  for ( std::list<histoDrawEntry>::const_iterator it = histogramList.begin();
141  it != histogramList.end(); ++it ) {
142  std::string drawOption = ( isFirstHistogram ) ? it->second : std::string(it->second).append("same");
143  it->first->Draw(drawOption.data());
144  isFirstHistogram = false;
145  }
146 }
bool find_vstring ( const std::vector< std::string > &  vs,
const std::string &  s 
)

Definition at line 152 of file DQMHistPlotter.cc.

References alignCSCRings::s.

Referenced by TauDQMHistPlotter::TauDQMHistPlotter().

153 {
154  for ( std::vector<std::string>::const_iterator it = vs.begin();
155  it != vs.end(); ++it ) {
156  if ( (*it) == s ) return true;
157  }
158  return false;
159 }
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 120 of file DQMHistPlotter.cc.

References NULL.

122 {
123  typename std::map<std::string, T>::const_iterator it = def.find(cfgEntryName);
124  if ( it != def.end() ) {
125  return &(it->second);
126  } else {
127  edm::LogError ("findCfgDef") << " " << defType << " = " << cfgEntryName << " undefined, needed by drawJob = " << drawJobName << " !!";
128  return NULL;
129  }
130 }
#define NULL
Definition: scimark2.h:8
JetCorrectorParameters::Definitions def
Definition: classes.h:10

Variable Documentation

const int defaultCanvasSizeX = 800

Definition at line 92 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::TauDQMHistPlotter().

const int defaultCanvasSizeY = 600

Definition at line 93 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::TauDQMHistPlotter().

const bool defaultDoOverlayPlots = false

Definition at line 89 of file DQMHistPlotter.cc.

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

Definition at line 67 of file DQMHistPlotter.cc.

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

const int defaultLabelFillColor = 0

Definition at line 68 of file DQMHistPlotter.cc.

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

const std::string defaultLabelOptions = "brNDC"

Definition at line 66 of file DQMHistPlotter.cc.

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

const double defaultLabelPosX = 0.66

Definition at line 62 of file DQMHistPlotter.cc.

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

const double defaultLabelPosY = 0.82

Definition at line 63 of file DQMHistPlotter.cc.

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

const double defaultLabelSizeX = 0.26

Definition at line 64 of file DQMHistPlotter.cc.

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

const double defaultLabelSizeY = 0.10

Definition at line 65 of file DQMHistPlotter.cc.

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

const int defaultLabelTextAlign = 22

Definition at line 71 of file DQMHistPlotter.cc.

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

const double defaultLabelTextAngle = 0.

Definition at line 72 of file DQMHistPlotter.cc.

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

const int defaultLabelTextColor = 1

Definition at line 69 of file DQMHistPlotter.cc.

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

const double defaultLabelTextSize = 0.05

Definition at line 70 of file DQMHistPlotter.cc.

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

const int defaultLegendBorderSize = 0

Definition at line 58 of file DQMHistPlotter.cc.

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

const int defaultLegendFillColor = 0

Definition at line 59 of file DQMHistPlotter.cc.

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

const std::string defaultLegendHeader = ""

Definition at line 56 of file DQMHistPlotter.cc.

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

const std::string defaultLegendOptions = "brNDC"

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

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

const double defaultMinY_log = 1.e-2

Definition at line 38 of file DQMHistPlotter.cc.

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

const double defaultScaleFactor = 1.

Definition at line 24 of file DQMHistPlotter.cc.

const double defaultXaxisTitleOffset = 1.0

Definition at line 33 of file DQMHistPlotter.cc.

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

const double defaultXaxisTitleSize = 0.05

Definition at line 34 of file DQMHistPlotter.cc.

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

const double defaultYaxisMaximumScaleFactor_linear = 1.6

Definition at line 46 of file DQMHistPlotter.cc.

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

const double defaultYaxisMaximumScaleFactor_log = 5.e+2

Definition at line 47 of file DQMHistPlotter.cc.

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

const double defaultYaxisTitleOffset = 1.0

Definition at line 44 of file DQMHistPlotter.cc.

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

const double defaultYaxisTitleSize = 0.05

Definition at line 45 of file DQMHistPlotter.cc.

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

const std::string defaultYscale = yScale_linear

Definition at line 43 of file DQMHistPlotter.cc.

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

const std::string drawOption_eBand = "eBand"

Definition at line 86 of file DQMHistPlotter.cc.

Referenced by TauDQMHistPlotter::endRun().

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

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

const std::string yScale_linear = "linear"

Definition at line 41 of file DQMHistPlotter.cc.

const std::string yScale_log = "log"