HcalSiPMCharacteristicsSummary

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
#include "CondCore/Utilities/interface/PayloadInspectorModule.h"
#include "CondCore/Utilities/interface/PayloadInspector.h"
#include "CondCore/CondDB/interface/Time.h"
#include "DataFormats/HcalDetId/interface/HcalDetId.h"
#include "CondCore/HcalPlugins/interface/HcalObjRepresent.h"

// the data format of the condition to be inspected
#include "CondFormats/HcalObjects/interface/HcalSiPMCharacteristics.h"

#include "TH2F.h"
#include "TCanvas.h"
#include "TLine.h"
#include "TStyle.h"
#include "TLatex.h"
#include "TPave.h"
#include "TPaveStats.h"
#include <string>
#include <fstream>

namespace {

  /********************************************
     printing float values of reco paramters
  *********************************************/
  class HcalSiPMCharacteristicsSummary : public cond::payloadInspector::PlotImage<HcalSiPMCharacteristics> {
  public:
    HcalSiPMCharacteristicsSummary()
        : cond::payloadInspector::PlotImage<HcalSiPMCharacteristics>("HCAL RecoParam Ratios - map ") {
      setSingleIov(true);
    }

    bool fill(const std::vector<std::tuple<cond::Time_t, cond::Hash> >& iovs) override {
      auto iov = iovs.front();
      std::shared_ptr<HcalSiPMCharacteristics> payload = fetchPayload(std::get<1>(iov));
      if (payload.get()) {
        std::string subDetName;
        std::vector<HcalSiPMCharacteristics> itemsVec;
        std::pair<std::string, int> valMap;

        //TODO: Abstract into a function that takes valMap as the argument

        TLatex label, val;
        TLine* ll;
        TCanvas* can = new TCanvas("RecoParamsSummary", "RecoParamsSummary", 2400, 1680);
        can->cd();
        //HcalObjRepresent::drawTable(2,2);

        label.SetNDC();
        label.SetTextAlign(26);
        label.SetTextSize(0.05);
        label.SetTextColor(2);
        label.DrawLatex(0.5, 0.96, Form("Hcal SiPM Characteristics"));
        std::vector<float> line;
        HcalObjRepresent::drawTable(7, 6);

        int nTypes = payload->getTypes();
        float startPosY = 0.9, endPosY = 0.1;
        float startPosX = 0.03, endPosX = 0.92;
        int type;
        std::vector<float>::iterator linEle;
        std::vector<std::string>::iterator linStrEle;
        int j = 0;
        float xDiff, yDiff;
        // Header line
        std::vector<std::string> lblline = {
            "Type", "Pixels", "parLin1", "parLin2", "parLin3", "crossTalk"};  //, aux1, aux2};
        xDiff = (endPosX - startPosX) / (lblline.size() - 1);
        yDiff = (startPosY - endPosY) / nTypes;

        label.SetTextAlign(12);
        label.SetTextSize(0.05);
        label.SetTextColor(1);
        ll = new TLine(
            startPosX - 0.2 * xDiff, startPosY + 0.5 * yDiff, startPosX - 0.2 * xDiff, startPosY - 0.5 * yDiff);
        ll->Draw();
        for (linStrEle = lblline.begin(); linStrEle != lblline.end(); ++linStrEle) {
          ll = new TLine(startPosX + (j + 0.5) * xDiff,
                         startPosY + 0.5 * yDiff,
                         startPosX + (j + 0.5) * xDiff,
                         startPosY - 0.5 * yDiff);
          label.DrawLatex(startPosX + (j == 0 ? -0.1 : (j - 0.4)) * xDiff, startPosY, (*linStrEle).c_str());
          ll->Draw();
          j++;
        }
        ll = new TLine(0, startPosY - 0.5 * yDiff, 1, startPosY - 0.5 * yDiff);
        ll->Draw();

        val.SetNDC();
        val.SetTextAlign(26);
        val.SetTextSize(0.035);
        for (int i = 0; i < nTypes; i++) {
          type = payload->getType(i);

          line = {(float)type,
                  (float)payload->getPixels(type),
                  payload->getNonLinearities(type).at(0),
                  payload->getNonLinearities(type).at(1),
                  payload->getNonLinearities(type).at(2),
                  payload->getCrossTalk(type)};
          ll = new TLine(startPosX - 0.2 * xDiff,
                         startPosY - (i + 0.5) * yDiff,
                         startPosX - 0.2 * xDiff,
                         startPosY - (i + 1.5) * yDiff);
          ll->Draw();
          j = 0;

          for (linEle = line.begin(); linEle != line.end(); ++linEle) {
            ll = new TLine(startPosX + (j + 0.5) * xDiff,
                           startPosY - (i + 0.5) * yDiff,
                           startPosX + (j + 0.5) * xDiff,
                           startPosY - (i + 1.5) * yDiff);
            val.DrawLatex(
                startPosX + j * xDiff, startPosY - (i + 1) * yDiff, HcalObjRepresent::SciNotatStr((*linEle)).c_str());
            ll->Draw();
            j++;
          }
        }

        std::string ImageName(m_imageFileName);
        can->SaveAs(ImageName.c_str());
        return false;
      } else
        return false;
    }  // fill method
  };
  //TODO: Add a Change Summary?

}  // namespace

// Register the classes as boost python plugin
PAYLOAD_INSPECTOR_MODULE(HcalSiPMCharacteristics) { PAYLOAD_INSPECTOR_CLASS(HcalSiPMCharacteristicsSummary); }