CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Protected Attributes
hcaldqm::DQClient Class Reference

#include <DQClient.h>

Inheritance diagram for hcaldqm::DQClient:
hcaldqm::DQModule hcaldqm::DigiRunSummary hcaldqm::PedestalRunSummary hcaldqm::RawRunSummary hcaldqm::RecoRunSummary hcaldqm::TPRunSummary

Classes

struct  LSSummary
 

Public Member Functions

virtual void beginRun (edm::Run const &, edm::EventSetup const &)
 
 DQClient (std::string const &, std::string const &, edm::ParameterSet const &)
 
virtual std::vector< flag::FlagendJob (DQMStore::IBooker &, DQMStore::IGetter &)
 
virtual void endLuminosityBlock (DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &)
 
virtual ~DQClient ()
 
- Public Member Functions inherited from hcaldqm::DQModule
 DQModule (edm::ParameterSet const &)
 
virtual ~DQModule ()(false)
 

Protected Attributes

HcalElectronicsMap const * _emap
 
int _maxProcessedLS
 
std::string _taskname
 
int _totalLS
 
std::vector< uint32_t > _vcdaqEids
 
std::vector< int > _vCrates
 
std::vector< int > _vFEDs
 
std::vector< uint32_t > _vhashCrates
 
std::vector< uint32_t > _vhashFEDs
 
ContainerXXX< uint32_t > _xQuality
 
- Protected Attributes inherited from hcaldqm::DQModule
int _currentLS
 
int _debug
 
int _evsPerLS
 
int _evsTotal
 
Logger _logger
 
int _maxLS
 
ModuleType _mtype
 
std::string _name
 
ProcessingType _ptype
 
std::string _runkeyName
 
int _runkeyVal
 
std::string _subsystem
 

Detailed Description

Definition at line 25 of file DQClient.h.

Constructor & Destructor Documentation

hcaldqm::DQClient::DQClient ( std::string const &  name,
std::string const &  taskname,
edm::ParameterSet const &  ps 
)

Definition at line 5 of file DQClient.cc.

References hcaldqm::DQModule::_name, and dataset::name.

6  :
7  DQModule(ps),_taskname(taskname), _maxProcessedLS(0)
8  {
9  // - SET THE TASK NAME YOU REFER TO
10  // - SET THE CLIENT'S NAME AS WELL - RUN SUMMARY PLOTS
11  // WILL BE GENERATED UNDER THAT FOLDER
12  _name = name;
13  }
std::string _taskname
Definition: DQClient.h:47
std::string _name
Definition: DQModule.h:57
DQModule(edm::ParameterSet const &)
Definition: DQModule.cc:6
virtual hcaldqm::DQClient::~DQClient ( )
inlinevirtual

Definition at line 30 of file DQClient.h.

References beginRun(), endJob(), and endLuminosityBlock().

30 {}

Member Function Documentation

void hcaldqm::DQClient::beginRun ( edm::Run const &  r,
edm::EventSetup const &  es 
)
virtual

Reimplemented in hcaldqm::DigiRunSummary, hcaldqm::PedestalRunSummary, hcaldqm::RawRunSummary, hcaldqm::RecoRunSummary, and hcaldqm::TPRunSummary.

Definition at line 15 of file DQClient.cc.

References _emap, hcaldqm::DQModule::_ptype, _vcdaqEids, _vCrates, _vFEDs, _vhashCrates, _vhashFEDs, _xQuality, hcaldqm::hashfunctions::fDChannel, hcaldqm::utilities::fed2crate(), hcaldqm::constants::FED_uTCA_MIN, hcaldqm::constants::FED_VME_MAX, hcaldqm::constants::FED_VME_MIN, hcaldqm::constants::FIBER_uTCA_MIN1, hcaldqm::constants::FIBER_VME_MIN, hcaldqm::constants::FIBERCH_MIN, edm::EventSetup::find(), edm::eventsetup::heterocontainer::HCTypeTag::findType(), hcaldqm::fOffline, HcalGenericDetId::genericSubdet(), edm::EventSetup::get(), HcalCondObjectContainer< Item >::getAllChannels(), hcaldqm::utilities::getCrateHashMap(), hcaldqm::utilities::getCrateList(), hcaldqm::utilities::getFEDList(), HcalDbService::getHcalMapping(), reco::JetExtendedAssociation::getValue(), HcalCondObjectContainer< Item >::getValues(), HcalGenericDetId::HcalGenUnknown, hcaldqm::ContainerXXX< STDTYPE >::initialize(), HcalGenericDetId::isHcalDetId(), RunInfo::m_fed_in, RecoTauDiscriminantConfiguration::mask, FEDNumbering::MAXHCALuTCAFEDID, edm::ESHandle< T >::product(), hcaldqm::ContainerXXX< STDTYPE >::push(), HcalElectronicsId::rawId(), hcaldqm::constants::SLOT_uTCA_MIN, and hcaldqm::constants::SPIGOT_MIN.

Referenced by hcaldqm::DigiRunSummary::beginRun(), hcaldqm::TPRunSummary::beginRun(), hcaldqm::RecoRunSummary::beginRun(), hcaldqm::RawRunSummary::beginRun(), hcaldqm::PedestalRunSummary::beginRun(), and ~DQClient().

17  {
18  // TEMPORARY
19  _vhashFEDs.clear(); _vcdaqEids.clear();
20 
21  // get various FED lists
23  es.get<HcalDbRecord>().get(dbs);
24  _emap = dbs->getHcalMapping();
25 
26  if (_ptype != fOffline) { // hidefed2crate
28  for (std::vector<int>::const_iterator it=_vFEDs.begin();
29  it!=_vFEDs.end(); ++it)
30  {
31  //
32  // FIXME
33  // until there exists a map of FED2Crate and Crate2FED,
34  // all the unknown Crates will be mapped to 0...
35  //
36  if (*it==0)
37  {
38  _vhashFEDs.push_back(HcalElectronicsId(
40  FIBERCH_MIN, false).rawId());
41  continue;
42  }
43 
44  if (*it>FED_VME_MAX)
45  {
46  std::pair<uint16_t, uint16_t> cspair = utilities::fed2crate(*it);
47  _vhashFEDs.push_back(HcalElectronicsId(
48  cspair.first, cspair.second, FIBER_uTCA_MIN1,
49  FIBERCH_MIN, false).rawId());
50  }
51  else
53  FIBER_VME_MIN, SPIGOT_MIN, (*it)-FED_VME_MIN).rawId());
54  }
55 
56  // get FEDs registered @cDAQ
59  "RunInfoRcd"));
60  if (es.find(recordKey))
61  {
63  es.get<RunInfoRcd>().get(ri);
64  std::vector<int> vfeds=ri->m_fed_in;
65  for (std::vector<int>::const_iterator it=vfeds.begin();
66  it!=vfeds.end(); ++it)
67  {
68  if (*it>=constants::FED_VME_MIN && *it<=FED_VME_MAX)
69  _vcdaqEids.push_back(HcalElectronicsId(
72  (*it)-FED_VME_MIN).rawId());
73  else if (*it>=constants::FED_uTCA_MIN &&
75  {
76  std::pair<uint16_t, uint16_t> cspair = utilities::fed2crate(*it);
77  _vcdaqEids.push_back(HcalElectronicsId(
78  cspair.first, cspair.second,
79  FIBER_uTCA_MIN1, FIBERCH_MIN, false).rawId());
80  }
81  }
82  }
83  } else {
85  std::map<int, uint32_t> crateHashMap = utilities::getCrateHashMap(_emap);
86  for (auto& it_crate : _vCrates) {
87  _vhashCrates.push_back(crateHashMap[it_crate]);
88  }
89  }
90 
91  // get the Channel Quality masks
94  es.get<HcalChannelQualityRcd>().get("withTopo", hcq);
95  const HcalChannelQuality *cq = hcq.product();
96  std::vector<DetId> detids = cq->getAllChannels();
97  for (std::vector<DetId>::const_iterator it=detids.begin();
98  it!=detids.end(); ++it)
99  {
100  if (HcalGenericDetId(*it).genericSubdet()==
102  continue;
103 
104  if (HcalGenericDetId(*it).isHcalDetId())
105  {
106  HcalDetId did(*it);
107  uint32_t mask=(cq->getValues(did))->getValue();
108  if (mask!=0)
109  _xQuality.push(did, mask);
110  }
111  }
112  }
std::vector< uint32_t > _vcdaqEids
Definition: DQClient.h:68
std::pair< uint16_t, uint16_t > fed2crate(int fed)
Definition: Utilities.cc:13
uint32_t rawId() const
std::vector< uint32_t > _vhashFEDs
Definition: DQClient.h:62
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:93
virtual void push(HcalDetId const &, STDTYPE)
Definition: ContainerXXX.h:285
HcalElectronicsMap const * _emap
Definition: DQClient.h:54
ContainerXXX< uint32_t > _xQuality
Definition: DQClient.h:65
const Item * getValues(DetId fId, bool throwOnFail=true) const
int const FIBER_VME_MIN
Definition: Constants.h:98
std::vector< uint32_t > _vhashCrates
Definition: DQClient.h:58
int const FED_uTCA_MIN
Definition: Constants.h:60
int const FIBERCH_MIN
Definition: Constants.h:108
std::vector< int > _vCrates
Definition: DQClient.h:57
ProcessingType _ptype
Definition: DQModule.h:59
int const FED_VME_MIN
Definition: Constants.h:55
std::vector< DetId > getAllChannels() const
std::vector< int > m_fed_in
Definition: RunInfo.h:26
int const FIBER_uTCA_MIN1
Definition: Constants.h:101
std::map< int, uint32_t > getCrateHashMap(HcalElectronicsMap const *emap)
Definition: Utilities.cc:68
bool isHcalDetId() const
std::vector< int > getCrateList(HcalElectronicsMap const *emap)
Definition: Utilities.cc:54
std::vector< int > _vFEDs
Definition: DQClient.h:61
std::vector< int > getFEDList(HcalElectronicsMap const *)
Definition: Utilities.cc:86
const HcalElectronicsMap * getHcalMapping() const
const JetExtendedData & getValue(const Container &, const reco::JetBaseRef &)
get value for the association. Throw exception if no association found
virtual void initialize(hashfunctions::HashType, int debug=0)
Definition: ContainerXXX.h:91
HcalGenericSubdetector genericSubdet() const
int const FED_VME_MAX
Definition: Constants.h:56
T const * product() const
Definition: ESHandle.h:86
Readout chain identification for Hcal.
int const SLOT_uTCA_MIN
Definition: Constants.h:80
std::vector< flag::Flag > hcaldqm::DQClient::endJob ( DQMStore::IBooker ,
DQMStore::IGetter  
)
virtual

Reimplemented in hcaldqm::DigiRunSummary, hcaldqm::PedestalRunSummary, hcaldqm::RawRunSummary, hcaldqm::RecoRunSummary, and hcaldqm::TPRunSummary.

Definition at line 124 of file DQClient.cc.

Referenced by ~DQClient().

126  {
127  return std::vector<flag::Flag>();
128  }
void hcaldqm::DQClient::endLuminosityBlock ( DQMStore::IBooker ,
DQMStore::IGetter ,
edm::LuminosityBlock const &  lb,
edm::EventSetup const &   
)
virtual

Member Data Documentation

HcalElectronicsMap const* hcaldqm::DQClient::_emap
protected
int hcaldqm::DQClient::_maxProcessedLS
protected
std::string hcaldqm::DQClient::_taskname
protected
int hcaldqm::DQClient::_totalLS
protected

Definition at line 50 of file DQClient.h.

Referenced by endLuminosityBlock().

std::vector<uint32_t> hcaldqm::DQClient::_vcdaqEids
protected

Definition at line 68 of file DQClient.h.

Referenced by beginRun(), and hcaldqm::RawRunSummary::endLuminosityBlock().

std::vector<int> hcaldqm::DQClient::_vCrates
protected

Definition at line 57 of file DQClient.h.

Referenced by beginRun().

std::vector<int> hcaldqm::DQClient::_vFEDs
protected

Definition at line 61 of file DQClient.h.

Referenced by beginRun(), and hcaldqm::RawRunSummary::endJob().

std::vector<uint32_t> hcaldqm::DQClient::_vhashCrates
protected
std::vector<uint32_t> hcaldqm::DQClient::_vhashFEDs
protected
ContainerXXX<uint32_t> hcaldqm::DQClient::_xQuality
protected

Definition at line 65 of file DQClient.h.

Referenced by beginRun().