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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
#include "DQM/SiStripCommissioningSources/interface/CommissioningTask.h"
#include "DataFormats/SiStripCommon/interface/SiStripConstants.h"
#include "DataFormats/SiStripCommon/interface/SiStripFecKey.h"
#include "DataFormats/SiStripCommon/interface/SiStripFedKey.h"
#include "DQM/SiStripCommon/interface/ExtractTObject.h"
#include "DQM/SiStripCommon/interface/UpdateTProfile.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "TAxis.h"
#include <iostream>
#include <iostream>

using namespace sistrip;

// -----------------------------------------------------------------------------
//
CommissioningTask::CommissioningTask(DQMStore* dqm, const FedChannelConnection& conn, const std::string& my_name)
    : dqm_(dqm),
      updateFreq_(0),
      fillCntr_(0),
      connection_(conn),
      fedKey_(0),
      fecKey_(0),
      booked_(false),
      myName_(my_name),
      eventSetup_(nullptr) {
  uint16_t fed_ch = connection_.fedCh();
  fedKey_ = SiStripFedKey(connection_.fedId(), SiStripFedKey::feUnit(fed_ch), SiStripFedKey::feChan(fed_ch)).key();
  fecKey_ = SiStripFecKey(connection_.fecCrate(),
                          connection_.fecSlot(),
                          connection_.fecRing(),
                          connection_.ccuAddr(),
                          connection_.ccuChan(),
                          connection_.lldChannel())
                .key();

  LogTrace(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                         << " Constructing '" << myName_ << "' object for FecKey/FedKey: "
                         << "0x" << std::hex << std::setw(8) << std::setfill('0') << fecKey_ << std::dec << "/"
                         << "0x" << std::hex << std::setw(8) << std::setfill('0') << fedKey_ << std::dec
                         << " and Crate/FEC/ring/CCU/module/LLDchan: " << connection_.fecCrate() << "/"
                         << connection_.fecSlot() << "/" << connection_.fecRing() << "/" << connection_.ccuAddr() << "/"
                         << connection_.ccuChan() << "/" << connection_.lldChannel()
                         << " and FedId/Ch: " << connection_.fedId() << "/" << connection_.fedCh();
}

// -----------------------------------------------------------------------------
//
CommissioningTask::~CommissioningTask() {
  LogTrace(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                         << " Destructing object for FED id/ch "
                         << " Constructing '" << myName_ << "' object for FecKey/FedKey: "
                         << "0x" << std::hex << std::setw(8) << std::setfill('0') << fecKey_ << std::dec << "/"
                         << "0x" << std::hex << std::setw(8) << std::setfill('0') << fedKey_ << std::dec
                         << " and Crate/FEC/ring/CCU/module/LLDchan: " << connection_.fecCrate() << "/"
                         << connection_.fecSlot() << "/" << connection_.fecRing() << "/" << connection_.ccuAddr() << "/"
                         << connection_.ccuChan() << "/" << connection_.lldChannel()
                         << " and FedId/Ch: " << connection_.fedId() << "/" << connection_.fedCh();
  //@@ do not delete EventSetup pointer!
}

// -----------------------------------------------------------------------------
//
CommissioningTask::HistoSet::HistoSet()
    : vNumOfEntries_(),
      vSumOfContents_(),
      vSumOfSquares_(),
      isProfile_(true),
      explicitFill_(false),
      histo_(nullptr),
      axis_(nullptr) {
  ;
}

// -----------------------------------------------------------------------------
//
CommissioningTask::CompactHistoSet::CompactHistoSet() : vNumOfEntries_(), explicitFill_(false), histo_(nullptr) { ; }

// -----------------------------------------------------------------------------
//
CommissioningTask::MonitorElement* CommissioningTask::HistoSet::histo() { return histo_; }

// -----------------------------------------------------------------------------
//
CommissioningTask::MonitorElement* CommissioningTask::CompactHistoSet::histo() { return histo_; }

// -----------------------------------------------------------------------------
//
void CommissioningTask::HistoSet::histo(MonitorElement* me) {
  histo_ = me;
  TH1* histo = ExtractTObject<TH1>().extract(histo_);
  if (histo_) {
    axis_ = histo->GetXaxis();
  }
  //TProfile* prof = ExtractTObject<TProfile>().extract( histo_ );
  //if ( prof ) { prof->SetErrorOption("s"); }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::CompactHistoSet::histo(MonitorElement* me) { histo_ = me; }

// -----------------------------------------------------------------------------
//
uint32_t CommissioningTask::HistoSet::bin(float value) {
  if (!axis_) {
    return 0;
  }
  float range = axis_->GetXmax() - axis_->GetXmin();
  if (range > 0.) {
    int32_t bin = static_cast<int32_t>((value - axis_->GetXmin()) * (axis_->GetNbins() / range)) + 1;
    if (bin < 0) {
      return 0;
    } else if (bin > axis_->GetNbins()) {
      return static_cast<uint32_t>(axis_->GetNbins() + 1);
    } else {
      return bin;
    }
  } else {
    return 0;
  }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::book() {
  edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                << " No derived implementation exists!";
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::fill(const SiStripEventSummary& summary, const edm::DetSet<SiStripRawDigi>& digis) {
  edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                << " No derived implementation exists!";
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::fill(const SiStripEventSummary& summary,
                             const edm::DetSet<SiStripRawDigi>& digis,
                             const edm::DetSet<SiStripRawDigi>& digisAlt) {
  edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                << " No derived implementation exists!";
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::fill(const SiStripEventSummary& summary,
                             const edm::DetSet<SiStripRawDigi>& digis,
                             const edm::DetSet<SiStripRawDigi>& digisAlt,
                             const std::vector<uint16_t>& stripOnCluster) {
  edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                << " No derived implementation exists!";
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::fill(const SiStripEventSummary& summary,
                             const uint16_t& fed_id,
                             const std::map<uint16_t, float>& fed_ch) {
  edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                << " No derived implementation exists!";
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::update() {
  edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                << " No derived implementation exists!";
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::bookHistograms() {
  book();
  booked_ = true;
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::fillHistograms(const SiStripEventSummary& summary, const edm::DetSet<SiStripRawDigi>& digis) {
  if (!booked_) {
    edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                  << " Attempting to fill histos that haven't been booked yet!";
    return;
  }
  fillCntr_++;
  fill(summary, digis);
  if (updateFreq_ && !(fillCntr_ % updateFreq_)) {
    update();
  }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::fillHistograms(const SiStripEventSummary& summary,
                                       const edm::DetSet<SiStripRawDigi>& digis,
                                       const edm::DetSet<SiStripRawDigi>& digisAlt) {
  if (!booked_) {
    edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                  << " Attempting to fill histos that haven't been booked yet!";
    return;
  }
  fillCntr_++;
  fill(summary, digis, digisAlt);
  if (updateFreq_ && !(fillCntr_ % updateFreq_)) {
    update();
  }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::fillHistograms(const SiStripEventSummary& summary,
                                       const edm::DetSet<SiStripRawDigi>& digis,
                                       const edm::DetSet<SiStripRawDigi>& digisAlt,
                                       const std::vector<uint16_t>& stripOnCluster) {
  if (!booked_) {
    edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                  << " Attempting to fill histos that haven't been booked yet!";
    return;
  }
  fillCntr_++;
  fill(summary, digis, digisAlt, stripOnCluster);
  if (updateFreq_ && !(fillCntr_ % updateFreq_)) {
    update();
  }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::fillHistograms(const SiStripEventSummary& summary,
                                       const uint16_t& fed_id,
                                       const std::map<uint16_t, float>& fed_ch) {
  if (!booked_) {
    edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                  << " Attempting to fill histos that haven't been booked yet!";
    return;
  }
  fillCntr_++;
  fill(summary, fed_id, fed_ch);
  if (updateFreq_ && !(fillCntr_ % updateFreq_)) {
    update();
  }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::updateHistograms() { update(); }

// -----------------------------------------------------------------------------
//
void CommissioningTask::updateHistoSet(HistoSet& histo_set, const uint32_t& bin) {
  float value = 1.;
  updateHistoSet(histo_set, bin, value);
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::updateHistoSet(CompactHistoSet& histo_set, const uint32_t& bin) {
  short value = 1;
  updateHistoSet(histo_set, bin, value);
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::updateHistoSet(HistoSet& histo_set, const float& value) {
  float weight = 1.;
  updateHistoSet(histo_set, histo_set.bin(value), weight);
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::updateHistoSet(HistoSet& histo_set, const uint32_t& bin, const float& value) {
  // Check bin number
  if (bin >= histo_set.vNumOfEntries_.size() && !histo_set.explicitFill_) {
    edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                  << " Unexpected bin number " << bin << " when filling histogram of size "
                                  << histo_set.vNumOfEntries_.size();
    return;
  }

  // Check if histo is TProfile or not
  if (!histo_set.isProfile_) {
    // Set entries
    if (histo_set.explicitFill_) {
      float origVal = histo_set.histo()->getBinContent(bin + 1);
      histo_set.histo()->setBinContent(bin + 1, origVal + value);
    } else {
      histo_set.vNumOfEntries_[bin] += value;
    }
  } else {
    // Set entries
    histo_set.vNumOfEntries_[bin]++;

    // Check bin number
    if (bin >= histo_set.vSumOfContents_.size() || bin >= histo_set.vSumOfSquares_.size()) {
      edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                    << " Unexpected bin when filling histogram: " << bin;
      return;
    }

    // Set sum of contents and squares
    histo_set.vSumOfContents_[bin] += value;
    histo_set.vSumOfSquares_[bin] += value * value;
  }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::updateHistoSet(CompactHistoSet& histo_set, const uint32_t& bin, const short& value) {
  // Check bin number
  if (bin >= histo_set.vNumOfEntries_.size() && !histo_set.explicitFill_) {
    edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                  << " Unexpected bin number " << bin << " when filling histogram of size "
                                  << histo_set.vNumOfEntries_.size();
    return;
  }

  if (histo_set.explicitFill_) {
    float origVal = histo_set.histo()->getBinContent(bin + 1);
    histo_set.histo()->setBinContent(bin + 1, origVal + value);
  } else {
    // Set entries
    histo_set.vNumOfEntries_[bin] += value;
  }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::updateHistoSet(HistoSet& histo_set) {
  // Check if histo exists
  if (!histo_set.histo()) {
    edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                  << " NULL pointer to MonitorElement!";
    return;
  }

  if (!histo_set.explicitFill_) {
    if (histo_set.isProfile_) {
      TProfile* prof = ExtractTObject<TProfile>().extract(histo_set.histo());
      // if ( prof ) { prof->SetErrorOption("s"); } //@@ necessary?
      const static UpdateTProfile profile;
      for (uint32_t ibin = 0; ibin < histo_set.vNumOfEntries_.size(); ibin++) {
        profile.setBinContents(prof,
                               ibin + 1,
                               histo_set.vNumOfEntries_[ibin],
                               histo_set.vSumOfContents_[ibin],
                               histo_set.vSumOfSquares_[ibin]);
      }

    } else {
      for (uint32_t ibin = 0; ibin < histo_set.vNumOfEntries_.size(); ibin++) {
        histo_set.histo()->setBinContent(ibin + 1, histo_set.vNumOfEntries_[ibin]);
      }
    }
  }
}

// -----------------------------------------------------------------------------
//
void CommissioningTask::updateHistoSet(CompactHistoSet& histo_set) {
  // Check if histo exists
  if (!histo_set.histo()) {
    edm::LogWarning(mlDqmSource_) << "[CommissioningTask::" << __func__ << "]"
                                  << " NULL pointer to MonitorElement!";
    return;
  }

  if (!histo_set.explicitFill_) {
    for (uint32_t ibin = 0; ibin < histo_set.vNumOfEntries_.size(); ibin++) {
      histo_set.histo()->setBinContent(ibin + 1, histo_set.vNumOfEntries_[ibin]);
    }
  }
}