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
#include "DQM/RPCMonitorDigi/interface/RPCRawDataCountsHistoMaker.h"
#include "EventFilter/RPCRawToDigi/interface/RPCRawDataCounts.h"
#include "EventFilter/RPCRawToDigi/interface/DataRecord.h"
#include "EventFilter/RPCRawToDigi/interface/ReadoutError.h"

#include <vector>
#include <fmt/format.h>

TH1F* RPCRawDataCountsHistoMaker::emptyReadoutErrorHisto(int fedId) {
  const std::string str = fmt::format("readoutErrors_{}", fedId);
  TH1F* result = new TH1F(str.c_str(), str.c_str(), 9, 0.5, 9.5);
  for (unsigned int i = 1; i <= 9; ++i) {
    rpcrawtodigi::ReadoutError::ReadoutErrorType code = static_cast<rpcrawtodigi::ReadoutError::ReadoutErrorType>(i);
    result->GetXaxis()->SetBinLabel(i, rpcrawtodigi::ReadoutError::name(code).c_str());
  }
  return result;
}

TH1F* RPCRawDataCountsHistoMaker::emptyRecordTypeHisto(int fedId) {
  const std::string str = fmt::format("recordType_{}", fedId);
  TH1F* result = new TH1F(str.c_str(), str.c_str(), 9, 0.5, 9.5);
  result->SetTitleOffset(1.4, "x");
  for (unsigned int i = 1; i <= 9; ++i) {
    rpcrawtodigi::DataRecord::DataRecordType code = static_cast<rpcrawtodigi::DataRecord::DataRecordType>(i);
    result->GetXaxis()->SetBinLabel(i, rpcrawtodigi::DataRecord::name(code).c_str());
  }
  return result;
}

TH2F* RPCRawDataCountsHistoMaker::emptyReadoutErrorMapHisto(int fedId, int type) {
  rpcrawtodigi::ReadoutError::ReadoutErrorType code = static_cast<rpcrawtodigi::ReadoutError::ReadoutErrorType>(type);
  const std::string str = fmt::format("errors_{}_{}", rpcrawtodigi::ReadoutError::name(code), fedId);
  TH2F* result = new TH2F(str.c_str(), str.c_str(), 36, -0.5, 35.5, 18, -0.5, 17.5);
  result->GetXaxis()->SetNdivisions(512);
  result->GetYaxis()->SetNdivisions(505);
  result->SetXTitle("rmb");
  result->SetYTitle("link");
  result->SetStats(false);
  return result;
}