CMS 3D CMS Logo

FCDTask.cc
Go to the documentation of this file.
1 
3 
4 bool operator==(const FCDTask::FCDChannel& lhs, const FCDTask::FCDChannel& rhs) {
5  return ((lhs.crate == rhs.crate) && (lhs.slot == rhs.slot) && (lhs.fiber == rhs.fiber) && (lhs.fiberChannel == rhs.fiberChannel));
6 }
7 
8 
10 {
11  // tags
13  edm::InputTag("hcalDigis", "ZDC"));
14  _tokQIE10 = consumes<QIE10DigiCollection>(_tagQIE10);
15 
16  // channels
17  edm::ParameterSet channelPSet = ps.getParameter<edm::ParameterSet>("fcdChannels");
18  std::vector<int32_t> crates = channelPSet.getUntrackedParameter<std::vector<int32_t> >("crate");
19  std::vector<int32_t> slots = channelPSet.getUntrackedParameter<std::vector<int32_t> >("slot");
20  std::vector<int32_t> fibers = channelPSet.getUntrackedParameter<std::vector<int32_t> >("fiber");
21  std::vector<int32_t> fiberChannels = channelPSet.getUntrackedParameter<std::vector<int32_t> >("fiber_channel");
22  for (unsigned int i = 0; i < crates.size(); ++i) {
23  _channels.push_back({crates[i], slots[i], fibers[i], fiberChannels[i]});
24  }
25 }
26 
28  edm::Run const& r, edm::EventSetup const& es)
29 {
31  es.get<HcalDbRecord>().get(dbService);
32  _emap = dbService->getHcalMapping();
34 
35  ib.cd();
36 
37  //book histos per channel
38  std::string histoname;
39  std::vector<HcalGenericDetId> gids = _emap->allPrecisionId();
40  for (auto& it_gid : gids) {
41  if (it_gid.genericSubdet() != HcalGenericDetId::HcalGenZDC) {
42  continue;
43  }
45  for (auto& it_channel : _channels) {
46  if ((eid.crateId() == it_channel.crate) && (eid.slot() == it_channel.slot) && (eid.fiberIndex() == it_channel.fiber) && (eid.fiberChanId() == it_channel.fiberChannel)) {
47  _fcd_eids.push_back(eid);
48  }
49  }
50  }
51  for (auto& it_eid : _fcd_eids) {
52  // EM Pos
53  histoname = std::to_string(it_eid.crateId()) + "-" + std::to_string(it_eid.slot()) + "-" + std::to_string(it_eid.fiberIndex()) + "-" + std::to_string(it_eid.fiberChanId());
54  ib.setCurrentFolder("Hcal/FCDTask/ADC");
55  _cADC[it_eid] = ib.book1D( histoname.c_str(), histoname.c_str(), 256, 0, 256);
56  _cADC[it_eid]->setAxisTitle("ADC", 1);
57  _cADC[it_eid]->setAxisTitle("N", 2);
58 
59  ib.setCurrentFolder("Hcal/FCDTask/ADC_vs_TS"),
60  _cADC_vs_TS[it_eid] = ib.book2D( histoname.c_str(), histoname.c_str(), 10, 0, 10, 64, 0, 256);
61  _cADC_vs_TS[it_eid]->setAxisTitle("TS", 1);
62  _cADC_vs_TS[it_eid]->setAxisTitle("ADC", 2);
63 
64  ib.setCurrentFolder("Hcal/FCDTask/TDCTime");
65  _cTDCTime[it_eid] = ib.book1D( histoname.c_str(), histoname.c_str(), 500, 0., 250.);
66  _cTDCTime[it_eid]->setAxisTitle("TDC time [ns]", 1);
67 
68 
69  ib.setCurrentFolder("Hcal/FCDTask/TDC");
70  _cTDC[it_eid] = ib.book1D( histoname.c_str(), histoname.c_str(), 64, -0.5, 63.5);
71  _cTDC[it_eid]->setAxisTitle("TDC", 1);
72 
73  }
74 }
75 
76 
77 /* virtual */ void FCDTask::analyze(edm::Event const& e, edm::EventSetup const&)
78 {
80  if (!e.getByToken(_tokQIE10, digis))
81  edm::LogError("Collection QIE10DigiCollection for ZDC isn't available"
82  + _tagQIE10.label() + " " + _tagQIE10.instance());
83 
84  for ( auto it = digis->begin(); it != digis->end(); it++ ) {
85  const QIE10DataFrame digi = static_cast<const QIE10DataFrame>(*it);
86  HcalGenericDetId const& gdid = digi.detid();
88  if (std::find(_fcd_eids.begin(), _fcd_eids.end(), eid) == _fcd_eids.end()) {
89  continue;
90  }
91 
92  for ( int i = 0; i < digi.samples(); i++ ) {
93  // iter over all samples
94  _cADC[eid]->Fill(digi[i].adc());
95  _cADC_vs_TS[eid]->Fill(i, digi[i].adc());
96  _cTDC[eid]->Fill(digi[i].le_tdc());
97  if (digi[i].le_tdc() <= 50.) {
98  double tdctime = 25. * i + 0.5 * digi[i].le_tdc();
99  _cTDCTime[eid]->Fill(tdctime);
100  }
101  }
102  }
103 }
104 
105 
int adc(sample_type sample)
get the ADC sample (12 bits)
int samples() const
total number of samples in the digi
std::map< HcalElectronicsId, MonitorElement * > _cADC
Definition: FCDTask.h:38
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
FCDTask(edm::ParameterSet const &)
Definition: FCDTask.cc:9
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
void initialize(HcalElectronicsMap const *, ElectronicsMapType etype=fHcalElectronicsMap)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
const_iterator begin() const
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
std::vector< HcalElectronicsId > _fcd_eids
Definition: FCDTask.h:43
std::map< HcalElectronicsId, MonitorElement * > _cTDCTime
Definition: FCDTask.h:41
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:118
DetId detid() const
Get the detector id.
std::vector< HcalGenericDetId > allPrecisionId() const
constexpr int crateId() const
get the readout VME crate number
edm::InputTag _tagQIE10
Definition: FCDTask.h:34
bool operator==(const FCDTask::FCDChannel &lhs, const FCDTask::FCDChannel &rhs)
Definition: FCDTask.cc:4
constexpr int fiberIndex() const
get the fiber index. For VME 1-8 (which of eight fibers carried by a spigot), for uTCA fibers are zer...
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
std::vector< FCDChannel > _channels
Definition: FCDTask.h:44
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:136
std::map< HcalElectronicsId, MonitorElement * > _cADC_vs_TS
Definition: FCDTask.h:39
std::string const & label() const
Definition: InputTag.h:36
const_iterator end() const
constexpr int slot() const
get the htr or uHTR slot
edm::EDGetTokenT< QIE10DigiCollection > _tokQIE10
Definition: FCDTask.h:35
T get() const
Definition: EventSetup.h:63
const HcalElectronicsMap * getHcalMapping() const
constexpr int fiberChanId() const
get the fiber channel id (which of channels on a fiber)
HcalElectronicsMap const * _emap
Definition: FCDTask.h:45
std::map< HcalElectronicsId, MonitorElement * > _cTDC
Definition: FCDTask.h:40
Readout chain identification for Hcal.
std::string const & instance() const
Definition: InputTag.h:37
Definition: Run.h:44
ib
Definition: cuy.py:661
hcaldqm::electronicsmap::ElectronicsMap _ehashmap
Definition: FCDTask.h:46
void analyze(edm::Event const &, edm::EventSetup const &) override
Definition: FCDTask.cc:77
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Definition: FCDTask.cc:27