CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Attributes
DiLeptonHelp::PlotsVsKinematics Class Reference

#include <DiLeptonVertexHelpers.h>

Public Member Functions

void bookFromPSet (const TFileDirectory &fs, const edm::ParameterSet &hpar)
 
void bookPlots (TFileDirectory &fs, const float valmin, const float valmax, const int nxbins, const int nybins)
 
void fillPlots (const float val, const std::pair< TLorentzVector, TLorentzVector > &momenta)
 
 PlotsVsKinematics (flavour FLAV)
 
 PlotsVsKinematics (flavour FLAV, const std::string &name, const std::string &tt, const std::string &ytt)
 
 ~PlotsVsKinematics ()=default
 

Private Types

enum  xAxis {
  Z_PHI, Z_ETA, LP_PHI, LP_ETA,
  LM_PHI, LM_ETA
}
 

Private Attributes

const std::vector< xAxisaxisChoices
 
flavour m_flav
 
std::map< xAxis, TH2F * > m_h2_map
 
bool m_isBooked
 
const std::string m_name
 
const std::string m_title
 
const std::string m_ytitle
 

Detailed Description

Definition at line 180 of file DiLeptonVertexHelpers.h.

Member Enumeration Documentation

◆ xAxis

Constructor & Destructor Documentation

◆ PlotsVsKinematics() [1/2]

DiLeptonHelp::PlotsVsKinematics::PlotsVsKinematics ( flavour  FLAV)
inline

◆ PlotsVsKinematics() [2/2]

DiLeptonHelp::PlotsVsKinematics::PlotsVsKinematics ( flavour  FLAV,
const std::string &  name,
const std::string &  tt,
const std::string &  ytt 
)
inline

Definition at line 186 of file DiLeptonVertexHelpers.h.

References m_flav.

187  : m_name(name), m_title(tt), m_ytitle(ytt), m_isBooked(false), m_flav(FLAV) {
188  if (m_flav < 0) {
189  edm::LogError("PlotsVsKinematics") << "The initialization flavour is not correct!" << std::endl;
190  }
191  }
Log< level::Error, false > LogError
Definition: TTTypes.h:54

◆ ~PlotsVsKinematics()

DiLeptonHelp::PlotsVsKinematics::~PlotsVsKinematics ( )
default

Member Function Documentation

◆ bookFromPSet()

void DiLeptonHelp::PlotsVsKinematics::bookFromPSet ( const TFileDirectory fs,
const edm::ParameterSet hpar 
)
inline

Definition at line 196 of file DiLeptonVertexHelpers.h.

References axisChoices, Exception, compareTotals::fs, edm::ParameterSet::getParameter(), m_flav, m_h2_map, m_isBooked, M_PI, AlCaHLTBitMon_QueryRunRegistry::string, TrackerOfflineValidation_Dqm_cff::xmax, and TrackerOfflineValidation_Dqm_cff::xmin.

Referenced by DiMuonVertexValidation::beginJob(), and DiElectronVertexValidation::beginJob().

196  {
197  std::string namePostfix;
198  std::string titlePostfix;
199  float xmin, xmax;
200 
201  std::string sed = (m_flav ? "e" : "#mu");
202 
203  for (const auto& xAx : axisChoices) {
204  switch (xAx) {
205  case xAxis::Z_PHI:
206  xmin = -M_PI;
207  xmax = M_PI;
208  namePostfix = m_flav ? "EEPhi" : "MMPhi";
209  titlePostfix = fmt::sprintf("%s%s pair #phi;%s^{+}%s^{-} #phi", sed, sed, sed, sed);
210  break;
211  case xAxis::Z_ETA:
212  xmin = -3.5;
213  xmax = 3.5;
214  namePostfix = m_flav ? "EEEta" : "MuMuEta";
215  titlePostfix = fmt::sprintf("%s%s pair #eta;%s^{+}%s^{-} #eta", sed, sed, sed, sed);
216  break;
217  case xAxis::LP_PHI:
218  xmin = -M_PI;
219  xmax = M_PI;
220  namePostfix = m_flav ? "EPlusPhi" : "MuPlusPhi";
221  titlePostfix = fmt::sprintf("%s^{+} #phi;%s^{+} #phi [rad]", sed, sed);
222  break;
223  case xAxis::LP_ETA:
224  xmin = -2.4;
225  xmax = 2.4;
226  namePostfix = m_flav ? "EPlusEta" : "MuPlusEta";
227  titlePostfix = fmt::sprintf("%s^{+} #eta;%s^{+} #eta", sed, sed);
228  break;
229  case xAxis::LM_PHI:
230  xmin = -M_PI;
231  xmax = M_PI;
232  namePostfix = m_flav ? "EMinusPhi" : "MuMinusPhi";
233  titlePostfix = fmt::sprintf("%s^{-} #phi;%s^{-} #phi [rad]", sed, sed);
234  break;
235  case xAxis::LM_ETA:
236  xmin = -2.4;
237  xmax = 2.4;
238  namePostfix = m_flav ? "EMinusEta" : "MuMinusEta";
239  titlePostfix = fmt::sprintf("%s^{-} #eta;%s^{+} #eta", sed, sed);
240  break;
241  default:
242  throw cms::Exception("LogicalError") << " there is not such Axis choice as " << xAx;
243  }
244 
245  const auto& h2name = fmt::sprintf("%sVs%s", hpar.getParameter<std::string>("name"), namePostfix);
246  const auto& h2title = fmt::sprintf("%s vs %s;%s% s",
247  hpar.getParameter<std::string>("title"),
248  titlePostfix,
249  hpar.getParameter<std::string>("title"),
250  hpar.getParameter<std::string>("yUnits"));
251 
252  m_h2_map[xAx] = fs.make<TH2F>(h2name.c_str(),
253  h2title.c_str(),
254  hpar.getParameter<int32_t>("NxBins"),
255  xmin,
256  xmax,
257  hpar.getParameter<int32_t>("NyBins"),
258  hpar.getParameter<double>("ymin"),
259  hpar.getParameter<double>("ymax"));
260  }
261 
262  // flip the is booked bit
263  m_isBooked = true;
264  }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
std::map< xAxis, TH2F * > m_h2_map
const std::vector< xAxis > axisChoices
#define M_PI

◆ bookPlots()

void DiLeptonHelp::PlotsVsKinematics::bookPlots ( TFileDirectory fs,
const float  valmin,
const float  valmax,
const int  nxbins,
const int  nybins 
)
inline

Definition at line 267 of file DiLeptonVertexHelpers.h.

References ALPAKA_ACCELERATOR_NAMESPACE::brokenline::constexpr(), compareTotals::fs, m_flav, m_h2_map, m_isBooked, m_name, M_PI, m_title, m_ytitle, and AlCaHLTBitMon_QueryRunRegistry::string.

268  {
269  if (m_name.empty() && m_title.empty() && m_ytitle.empty()) {
270  edm::LogError("PlotsVsKinematics")
271  << "In" << __FUNCTION__ << "," << __LINE__
272  << "trying to book plots without the right constructor being called!" << std::endl;
273  return;
274  }
275 
276  std::string dilep = (m_flav ? "e^{+}e^{-}" : "#mu^{+}#mu^{-}");
277  std::string lep = (m_flav ? "e^{+}" : "#mu^{+}");
278  std::string lem = (m_flav ? "e^{-}" : "#mu^{-}");
279 
280  static constexpr float maxMuEta = 2.4;
281  static constexpr float maxMuMuEta = 3.5;
282  TH1F::SetDefaultSumw2(kTRUE);
283 
284  // clang-format off
285  m_h2_map[xAxis::Z_ETA] = fs.make<TH2F>(fmt::sprintf("%sVsMuMuEta", m_name).c_str(),
286  fmt::sprintf("%s vs %s pair #eta;%s #eta;%s", m_title, dilep, dilep, m_ytitle).c_str(),
287  nxbins, -M_PI, M_PI,
288  nybins, valmin, valmax);
289 
290  m_h2_map[xAxis::Z_PHI] = fs.make<TH2F>(fmt::sprintf("%sVsMuMuPhi", m_name).c_str(),
291  fmt::sprintf("%s vs %s pair #phi;%s #phi [rad];%s", m_title, dilep, dilep, m_ytitle).c_str(),
292  nxbins, -maxMuMuEta, maxMuMuEta,
293  nybins, valmin, valmax);
294 
295  m_h2_map[xAxis::LP_ETA] = fs.make<TH2F>(fmt::sprintf("%sVsMuPlusEta", m_name).c_str(),
296  fmt::sprintf("%s vs %s #eta;%s #eta;%s", m_title, lep, lep, m_ytitle).c_str(),
297  nxbins, -maxMuEta, maxMuEta,
298  nybins, valmin, valmax);
299 
300  m_h2_map[xAxis::LP_PHI] = fs.make<TH2F>(fmt::sprintf("%sVsMuPlusPhi", m_name).c_str(),
301  fmt::sprintf("%s vs %s #phi;%s #phi [rad];%s", m_title, lep, lep, m_ytitle).c_str(),
302  nxbins, -M_PI, M_PI,
303  nybins, valmin, valmax);
304 
305  m_h2_map[xAxis::LM_ETA] = fs.make<TH2F>(fmt::sprintf("%sVsMuMinusEta", m_name).c_str(),
306  fmt::sprintf("%s vs %s #eta;%s #eta;%s", m_title, lem, lem, m_ytitle).c_str(),
307  nxbins, -maxMuEta, maxMuEta,
308  nybins, valmin, valmax);
309 
310  m_h2_map[xAxis::LM_PHI] = fs.make<TH2F>(fmt::sprintf("%sVsMuMinusPhi", m_name).c_str(),
311  fmt::sprintf("%s vs %s #phi;%s #phi [rad];%s", m_title, lem, lem, m_ytitle).c_str(),
312  nxbins, -M_PI, M_PI,
313  nybins, valmin, valmax);
314  // clang-format on
315 
316  // flip the is booked bit
317  m_isBooked = true;
318  }
Log< level::Error, false > LogError
std::map< xAxis, TH2F * > m_h2_map
#define M_PI

◆ fillPlots()

void DiLeptonHelp::PlotsVsKinematics::fillPlots ( const float  val,
const std::pair< TLorentzVector, TLorentzVector > &  momenta 
)
inline

Definition at line 321 of file DiLeptonVertexHelpers.h.

References m_h2_map, m_isBooked, and heppy_batch::val.

Referenced by DiMuonVertexValidation::analyze(), and DiElectronVertexValidation::analyze().

321  {
322  if (!m_isBooked) {
323  edm::LogError("PlotsVsKinematics")
324  << "In" << __FUNCTION__ << "," << __LINE__ << "trying to fill a plot not booked!" << std::endl;
325  return;
326  }
327 
328  m_h2_map[xAxis::Z_ETA]->Fill((momenta.first + momenta.second).Eta(), val);
329  m_h2_map[xAxis::Z_PHI]->Fill((momenta.first + momenta.second).Phi(), val);
330  m_h2_map[xAxis::LP_ETA]->Fill((momenta.first).Eta(), val);
331  m_h2_map[xAxis::LP_PHI]->Fill((momenta.first).Phi(), val);
332  m_h2_map[xAxis::LM_ETA]->Fill((momenta.second).Eta(), val);
333  m_h2_map[xAxis::LM_PHI]->Fill((momenta.second).Phi(), val);
334  }
Log< level::Error, false > LogError
std::map< xAxis, TH2F * > m_h2_map

Member Data Documentation

◆ axisChoices

const std::vector<xAxis> DiLeptonHelp::PlotsVsKinematics::axisChoices
private
Initial value:
= {
xAxis::Z_PHI, xAxis::Z_ETA, xAxis::LP_PHI, xAxis::LP_ETA, xAxis::LM_PHI, xAxis::LM_ETA}

Definition at line 338 of file DiLeptonVertexHelpers.h.

Referenced by bookFromPSet().

◆ m_flav

flavour DiLeptonHelp::PlotsVsKinematics::m_flav
private

Definition at line 346 of file DiLeptonVertexHelpers.h.

Referenced by bookFromPSet(), bookPlots(), and PlotsVsKinematics().

◆ m_h2_map

std::map<xAxis, TH2F*> DiLeptonHelp::PlotsVsKinematics::m_h2_map
private

Definition at line 348 of file DiLeptonVertexHelpers.h.

Referenced by bookFromPSet(), bookPlots(), and fillPlots().

◆ m_isBooked

bool DiLeptonHelp::PlotsVsKinematics::m_isBooked
private

Definition at line 345 of file DiLeptonVertexHelpers.h.

Referenced by bookFromPSet(), bookPlots(), and fillPlots().

◆ m_name

const std::string DiLeptonHelp::PlotsVsKinematics::m_name
private

Definition at line 341 of file DiLeptonVertexHelpers.h.

Referenced by bookPlots().

◆ m_title

const std::string DiLeptonHelp::PlotsVsKinematics::m_title
private

Definition at line 342 of file DiLeptonVertexHelpers.h.

Referenced by bookPlots().

◆ m_ytitle

const std::string DiLeptonHelp::PlotsVsKinematics::m_ytitle
private

Definition at line 343 of file DiLeptonVertexHelpers.h.

Referenced by bookPlots().