CMS 3D CMS Logo

DaqScopeModeSummaryFactory.cc
Go to the documentation of this file.
5 #include <iostream>
6 #include <sstream>
7 
8 using namespace sistrip;
9 
10 // -----------------------------------------------------------------------------
11 //
13  DaqScopeModeAnalysis* anal = dynamic_cast<DaqScopeModeAnalysis*>(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  float valueAlt = 1. * sistrip::invalid_;
27 
28  bool all_strips = false;
29  if (mon_ == sistrip::PEDESTALS_ALL_STRIPS) {
30  all_strips = true;
31  uint16_t bins = peds[0].size();
32  if (peds[0].size() < peds[1].size()) {
33  bins = peds[1].size();
34  }
35  for (uint16_t iped = 0; iped < bins; iped++) {
36  value[0][iped] = peds[0][iped];
37  value[1][iped] = peds[1][iped];
38  }
39  } else if (mon_ == sistrip::PEDESTALS_MEAN) {
40  value[0][0] = anal->pedsMean()[0];
41  value[1][0] = anal->pedsMean()[1];
42  } else if (mon_ == sistrip::PEDESTALS_SPREAD) {
43  value[0][0] = anal->pedsSpread()[0];
44  value[1][0] = anal->pedsSpread()[1];
45  } else if (mon_ == sistrip::PEDESTALS_MAX) {
46  value[0][0] = anal->pedsMax()[0];
47  value[1][0] = anal->pedsMax()[1];
48  } else if (mon_ == sistrip::PEDESTALS_MIN) {
49  value[0][0] = anal->pedsMin()[0];
50  value[1][0] = anal->pedsMin()[1];
51  } else if (mon_ == sistrip::NOISE_ALL_STRIPS) {
52  all_strips = true;
53  uint16_t bins = noise[0].size();
54  if (noise[0].size() < noise[1].size()) {
55  bins = noise[1].size();
56  }
57  for (uint16_t inoise = 0; inoise < bins; inoise++) {
58  value[0][inoise] = noise[0][inoise];
59  value[1][inoise] = noise[1][inoise];
60  }
61  } else if (mon_ == sistrip::NOISE_MEAN) {
62  value[0][0] = anal->noiseMean()[0];
63  value[1][0] = anal->noiseMean()[1];
64  } else if (mon_ == sistrip::NOISE_SPREAD) {
65  value[0][0] = anal->noiseSpread()[0];
66  value[1][0] = anal->noiseSpread()[1];
67  } else if (mon_ == sistrip::NOISE_MAX) {
68  value[0][0] = anal->noiseMax()[0];
69  value[1][0] = anal->noiseMax()[1];
70  } else if (mon_ == sistrip::NOISE_MIN) {
71  value[0][0] = anal->noiseMin()[0];
72  value[1][0] = anal->noiseMin()[1];
73  } else if (mon_ == sistrip::NUM_OF_DEAD) {
74  value[0][0] = 1. * anal->dead()[0].size();
75  value[1][0] = 1. * anal->dead()[1].size();
76  } else if (mon_ == sistrip::NUM_OF_NOISY) {
77  value[0][0] = 1. * anal->noisy()[0].size();
78  value[1][0] = 1. * anal->noisy()[1].size();
79  } else if (mon_ == sistrip::APV_TIMING_BASE) {
80  valueAlt = anal->base();
81  } else if (mon_ == sistrip::APV_TIMING_PEAK) {
82  valueAlt = anal->peak();
83  } else if (mon_ == sistrip::APV_TIMING_HEIGHT) {
84  valueAlt = anal->height();
85  } else {
86  edm::LogWarning(mlSummaryPlots_) << "[SummaryPlotFactory::" << __func__ << "]"
87  << " Unexpected monitorable: "
89  return;
90  }
91 
92  if (!all_strips) {
95 
98 
101 
102  } else {
103  for (uint16_t istr = 0; istr < value[0].size(); istr++) {
106  }
107 
108  for (uint16_t istr = 0; istr < value[1].size(); istr++) {
111  }
112  }
113 }
114 
115 // -----------------------------------------------------------------------------
116 //
118  if (mon_ == sistrip::PEDESTALS_ALL_STRIPS) {
119  generator_->axisLabel("Pedestal value [adc]");
120  } else if (mon_ == sistrip::PEDESTALS_MEAN) {
121  } else if (mon_ == sistrip::PEDESTALS_SPREAD) {
122  } else if (mon_ == sistrip::PEDESTALS_MAX) {
123  } else if (mon_ == sistrip::PEDESTALS_MIN) {
124  } else if (mon_ == sistrip::NOISE_ALL_STRIPS) {
125  generator_->axisLabel("Noise [adc]");
126  } else if (mon_ == sistrip::NOISE_MEAN) {
127  } else if (mon_ == sistrip::NOISE_SPREAD) {
128  } else if (mon_ == sistrip::NOISE_MAX) {
129  } else if (mon_ == sistrip::NOISE_MIN) {
130  } else if (mon_ == sistrip::NUM_OF_DEAD) {
131  } else if (mon_ == sistrip::NUM_OF_NOISY) {
133  SummaryPlotFactoryBase::generator_->axisLabel("Timing delay [ns]");
140  } else {
141  edm::LogWarning(mlSummaryPlots_) << "[SummaryPlotFactory::" << __func__ << "]"
142  << " Unexpected SummaryHisto value:"
144  }
145 }
static std::string monitorable(const sistrip::Monitorable &)
sistrip::Monitorable mon_
sistrip classes
void fillMap(const std::string &top_level_dir, const sistrip::Granularity &, const uint32_t &key, const float &value, const float &error=0.)
Definition: value.py:1
sistrip::Granularity gran_
static const char mlSummaryPlots_[]
SummaryGenerator * generator_
static const uint16_t invalid_
Definition: Constants.h:16
Log< level::Warning, false > LogWarning
void axisLabel(const std::string &)
Analysis for scope mode data.