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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
#include "DQM/SiStripMonitorSummary/interface/SiStripThresholdDQM.h"

SiStripThresholdDQM::SiStripThresholdDQM(edm::ESGetToken<SiStripThreshold, SiStripThresholdRcd> token,
                                         edm::RunNumber_t iRun,
                                         edm::ParameterSet const &hPSet,
                                         edm::ParameterSet const &fPSet,
                                         const TrackerTopology *tTopo,
                                         const TkDetMap *tkDetMap)
    : SiStripBaseCondObjDQMGet<SiStripThreshold, SiStripThresholdRcd>{token, iRun, hPSet, fPSet, tTopo} {
  WhichThreshold = hPSet.getParameter<std::string>("WhichThreshold");

  if (HistoMaps_On_) {
    if (WhichThreshold == "Low")
      Tk_HM_L = std::make_unique<TkHistoMap>(tkDetMap, "SiStrip/Histo_Map", "LowThresh_TkMap", 0.);
    if (WhichThreshold == "High")
      Tk_HM_H = std::make_unique<TkHistoMap>(tkDetMap, "SiStrip/Histo_Map", "HighThresh_TkMap", 0.);
  }
}

SiStripThresholdDQM::~SiStripThresholdDQM() {}

void SiStripThresholdDQM::getActiveDetIds(const edm::EventSetup &eSetup) {
  getConditionObject(eSetup);
  condObj_->getDetIds(activeDetIds);
}

void SiStripThresholdDQM::fillModMEs(const std::vector<uint32_t> &selectedDetIds) {
  ModMEs CondObj_ME;
  for (const auto det : selectedDetIds) {
    fillMEsForDet(CondObj_ME, det);
  }
}

void SiStripThresholdDQM::fillMEsForDet(const ModMEs &_selModME_, uint32_t selDetId_) {
  ModMEs selModME_ = _selModME_;
  std::vector<uint32_t> DetIds;
  condObj_->getDetIds(DetIds);

  const auto ThresholdRange = condObj_->getRange(selDetId_);
  int nStrip = detInfo_.getNumberOfApvsAndStripLength(selDetId_).first * 128;

  getModMEs(selModME_, selDetId_);

  for (int istrip = 0; istrip < nStrip; ++istrip) {
    if (CondObj_fillId_ == "onlyProfile" || CondObj_fillId_ == "ProfileAndCumul") {
      if (WhichThreshold == "Low")
        selModME_.ProfileDistr->Fill(istrip + 1, condObj_->getData(istrip, ThresholdRange).getLth());
      if (WhichThreshold == "High")
        selModME_.ProfileDistr->Fill(istrip + 1, condObj_->getData(istrip, ThresholdRange).getHth());
    }
  }  // istrip
}

void SiStripThresholdDQM::fillSummaryMEs(const std::vector<uint32_t> &selectedDetIds) {
  for (const auto det : selectedDetIds) {
    fillMEsForLayer(/*SummaryMEsMap_,*/ det);
  }
}

void SiStripThresholdDQM::fillMEsForLayer(
    /*std::map<uint32_t, ModMEs> selMEsMap_,*/ uint32_t selDetId_) {
  // ----
  int subdetectorId_ = ((selDetId_ >> 25) & 0x7);

  if (subdetectorId_ < 3 || subdetectorId_ > 6) {
    edm::LogError("SiStripThresholdDQM") << "[SiStripThresholdDQM::fillMEsForLayer] WRONG INPUT : no such "
                                            "subdetector type : "
                                         << subdetectorId_ << " no folder set!" << std::endl;
    return;
  }
  // ----

  const auto selMEsMapIter_ = SummaryMEsMap_.find(getLayerNameAndId(selDetId_).second);
  ModMEs selME_;
  if (selMEsMapIter_ != SummaryMEsMap_.end())
    selME_ = selMEsMapIter_->second;

  getSummaryMEs(selME_, selDetId_);

  const auto ThresholdRange = condObj_->getRange(selDetId_);

  int nStrip = detInfo_.getNumberOfApvsAndStripLength(selDetId_).first * 128;

  SiStripHistoId hidmanager;

  if (hPSet_.getParameter<bool>("FillSummaryProfileAtLayerLevel")) {
    // --> profile summary

    std::string hSummaryOfProfile_description;
    hSummaryOfProfile_description = hPSet_.getParameter<std::string>("SummaryOfProfile_description");

    std::string hSummaryOfProfile_name;

    hSummaryOfProfile_name =
        hidmanager.createHistoLayer(hSummaryOfProfile_description, "layer", getLayerNameAndId(selDetId_).first, "");

    for (int istrip = 0; istrip < nStrip; ++istrip) {
      if (CondObj_fillId_ == "onlyProfile" || CondObj_fillId_ == "ProfileAndCumul") {
        if (WhichThreshold == "Low") {
          selME_.SummaryOfProfileDistr->Fill(istrip + 1, condObj_->getData(istrip, ThresholdRange).getLth());
          if (fPSet_.getParameter<bool>("TkMap_On") || hPSet_.getParameter<bool>("TkMap_On"))
            fillTkMap(selDetId_, condObj_->getData(istrip, ThresholdRange).getLth());
        }
        if (WhichThreshold == "High") {
          selME_.SummaryOfProfileDistr->Fill(istrip + 1, condObj_->getData(istrip, ThresholdRange).getHth());
          if (fPSet_.getParameter<bool>("TkMap_On") || hPSet_.getParameter<bool>("TkMap_On"))
            fillTkMap(selDetId_, condObj_->getData(istrip, ThresholdRange).getHth());
        }
      }
    }  // istrip

  }  // if Fill

  if (hPSet_.getParameter<bool>("FillSummaryAtLayerLevel")) {
    // --> summary

    std::string hSummary_description;
    hSummary_description = hPSet_.getParameter<std::string>("Summary_description");

    std::string hSummary_name;
    hSummary_name = hidmanager.createHistoLayer(hSummary_description, "layer", getLayerNameAndId(selDetId_).first, "");

    float meanLowThreshold = 0;
    float meanHighThreshold = 0;

    for (int istrip = 0; istrip < nStrip; ++istrip) {
      meanLowThreshold = meanLowThreshold + condObj_->getData(istrip, ThresholdRange).getLth();
      meanHighThreshold = meanHighThreshold + condObj_->getData(istrip, ThresholdRange).getHth();
    }  // istrip

    meanLowThreshold = meanLowThreshold / nStrip;
    meanHighThreshold = meanHighThreshold / nStrip;

    // -----
    // get detIds belonging to same layer to fill X-axis with detId-number

    std::vector<uint32_t> sameLayerDetIds_ = GetSameLayerDetId(activeDetIds, selDetId_);

    unsigned int iBin = 0;
    for (unsigned int i = 0; i < sameLayerDetIds_.size(); i++) {
      if (sameLayerDetIds_[i] == selDetId_) {
        iBin = i + 1;
      }
    }

    if (WhichThreshold == "Low") {
      selME_.SummaryDistr->Fill(iBin, meanLowThreshold);
      if (HistoMaps_On_)
        Tk_HM_L->fill(selDetId_, meanLowThreshold);
    }
    if (WhichThreshold == "High") {
      selME_.SummaryDistr->Fill(iBin, meanHighThreshold);
      if (HistoMaps_On_)
        Tk_HM_H->fill(selDetId_, meanHighThreshold);
    }

  }  // if Fill ...
}