CMS 3D CMS Logo

VpspScanSummaryFactory.cc
Go to the documentation of this file.
5 #include <iostream>
6 #include <sstream>
7 
8 using namespace sistrip;
9 
10 // -----------------------------------------------------------------------------
11 //
13  VpspScanAnalysis* anal = dynamic_cast<VpspScanAnalysis*>(iter->second);
14  if (!anal) {
15  return;
16  }
17 
18  std::vector<float> value(2, 1. * sistrip::invalid_);
19  std::vector<float> error(2, 1. * sistrip::invalid_);
20 
21  bool two = true;
22  if (mon_ == sistrip::VPSP_SCAN_APV_SETTINGS) {
23  value[0] = 1. * anal->vpsp()[0];
24  value[1] = 1. * anal->vpsp()[1];
25  } else if (mon_ == sistrip::VPSP_SCAN_APV0_SETTING) {
26  value[0] = 1. * anal->vpsp()[0];
27  two = false;
28  } else if (mon_ == sistrip::VPSP_SCAN_APV1_SETTING) {
29  value[0] = 1. * anal->vpsp()[1];
30  two = false;
31  } else if (mon_ == sistrip::VPSP_SCAN_ADC_LEVEL) {
32  value[0] = 1. * anal->adcLevel()[0];
33  value[1] = 1. * anal->adcLevel()[1];
34  } else if (mon_ == sistrip::VPSP_SCAN_DIGITAL_HIGH) {
35  value[0] = 1. * anal->topLevel()[0];
36  value[1] = 1. * anal->topLevel()[1];
37  } else if (mon_ == sistrip::VPSP_SCAN_DIGITAL_LOW) {
38  value[0] = 1. * anal->bottomLevel()[0];
39  value[1] = 1. * anal->bottomLevel()[1];
40  } else {
41  edm::LogWarning(mlSummaryPlots_) << "[SummaryPlotFactory::" << __func__ << "]"
42  << " Unexpected monitorable: "
44  return;
45  }
46 
49 
50  if (two) {
53  }
54 }
55 
56 // -----------------------------------------------------------------------------
57 //
59  if (mon_ == sistrip::VPSP_SCAN_APV_SETTINGS) {
60  } else if (mon_ == sistrip::VPSP_SCAN_APV0_SETTING) {
61  } else if (mon_ == sistrip::VPSP_SCAN_APV1_SETTING) {
62  } else if (mon_ == sistrip::VPSP_SCAN_ADC_LEVEL) {
63  } else if (mon_ == sistrip::VPSP_SCAN_DIGITAL_HIGH) {
64  } else if (mon_ == sistrip::VPSP_SCAN_DIGITAL_LOW) {
65  } else {
66  edm::LogWarning(mlSummaryPlots_) << "[SummaryPlotFactory::" << __func__ << "]"
67  << " Unexpected SummaryHisto value: "
69  }
70 }
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_
void extract(Iterator) override
Histogram-based analysis for VPSP scan.
static const char mlSummaryPlots_[]
SummaryGenerator * generator_
static const uint16_t invalid_
Definition: Constants.h:16
Log< level::Warning, false > LogWarning