CMS 3D CMS Logo

PedestalsSummaryFactory.cc
Go to the documentation of this file.
5 #include <iostream>
6 #include <sstream>
7 
8 using namespace sistrip;
9 
10 // -----------------------------------------------------------------------------
11 //
13  PedestalsAnalysis* anal = dynamic_cast<PedestalsAnalysis*>(iter->second);
14  if (!anal) {
15  return;
16  }
17 
18  std::vector<float> temp(128, 1. * sistrip::invalid_);
19  std::vector<std::vector<float> > value(2, temp);
20  std::vector<std::vector<float> > peds(2, temp);
21  std::vector<std::vector<float> > noise(2, temp);
22  peds[0] = anal->peds()[0];
23  peds[1] = anal->peds()[1];
24  noise[0] = anal->noise()[0];
25  noise[1] = anal->noise()[1];
26 
27  bool all_strips = false;
28  if (mon_ == sistrip::PEDESTALS_ALL_STRIPS) {
29  all_strips = true;
30  uint16_t bins = peds[0].size();
31  if (peds[0].size() < peds[1].size()) {
32  bins = peds[1].size();
33  }
34  for (uint16_t iped = 0; iped < bins; iped++) {
35  value[0][iped] = peds[0][iped];
36  value[1][iped] = peds[1][iped];
37  }
38  } else if (mon_ == sistrip::PEDESTALS_MEAN) {
39  value[0][0] = anal->pedsMean()[0];
40  value[1][0] = anal->pedsMean()[1];
41  } else if (mon_ == sistrip::PEDESTALS_SPREAD) {
42  value[0][0] = anal->pedsSpread()[0];
43  value[1][0] = anal->pedsSpread()[1];
44  } else if (mon_ == sistrip::PEDESTALS_MAX) {
45  value[0][0] = anal->pedsMax()[0];
46  value[1][0] = anal->pedsMax()[1];
47  } else if (mon_ == sistrip::PEDESTALS_MIN) {
48  value[0][0] = anal->pedsMin()[0];
49  value[1][0] = anal->pedsMin()[1];
50  } else if (mon_ == sistrip::NOISE_ALL_STRIPS) {
51  all_strips = true;
52  uint16_t bins = noise[0].size();
53  if (noise[0].size() < noise[1].size()) {
54  bins = noise[1].size();
55  }
56  for (uint16_t inoise = 0; inoise < bins; inoise++) {
57  value[0][inoise] = noise[0][inoise];
58  value[1][inoise] = noise[1][inoise];
59  }
60  } else if (mon_ == sistrip::NOISE_MEAN) {
61  value[0][0] = anal->noiseMean()[0];
62  value[1][0] = anal->noiseMean()[1];
63  } else if (mon_ == sistrip::NOISE_SPREAD) {
64  value[0][0] = anal->noiseSpread()[0];
65  value[1][0] = anal->noiseSpread()[1];
66  } else if (mon_ == sistrip::NOISE_MAX) {
67  value[0][0] = anal->noiseMax()[0];
68  value[1][0] = anal->noiseMax()[1];
69  } else if (mon_ == sistrip::NOISE_MIN) {
70  value[0][0] = anal->noiseMin()[0];
71  value[1][0] = anal->noiseMin()[1];
72  } else if (mon_ == sistrip::NUM_OF_DEAD) {
73  value[0][0] = 1. * anal->dead()[0].size();
74  value[1][0] = 1. * anal->dead()[1].size();
75  } else if (mon_ == sistrip::NUM_OF_NOISY) {
76  value[0][0] = 1. * anal->noisy()[0].size();
77  value[1][0] = 1. * anal->noisy()[1].size();
78  } else {
79  edm::LogWarning(mlSummaryPlots_) << "[SummaryPlotFactory::" << __func__ << "]"
80  << " Unexpected monitorable: "
82  return;
83  }
84 
85  if (!all_strips) {
88 
91 
92  } else {
93  for (uint16_t istr = 0; istr < value[0].size(); istr++) {
96  }
97 
98  for (uint16_t istr = 0; istr < value[1].size(); istr++) {
101  }
102  }
103 }
104 
105 // -----------------------------------------------------------------------------
106 //
108  if (mon_ == sistrip::PEDESTALS_ALL_STRIPS) {
109  generator_->axisLabel("Pedestal value [adc]");
110  } else if (mon_ == sistrip::PEDESTALS_MEAN) {
111  } else if (mon_ == sistrip::PEDESTALS_SPREAD) {
112  } else if (mon_ == sistrip::PEDESTALS_MAX) {
113  } else if (mon_ == sistrip::PEDESTALS_MIN) {
114  } else if (mon_ == sistrip::NOISE_ALL_STRIPS) {
115  generator_->axisLabel("Noise [adc]");
116  } else if (mon_ == sistrip::NOISE_MEAN) {
117  } else if (mon_ == sistrip::NOISE_SPREAD) {
118  } else if (mon_ == sistrip::NOISE_MAX) {
119  } else if (mon_ == sistrip::NOISE_MIN) {
120  } else if (mon_ == sistrip::NUM_OF_DEAD) {
121  } else if (mon_ == sistrip::NUM_OF_NOISY) {
122  } else {
123  edm::LogWarning(mlSummaryPlots_) << "[SummaryPlotFactory::" << __func__ << "]"
124  << " Unexpected SummaryHisto value:"
126  }
127 }
SummaryGenerator::fillMap
void fillMap(const std::string &top_level_dir, const sistrip::Granularity &, const uint32_t &key, const float &value, const float &error=0.)
Definition: SummaryGenerator.cc:222
sistrip::NUM_OF_DEAD
Bad strip.
Definition: ConstantsForMonitorable.h:262
MessageLogger.h
PedestalsSummaryFactory.h
SummaryPlotFactoryBase::mon_
sistrip::Monitorable mon_
Definition: SummaryPlotFactoryBase.h:25
sistrip::NOISE_MEAN
Definition: ConstantsForMonitorable.h:256
sistrip::NUM_OF_NOISY
Definition: ConstantsForMonitorable.h:264
Iterator
Definition: DQMStoreStats.h:94
sistrip::NOISE_ALL_STRIPS
Definition: ConstantsForMonitorable.h:255
PedestalsAnalysis
Histogram-based analysis for pedestal run.
Definition: PedestalsAnalysis.h:15
groupFilesInBlocks.temp
list temp
Definition: groupFilesInBlocks.py:142
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
SummaryPlotFactoryBase::level_
std::string level_
Definition: SummaryPlotFactoryBase.h:28
sistrip::PEDESTALS_ALL_STRIPS
Definition: ConstantsForMonitorable.h:249
sistrip::PEDESTALS_MEAN
Definition: ConstantsForMonitorable.h:250
sistrip::PEDESTALS_MIN
Definition: ConstantsForMonitorable.h:253
sistrip::NOISE_MAX
Definition: ConstantsForMonitorable.h:258
SummaryPlotFactoryBase::generator_
SummaryGenerator * generator_
Definition: SummaryPlotFactoryBase.h:32
value
Definition: value.py:1
PedestalsSummaryFactory::format
void format() override
Definition: PedestalsSummaryFactory.cc:107
sistrip::invalid_
static const uint16_t invalid_
Definition: Constants.h:16
gpuVertexFinder::noise
__shared__ int noise
Definition: gpuFitVertices.h:50
SiStripEnumsAndStrings::monitorable
static std::string monitorable(const sistrip::Monitorable &)
Definition: SiStripEnumsAndStrings.cc:547
SummaryPlotFactoryBase::gran_
sistrip::Granularity gran_
Definition: SummaryPlotFactoryBase.h:29
sistrip::PEDESTALS_SPREAD
Definition: ConstantsForMonitorable.h:251
sistrip::NOISE_MIN
Definition: ConstantsForMonitorable.h:259
sistrip::mlSummaryPlots_
static const char mlSummaryPlots_[]
Definition: ConstantsForLogger.h:26
relativeConstraints.value
value
Definition: relativeConstraints.py:53
SiStripEnumsAndStrings.h
sistrip::PEDESTALS_MAX
Definition: ConstantsForMonitorable.h:252
PedestalsAnalysis.h
PedestalsSummaryFactory::extract
void extract(Iterator) override
Definition: PedestalsSummaryFactory.cc:12
sistrip::NOISE_SPREAD
Definition: ConstantsForMonitorable.h:257
trigObjTnPSource_cfi.bins
bins
Definition: trigObjTnPSource_cfi.py:20
sistrip
sistrip classes
Definition: SiStripQualityHelpers.h:14
conversion_template_cfg.anal
anal
Definition: conversion_template_cfg.py:16
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443