CMS 3D CMS Logo

DQHarvester.cc
Go to the documentation of this file.
2 
3 namespace hcaldqm
4 {
6  DQModule(ps)
7  {}
8 
9  /* virtual */ void DQHarvester::beginRun(edm::Run const& r,
10  edm::EventSetup const& es)
11  {
12  if (_ptype==fLocal)
13  if (r.runAuxiliary().run()==1)
14  return;
15 
16  // TEMPORARY FIX
17  if (_ptype != fOffline) { // hidefed2crate
18  _vhashFEDs.clear();
19  _vcdaqEids.clear();
20  }
21 
22  // - get the Hcal Electronics Map
23  // - collect all the FED numbers and FED's rawIds
25  es.get<HcalDbRecord>().get(dbs);
26  _emap = dbs->getHcalMapping();
27 
28  if (_ptype != fOffline) { // hidefed2crate
30  for (std::vector<int>::const_iterator it=_vFEDs.begin();
31  it!=_vFEDs.end(); ++it)
32  {
33  //
34  // FIXME
35  // until there exists a map of FED2Crate and Crate2FED,
36  // all the unknown Crates will be mapped to 0...
37  //
38  if (*it==0)
39  {
40  _vhashFEDs.push_back(HcalElectronicsId(
42  FIBERCH_MIN, false).rawId());
43  continue;
44  }
45 
46  if (*it>FED_VME_MAX)
47  {
48  std::pair<uint16_t, uint16_t> cspair = utilities::fed2crate(*it);
49  _vhashFEDs.push_back(HcalElectronicsId(
50  cspair.first, cspair.second, FIBER_uTCA_MIN1,
51  FIBERCH_MIN, false).rawId());
52  }
53  else
55  FIBER_VME_MIN, SPIGOT_MIN, (*it)-FED_VME_MIN).rawId());
56  }
57 
58  // get the FEDs registered at cDAQ
61  "RunInfoRcd"));
62  if (es.find(recordKey))
63  {
65  es.get<RunInfoRcd>().get(ri);
66  std::vector<int> vfeds= ri->m_fed_in;
67  for (std::vector<int>::const_iterator it=vfeds.begin();
68  it!=vfeds.end(); ++it)
69  {
70  if (*it>=constants::FED_VME_MIN && *it<=FED_VME_MAX)
71  _vcdaqEids.push_back(HcalElectronicsId(
74  (*it)-FED_VME_MIN).rawId());
75  else if (*it>=constants::FED_uTCA_MIN &&
77  {
78  std::pair<uint16_t, uint16_t> cspair = utilities::fed2crate(*it);
79  _vcdaqEids.push_back(HcalElectronicsId(
80  cspair.first, cspair.second,
81  FIBER_uTCA_MIN1, FIBERCH_MIN, false).rawId());
82  }
83  }
84  }
85  } else {
87  std::map<int, uint32_t> crateHashMap = utilities::getCrateHashMap(_emap);
88  for (auto& it_crate : _vCrates) {
89  _vhashCrates.push_back(crateHashMap[it_crate]);
90  }
91  }
92 
93  // get the Hcal Channels Quality for channels that are not 0
96  es.get<HcalChannelQualityRcd>().get("withTopo", hcq);
97  const HcalChannelQuality *cq = hcq.product();
98  std::vector<DetId> detids = cq->getAllChannels();
99  for (std::vector<DetId>::const_iterator it=detids.begin();
100  it!=detids.end(); ++it)
101  {
102  if (HcalGenericDetId(*it).genericSubdet()==
104  continue;
105 
106  if (HcalGenericDetId(*it).isHcalDetId())
107  {
108  HcalDetId did(*it);
109  uint32_t mask = (cq->getValues(did))->getValue();
110  if (mask!=0)
111  _xQuality.push(did, mask);
112  }
113  }
114  }
115 
118  edm::LuminosityBlock const& lb, edm::EventSetup const& es)
119  {
120  // should be the same - just in case!
122  _totalLS++;
123  _dqmEndLuminosityBlock(ib, ig, lb, es);
124  }
126  DQMStore::IGetter& ig)
127  {
128  _dqmEndJob(ib, ig);
129  }
130 }
ContainerXXX< uint32_t > _xQuality
Definition: DQHarvester.h:45
std::vector< uint32_t > _vhashFEDs
Definition: DQHarvester.h:43
std::pair< uint16_t, uint16_t > fed2crate(int fed)
Definition: Utilities.cc:12
uint32_t rawId() const
virtual void _dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &)=0
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
int const SPIGOT_MIN
Definition: Constants.h:136
virtual void push(HcalDetId const &, STDTYPE)
Definition: ContainerXXX.h:285
const Item * getValues(DetId fId, bool throwOnFail=true) const
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &) override
Definition: DQHarvester.cc:116
int const FIBER_VME_MIN
Definition: Constants.h:141
int const FED_uTCA_MIN
Definition: Constants.h:103
int const FIBERCH_MIN
Definition: Constants.h:151
const eventsetup::EventSetupRecord * find(const eventsetup::EventSetupRecordKey &) const
Definition: EventSetup.cc:91
LuminosityBlockNumber_t luminosityBlock() const
ProcessingType _ptype
Definition: DQModule.h:59
int const FED_VME_MIN
Definition: Constants.h:98
std::vector< DetId > getAllChannels() const
std::vector< int > m_fed_in
Definition: RunInfo.h:26
virtual void _dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &)=0
int const FIBER_uTCA_MIN1
Definition: Constants.h:144
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
Definition: DQHarvester.cc:125
RunAuxiliary const & runAuxiliary() const override
Definition: Run.h:62
std::map< int, uint32_t > getCrateHashMap(HcalElectronicsMap const *emap)
Definition: Utilities.cc:77
bool isHcalDetId() const
std::vector< int > getCrateList(HcalElectronicsMap const *emap)
Definition: Utilities.cc:63
HcalElectronicsMap const * _emap
Definition: DQHarvester.h:32
std::vector< uint32_t > _vhashCrates
Definition: DQHarvester.h:39
DQHarvester(edm::ParameterSet const &)
Definition: DQHarvester.cc:5
std::vector< int > _vCrates
Definition: DQHarvester.h:38
const T & get() const
Definition: EventSetup.h:55
std::vector< int > getFEDList(HcalElectronicsMap const *)
Definition: Utilities.cc:95
const HcalElectronicsMap * getHcalMapping() const
const JetExtendedData & getValue(const Container &, const reco::JetBaseRef &)
get value for the association. Throw exception if no association found
std::vector< int > _vFEDs
Definition: DQHarvester.h:42
std::vector< uint32_t > _vcdaqEids
Definition: DQHarvester.h:48
virtual void initialize(hashfunctions::HashType, int debug=0)
Definition: ContainerXXX.h:91
HcalGenericSubdetector genericSubdet() const
void beginRun(edm::Run const &, edm::EventSetup const &) override
Definition: DQHarvester.cc:9
int const FED_VME_MAX
Definition: Constants.h:99
T const * product() const
Definition: ESHandle.h:86
Readout chain identification for Hcal.
RunNumber_t run() const
Definition: RunAuxiliary.h:41
int const SLOT_uTCA_MIN
Definition: Constants.h:123
Definition: Run.h:43
ib
Definition: cuy.py:660