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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
|
// -*- C++ -*-
//
// Package: HcalCalibAlgos
// Class: RecAnalyzerMinbias
//
/**\class RecAnalyzerMinbias RecAnalyzerMinbias.cc Calibration/HcalCalibAlgos/test/RecAnalyzerMinbias.cc
Description: Performs phi-symmetry studies of HB/HE/HF channels
Implementation:
<Notes on implementation>
*/
//
// Original Author: Sunanda Banerjee
// Created: Thu Mar 4 18:52:02 CST 2012
//
//
// system include files
#include <memory>
#include <string>
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <map>
// user include files
#include "CondFormats/DataRecord/interface/HcalRespCorrsRcd.h"
#include "CondFormats/HcalObjects/interface/HcalRespCorrs.h"
#include "FWCore/Common/interface/TriggerNames.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "CommonTools/UtilAlgos/interface/TFileService.h"
#include "DataFormats/Common/interface/TriggerResults.h"
#include "DataFormats/HcalDetId/interface/HcalDetId.h"
#include "DataFormats/HcalDetId/interface/HcalSubdetector.h"
#include "DataFormats/HcalDigi/interface/HcalCalibrationEventTypes.h"
#include "DataFormats/HcalDigi/interface/HcalDigiCollections.h"
#include "DataFormats/HcalDigi/interface/HBHEDataFrame.h"
#include "DataFormats/HcalDigi/interface/HFDataFrame.h"
#include "DataFormats/HcalDigi/interface/HODataFrame.h"
#include "DataFormats/HcalRecHit/interface/HcalRecHitCollections.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerObjectMap.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerObjectMapRecord.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutRecord.h"
#include "SimDataFormats/GeneratorProducts/interface/GenEventInfoProduct.h"
#include "Geometry/CaloTopology/interface/HcalTopology.h"
#include "TH1D.h"
#include "TH2D.h"
#include "TMath.h"
#include "TProfile.h"
#include "TTree.h"
//#define EDM_ML_DEBUG
// class declaration
class RecAnalyzerMinbias : public edm::one::EDAnalyzer<edm::one::WatchRuns, edm::one::SharedResources> {
public:
explicit RecAnalyzerMinbias(const edm::ParameterSet&);
~RecAnalyzerMinbias() override = default;
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
private:
void analyze(edm::Event const&, edm::EventSetup const&) override;
void beginJob() override;
void endJob() override;
void beginRun(edm::Run const&, edm::EventSetup const&) override;
void endRun(edm::Run const&, edm::EventSetup const&) override {}
private:
void analyzeHcal(const HBHERecHitCollection&, const HFRecHitCollection&, int, bool, double);
// ----------member data ---------------------------
const bool runNZS_, Noise_, ignoreL1_;
const bool fillHist_, extraHist_;
const double eLowHB_, eHighHB_, eLowHE_, eHighHE_;
const double eLowHF_, eHighHF_, eMin_;
const int runMin_, runMax_;
const std::vector<int> trigbit_;
const std::string cfile_;
bool theRecalib_, init_;
std::map<DetId, double> corrFactor_;
std::vector<unsigned int> hcalID_;
TTree *myTree_, *myTree1_;
TH1D* h_[4];
TH2D *hbhe_, *hb_, *he_, *hf_;
TH1D *h_AmplitudeHBtest_, *h_AmplitudeHEtest_;
TH1D* h_AmplitudeHFtest_;
TH1D *h_AmplitudeHB_, *h_AmplitudeHE_, *h_AmplitudeHF_;
TProfile *hbherun_, *hbrun_, *herun_, *hfrun_;
std::vector<TH1D*> histo_;
std::map<HcalDetId, TH1D*> histHC_;
double rnnum_;
struct myInfo {
double theMB0, theMB1, theMB2, theMB3, theMB4, runcheck;
myInfo() { theMB0 = theMB1 = theMB2 = theMB3 = theMB4 = runcheck = 0; }
};
// Root tree members
double rnnumber;
int mysubd, depth, iphi, ieta, cells, trigbit;
float mom0_MB, mom1_MB, mom2_MB, mom3_MB, mom4_MB;
int HBHEsize, HFsize;
std::map<std::pair<int, HcalDetId>, myInfo> myMap_;
const edm::EDGetTokenT<HBHERecHitCollection> tok_hbherecoMB_;
const edm::EDGetTokenT<HFRecHitCollection> tok_hfrecoMB_;
const edm::EDGetTokenT<L1GlobalTriggerObjectMapRecord> tok_hltL1GtMap_;
const edm::EDGetTokenT<GenEventInfoProduct> tok_ew_;
const edm::EDGetTokenT<HBHEDigiCollection> tok_hbhedigi_;
const edm::EDGetTokenT<QIE11DigiCollection> tok_qie11digi_;
const edm::EDGetTokenT<HODigiCollection> tok_hodigi_;
const edm::EDGetTokenT<HFDigiCollection> tok_hfdigi_;
const edm::EDGetTokenT<QIE10DigiCollection> tok_qie10digi_;
const edm::EDGetTokenT<L1GlobalTriggerReadoutRecord> tok_gtRec_;
const edm::ESGetToken<HcalTopology, HcalRecNumberingRecord> tok_htopo_;
};
// constructors and destructor
RecAnalyzerMinbias::RecAnalyzerMinbias(const edm::ParameterSet& iConfig)
: runNZS_(iConfig.getParameter<bool>("runNZS")),
Noise_(iConfig.getParameter<bool>("noise")),
ignoreL1_(iConfig.getUntrackedParameter<bool>("ignoreL1", false)),
fillHist_(iConfig.getUntrackedParameter<bool>("fillHisto", false)),
extraHist_(iConfig.getUntrackedParameter<bool>("extraHisto", false)),
eLowHB_(iConfig.getParameter<double>("eLowHB")),
eHighHB_(iConfig.getParameter<double>("eHighHB")),
eLowHE_(iConfig.getParameter<double>("eLowHE")),
eHighHE_(iConfig.getParameter<double>("eHighHE")),
eLowHF_(iConfig.getParameter<double>("eLowHF")),
eHighHF_(iConfig.getParameter<double>("eHighHF")),
eMin_(iConfig.getUntrackedParameter<double>("eMin", 2.0)),
runMin_(iConfig.getUntrackedParameter<int>("RunMin", 308327)),
runMax_(iConfig.getUntrackedParameter<int>("RunMax", 315250)),
trigbit_(iConfig.getUntrackedParameter<std::vector<int>>("triggerBits")),
cfile_(iConfig.getUntrackedParameter<std::string>("corrFile")),
init_(false),
tok_hbherecoMB_(consumes<HBHERecHitCollection>(iConfig.getParameter<edm::InputTag>("hbheInputMB"))),
tok_hfrecoMB_(consumes<HFRecHitCollection>(iConfig.getParameter<edm::InputTag>("hfInputMB"))),
tok_hltL1GtMap_(consumes<L1GlobalTriggerObjectMapRecord>(edm::InputTag("hltL1GtObjectMap"))),
tok_ew_(consumes<GenEventInfoProduct>(edm::InputTag("generator"))),
tok_hbhedigi_(consumes<HBHEDigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"))),
tok_qie11digi_(consumes<QIE11DigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"))),
tok_hodigi_(consumes<HODigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"))),
tok_hfdigi_(consumes<HFDigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"))),
tok_qie10digi_(consumes<QIE10DigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"))),
tok_gtRec_(consumes<L1GlobalTriggerReadoutRecord>(edm::InputTag("gtDigisAlCaMB"))),
tok_htopo_(esConsumes<HcalTopology, HcalRecNumberingRecord, edm::Transition::BeginRun>()) {
usesResource("TFileService");
// get constants for DetID's
std::vector<int> ieta = iConfig.getUntrackedParameter<std::vector<int>>("hcalIeta");
std::vector<int> iphi = iConfig.getUntrackedParameter<std::vector<int>>("hcalIphi");
std::vector<int> depth = iConfig.getUntrackedParameter<std::vector<int>>("hcalDepth");
// Read correction factors
std::ifstream infile(cfile_.c_str());
if (!infile.is_open()) {
theRecalib_ = false;
edm::LogWarning("RecAnalyzerMinbias") << "Cannot open '" << cfile_ << "' for the correction file";
} else {
unsigned int ndets(0), nrec(0);
while (true) {
unsigned int id;
double cfac;
infile >> id >> cfac;
if (!infile.good())
break;
HcalDetId detId(id);
nrec++;
std::map<DetId, double>::iterator itr = corrFactor_.find(detId);
if (itr == corrFactor_.end()) {
corrFactor_[detId] = cfac;
ndets++;
}
}
infile.close();
edm::LogVerbatim("RecAnalyzerMinbias") << "Reads " << nrec << " correction factors for " << ndets << " detIds";
theRecalib_ = (ndets > 0);
}
edm::LogVerbatim("RecAnalyzerMinbias") << " Flags (ReCalib): " << theRecalib_ << " (IgnoreL1): " << ignoreL1_
<< " (NZS) " << runNZS_ << " and with " << ieta.size()
<< " detId for full histogram";
edm::LogVerbatim("RecAnalyzerMinbias") << "Thresholds for HB " << eLowHB_ << ":" << eHighHB_ << " for HE " << eLowHE_
<< ":" << eHighHE_ << " for HF " << eLowHF_ << ":" << eHighHF_;
for (unsigned int k = 0; k < ieta.size(); ++k) {
HcalSubdetector subd = ((std::abs(ieta[k]) > 29) ? HcalForward
: (std::abs(ieta[k]) > 16) ? HcalEndcap
: ((std::abs(ieta[k]) == 16) && (depth[k] == 3)) ? HcalEndcap
: (depth[k] == 4) ? HcalOuter
: HcalBarrel);
unsigned int id = (HcalDetId(subd, ieta[k], iphi[k], depth[k])).rawId();
hcalID_.push_back(id);
edm::LogVerbatim("RecAnalyzerMinbias") << "DetId[" << k << "] " << HcalDetId(id);
}
edm::LogVerbatim("RecAnalyzerMinbias") << "Select on " << trigbit_.size() << " L1 Trigger selection";
for (unsigned int k = 0; k < trigbit_.size(); ++k)
edm::LogVerbatim("RecAnalyzerMinbias") << "Bit[" << k << "] " << trigbit_[k];
}
void RecAnalyzerMinbias::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
std::vector<int> iarray;
edm::ParameterSetDescription desc;
desc.add<bool>("runNZS", true);
desc.add<bool>("noise", false);
desc.add<double>("eLowHB", 4);
desc.add<double>("eHighHB", 100);
desc.add<double>("eLowHE", 4);
desc.add<double>("eHighHE", 150);
desc.add<double>("eLowHF", 10);
desc.add<double>("eHighHF", 150);
// Suitable cutoff to remove fluctuation of pedestal
desc.addUntracked<double>("eMin", 2.0);
// The following run range is suited to study 2017 commissioning period
desc.addUntracked<int>("runMin", 308327);
desc.addUntracked<int>("runMax", 308347);
desc.addUntracked<std::vector<int>>("triggerBits", iarray);
desc.addUntracked<bool>("ignoreL1", false);
desc.addUntracked<std::string>("corrFile", "CorFactor.txt");
desc.addUntracked<bool>("fillHisto", false);
desc.addUntracked<bool>("extraHisto", false);
desc.addUntracked<std::vector<int>>("hcalIeta", iarray);
desc.addUntracked<std::vector<int>>("hcalIphi", iarray);
desc.addUntracked<std::vector<int>>("hcalDepth", iarray);
desc.add<edm::InputTag>("hbheInputMB", edm::InputTag("hbherecoMB"));
desc.add<edm::InputTag>("hfInputMB", edm::InputTag("hfrecoMB"));
desc.add<edm::InputTag>("gtDigisAlCaMB", edm::InputTag("gtDigisAlCaMB"));
desc.add<edm::InputTag>("hcalDigiCollectionTag", edm::InputTag("hcalDigis"));
descriptions.add("recAnalyzerMinbias", desc);
}
void RecAnalyzerMinbias::beginJob() {
edm::Service<TFileService> fs;
std::string hc[5] = {"Empty", "HB", "HE", "HO", "HF"};
char name[700], title[700];
hbhe_ = fs->make<TH2D>("hbhe", "Noise in HB/HE", 61, -30.5, 30.5, 72, 0.5, 72.5);
hb_ = fs->make<TH2D>("hb", "Noise in HB", 61, -16.5, 16.5, 72, 0.5, 72.5);
he_ = fs->make<TH2D>("he", "Noise in HE", 61, -30.5, 30.5, 72, 0.5, 72.5);
hf_ = fs->make<TH2D>("hf", "Noise in HF", 82, -41.5, 41.5, 72, 0.5, 72.5);
int nbin = (runMax_ - runMin_ + 1);
sprintf(title, "Fraction of channels in HB/HE with E > %4.1f GeV vs Run number", eMin_);
hbherun_ = fs->make<TProfile>("hbherun", title, nbin, runMin_ - 0.5, runMax_ + 0.5, 0.0, 1.0);
sprintf(title, "Fraction of channels in HB with E > %4.1f GeV vs Run number", eMin_);
hbrun_ = fs->make<TProfile>("hbrun", title, nbin, runMin_ - 0.5, runMax_ + 0.5, 0.0, 1.0);
sprintf(title, "Fraction of channels in HE with E > %4.1f GeV vs Run number", eMin_);
herun_ = fs->make<TProfile>("herun", title, nbin, runMin_ - 0.5, runMax_ + 0.5, 0.0, 1.0);
sprintf(title, "Fraction of channels in HF with E > %4.1f GeV vs Run number", eMin_);
hfrun_ = fs->make<TProfile>("hfrun", title, nbin, runMin_ - 0.5, runMax_ + 0.5, 0.0, 1.0);
for (int idet = 1; idet <= 4; idet++) {
sprintf(name, "%s", hc[idet].c_str());
sprintf(title, "Noise distribution for %s", hc[idet].c_str());
h_[idet - 1] = fs->make<TH1D>(name, title, 48, -6., 6.);
}
for (const auto& hcalid : hcalID_) {
HcalDetId id = HcalDetId(hcalid);
int subdet = id.subdetId();
sprintf(name, "%s%d_%d_%d", hc[subdet].c_str(), id.ieta(), id.iphi(), id.depth());
sprintf(title,
"Energy Distribution for %s ieta %d iphi %d depth %d",
hc[subdet].c_str(),
id.ieta(),
id.iphi(),
id.depth());
double xmin = (subdet == 4) ? -10 : -1;
double xmax = (subdet == 4) ? 90 : 9;
TH1D* hh = fs->make<TH1D>(name, title, 50, xmin, xmax);
histo_.push_back(hh);
};
if (extraHist_) {
h_AmplitudeHBtest_ = fs->make<TH1D>("h_AmplitudeHBtest", "", 5000, 0., 5000.);
h_AmplitudeHEtest_ = fs->make<TH1D>("h_AmplitudeHEtest", "", 3000, 0., 3000.);
h_AmplitudeHFtest_ = fs->make<TH1D>("h_AmplitudeHFtest", "", 10000, 0., 10000.);
h_AmplitudeHB_ = fs->make<TH1D>("h_AmplitudeHB", "", 100000, 0., 100000.);
h_AmplitudeHE_ = fs->make<TH1D>("h_AmplitudeHE", "", 300000, 0., 300000.);
h_AmplitudeHF_ = fs->make<TH1D>("h_AmplitudeHF", "", 100000, 0., 1000000.);
}
if (!fillHist_) {
myTree_ = fs->make<TTree>("RecJet", "RecJet Tree");
myTree_->Branch("cells", &cells, "cells/I");
myTree_->Branch("mysubd", &mysubd, "mysubd/I");
myTree_->Branch("depth", &depth, "depth/I");
myTree_->Branch("ieta", &ieta, "ieta/I");
myTree_->Branch("iphi", &iphi, "iphi/I");
myTree_->Branch("mom0_MB", &mom0_MB, "mom0_MB/F");
myTree_->Branch("mom1_MB", &mom1_MB, "mom1_MB/F");
myTree_->Branch("mom2_MB", &mom2_MB, "mom2_MB/F");
myTree_->Branch("mom3_MB", &mom3_MB, "mom3_MB/F");
myTree_->Branch("mom4_MB", &mom4_MB, "mom4_MB/F");
myTree_->Branch("trigbit", &trigbit, "trigbit/I");
myTree_->Branch("rnnumber", &rnnumber, "rnnumber/D");
}
myTree1_ = fs->make<TTree>("RecJet1", "RecJet1 Tree");
myTree1_->Branch("rnnum_", &rnnum_, "rnnum_/D");
myTree1_->Branch("HBHEsize", &HBHEsize, "HBHEsize/I");
myTree1_->Branch("HFsize", &HFsize, "HFsize/I");
myMap_.clear();
}
// EndJob
//
void RecAnalyzerMinbias::endJob() {
if (!fillHist_) {
cells = 0;
for (const auto& itr : myMap_) {
edm::LogVerbatim("RecAnalyzerMinbias") << "Fired trigger bit number " << itr.first.first;
myInfo info = itr.second;
if (info.theMB0 > 0) {
mom0_MB = info.theMB0;
mom1_MB = info.theMB1;
mom2_MB = info.theMB2;
mom3_MB = info.theMB3;
mom4_MB = info.theMB4;
rnnumber = info.runcheck;
trigbit = itr.first.first;
mysubd = itr.first.second.subdet();
depth = itr.first.second.depth();
iphi = itr.first.second.iphi();
ieta = itr.first.second.ieta();
edm::LogVerbatim("RecAnalyzerMinbias")
<< " Result= " << trigbit << " " << mysubd << " " << ieta << " " << iphi << " mom0 " << mom0_MB
<< " mom1 " << mom1_MB << " mom2 " << mom2_MB << " mom3 " << mom3_MB << " mom4 " << mom4_MB;
myTree_->Fill();
cells++;
}
}
edm::LogVerbatim("RecAnalyzerMinbias") << "cells " << cells;
}
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("RecAnalyzerMinbias") << "Exiting from RecAnalyzerMinbias::endjob";
#endif
}
void RecAnalyzerMinbias::beginRun(edm::Run const&, edm::EventSetup const& iS) {
if (!init_) {
init_ = true;
if (fillHist_) {
edm::Service<TFileService> fs;
const HcalTopology* hcaltopology = &iS.getData(tok_htopo_);
char name[700], title[700];
// For HB
int maxDepthHB = hcaltopology->maxDepthHB();
int nbinHB = (Noise_) ? 18 : int(2000 * eHighHB_);
double x_min = (Noise_) ? -3. : 0.;
double x_max = (Noise_) ? 3. : 2. * eHighHB_;
for (int eta = -50; eta < 50; eta++) {
for (int phi = 0; phi < 100; phi++) {
for (int depth = 1; depth <= maxDepthHB; depth++) {
HcalDetId cell(HcalBarrel, eta, phi, depth);
if (hcaltopology->valid(cell)) {
sprintf(name, "HBeta%dphi%ddep%d", eta, phi, depth);
sprintf(title, "HB #eta %d #phi %d depth %d", eta, phi, depth);
TH1D* h = fs->make<TH1D>(name, title, nbinHB, x_min, x_max);
histHC_[cell] = h;
}
}
}
}
// For HE
int maxDepthHE = hcaltopology->maxDepthHE();
int nbinHE = (Noise_) ? 18 : int(2000 * eHighHE_);
x_min = (Noise_) ? -3. : 0.;
x_max = (Noise_) ? 3. : 2. * eHighHE_;
for (int eta = -50; eta < 50; eta++) {
for (int phi = 0; phi < 100; phi++) {
for (int depth = 1; depth <= maxDepthHE; depth++) {
HcalDetId cell(HcalEndcap, eta, phi, depth);
if (hcaltopology->valid(cell)) {
sprintf(name, "HEeta%dphi%ddep%d", eta, phi, depth);
sprintf(title, "HE #eta %d #phi %d depth %d", eta, phi, depth);
TH1D* h = fs->make<TH1D>(name, title, nbinHE, x_min, x_max);
histHC_[cell] = h;
}
}
}
}
// For HF
int maxDepthHF = 4;
int nbinHF = (Noise_) ? 200 : int(2000 * eHighHF_);
x_min = (Noise_) ? -10. : 0.;
x_max = (Noise_) ? 10. : 2. * eHighHF_;
for (int eta = -50; eta < 50; eta++) {
for (int phi = 0; phi < 100; phi++) {
for (int depth = 1; depth <= maxDepthHF; depth++) {
HcalDetId cell(HcalForward, eta, phi, depth);
if (hcaltopology->valid(cell)) {
sprintf(name, "HFeta%dphi%ddep%d", eta, phi, depth);
sprintf(title, "Energy (HF #eta %d #phi %d depth %d)", eta, phi, depth);
TH1D* h = fs->make<TH1D>(name, title, nbinHF, x_min, x_max);
histHC_[cell] = h;
}
}
}
}
}
}
}
//
// member functions
//
// ------------ method called to produce the data ------------
void RecAnalyzerMinbias::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
rnnum_ = (double)iEvent.run();
if (extraHist_) {
double amplitudefullHB(0), amplitudefullHE(0), amplitudefullHF(0);
const edm::Handle<HBHEDigiCollection>& hbhedigi = iEvent.getHandle(tok_hbhedigi_);
if (hbhedigi.isValid()) {
for (auto const& digi : *(hbhedigi.product())) {
int nTS = digi.size();
double amplitudefullTSs = 0.;
if (digi.id().subdet() == HcalBarrel) {
if (nTS <= 10) {
for (int i = 0; i < nTS; i++)
amplitudefullTSs += digi.sample(i).adc();
h_AmplitudeHBtest_->Fill(amplitudefullTSs);
amplitudefullHB += amplitudefullTSs;
}
}
if (digi.id().subdet() == HcalEndcap) {
if (nTS <= 10) {
for (int i = 0; i < nTS; i++)
amplitudefullTSs += digi.sample(i).adc();
h_AmplitudeHEtest_->Fill(amplitudefullTSs);
amplitudefullHE += amplitudefullTSs;
}
}
}
}
const edm::Handle<QIE11DigiCollection>& qie11digi = iEvent.getHandle(tok_qie11digi_);
if (qie11digi.isValid()) {
for (QIE11DataFrame const digi : *(qie11digi.product())) {
double amplitudefullTSs = 0.;
if (HcalDetId(digi.id()).subdet() == HcalBarrel) {
for (int i = 0; i < digi.samples(); i++)
amplitudefullTSs += digi[i].adc();
h_AmplitudeHBtest_->Fill(amplitudefullTSs);
amplitudefullHB += amplitudefullTSs;
}
if (HcalDetId(digi.id()).subdet() == HcalEndcap) {
for (int i = 0; i < digi.samples(); i++)
amplitudefullTSs += digi[i].adc();
h_AmplitudeHEtest_->Fill(amplitudefullTSs);
amplitudefullHE += amplitudefullTSs;
}
}
}
const edm::Handle<HFDigiCollection>& hfdigi = iEvent.getHandle(tok_hfdigi_);
if (hfdigi.isValid()) {
for (auto const& digi : *(hfdigi.product())) {
int nTS = digi.size();
double amplitudefullTSs = 0.;
if (digi.id().subdet() == HcalForward) {
if (nTS <= 10) {
for (int i = 0; i < nTS; i++)
amplitudefullTSs += digi.sample(i).adc();
h_AmplitudeHFtest_->Fill(amplitudefullTSs);
amplitudefullHF += amplitudefullTSs;
}
}
}
}
const edm::Handle<QIE10DigiCollection>& qie10digi = iEvent.getHandle(tok_qie10digi_);
if (qie10digi.isValid()) {
for (QIE10DataFrame const digi : *(qie10digi.product())) {
double amplitudefullTSs = 0.;
if (HcalDetId(digi.id()).subdet() == HcalForward) {
for (int i = 0; i < digi.samples(); i++)
amplitudefullTSs += digi[i].adc();
h_AmplitudeHFtest_->Fill(amplitudefullTSs);
amplitudefullHF += amplitudefullTSs;
}
}
}
h_AmplitudeHB_->Fill(amplitudefullHB);
h_AmplitudeHE_->Fill(amplitudefullHE);
h_AmplitudeHF_->Fill(amplitudefullHF);
}
const edm::Handle<HBHERecHitCollection>& hbheMB = iEvent.getHandle(tok_hbherecoMB_);
if (!hbheMB.isValid()) {
edm::LogWarning("RecAnalyzerMinbias") << "HcalCalibAlgos: Error! can't get hbhe product!";
return;
}
const HBHERecHitCollection HithbheMB = *(hbheMB.product());
HBHEsize = HithbheMB.size();
edm::LogVerbatim("RecAnalyzerMinbias") << "HBHE MB size of collection " << HithbheMB.size();
if (HithbheMB.size() < 5100 && runNZS_) {
edm::LogWarning("RecAnalyzerMinbias") << "HBHE problem " << rnnum_ << " size " << HBHEsize;
}
const edm::Handle<HFRecHitCollection> hfMB = iEvent.getHandle(tok_hfrecoMB_);
if (!hfMB.isValid()) {
edm::LogWarning("RecAnalyzerMinbias") << "HcalCalibAlgos: Error! can't get hf product!";
return;
}
const HFRecHitCollection HithfMB = *(hfMB.product());
edm::LogVerbatim("RecAnalyzerMinbias") << "HF MB size of collection " << HithfMB.size();
HFsize = HithfMB.size();
if (HithfMB.size() < 1700 && runNZS_) {
edm::LogWarning("RecAnalyzerMinbias") << "HF problem " << rnnum_ << " size " << HFsize;
}
bool select(false);
if (!trigbit_.empty()) {
const edm::Handle<L1GlobalTriggerObjectMapRecord>& gtObjectMapRecord = iEvent.getHandle(tok_hltL1GtMap_);
if (gtObjectMapRecord.isValid()) {
const std::vector<L1GlobalTriggerObjectMap>& objMapVec = gtObjectMapRecord->gtObjectMap();
for (std::vector<L1GlobalTriggerObjectMap>::const_iterator itMap = objMapVec.begin(); itMap != objMapVec.end();
++itMap) {
bool resultGt = (*itMap).algoGtlResult();
if (resultGt) {
int algoBit = (*itMap).algoBitNumber();
if (std::find(trigbit_.begin(), trigbit_.end(), algoBit) != trigbit_.end()) {
select = true;
break;
}
}
}
}
}
if (!trigbit_.empty() || select)
myTree1_->Fill();
//event weight for FLAT sample and PU information
double eventWeight = 1.0;
const edm::Handle<GenEventInfoProduct>& genEventInfo = iEvent.getHandle(tok_ew_);
if (genEventInfo.isValid())
eventWeight = genEventInfo->weight();
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("RecAnalyzerMinbias") << "Test HB " << HBHEsize << " HF " << HFsize << " Trigger " << trigbit_.size()
<< ":" << select << ":" << ignoreL1_ << " Wt " << eventWeight;
#endif
if (ignoreL1_ || (!trigbit_.empty() && select)) {
analyzeHcal(HithbheMB, HithfMB, 1, true, eventWeight);
} else if ((!ignoreL1_) && (trigbit_.empty())) {
const edm::Handle<L1GlobalTriggerObjectMapRecord>& gtObjectMapRecord = iEvent.getHandle(tok_hltL1GtMap_);
if (gtObjectMapRecord.isValid()) {
const std::vector<L1GlobalTriggerObjectMap>& objMapVec = gtObjectMapRecord->gtObjectMap();
bool ok(false);
for (std::vector<L1GlobalTriggerObjectMap>::const_iterator itMap = objMapVec.begin(); itMap != objMapVec.end();
++itMap) {
bool resultGt = (*itMap).algoGtlResult();
if (resultGt) {
int algoBit = (*itMap).algoBitNumber();
analyzeHcal(HithbheMB, HithfMB, algoBit, (!ok), eventWeight);
ok = true;
}
}
if (!ok) {
edm::LogVerbatim("RecAnalyzerMinbias") << "No passed L1 Trigger found";
}
}
}
}
void RecAnalyzerMinbias::analyzeHcal(
const HBHERecHitCollection& HithbheMB, const HFRecHitCollection& HithfMB, int algoBit, bool fill, double weight) {
// Signal part for HB HE
int count(0), countHB(0), countHE(0), count2(0), count2HB(0), count2HE(0);
for (HBHERecHitCollection::const_iterator hbheItr = HithbheMB.begin(); hbheItr != HithbheMB.end(); hbheItr++) {
// Recalibration of energy
DetId mydetid = hbheItr->id().rawId();
double icalconst(1.);
if (theRecalib_) {
std::map<DetId, double>::iterator itr = corrFactor_.find(mydetid);
if (itr != corrFactor_.end())
icalconst = itr->second;
}
HBHERecHit aHit(hbheItr->id(), hbheItr->energy() * icalconst, hbheItr->time());
double energyhit = aHit.energy();
DetId id = (*hbheItr).detid();
HcalDetId hid = HcalDetId(id);
double eLow = (hid.subdet() == HcalEndcap) ? eLowHE_ : eLowHB_;
double eHigh = (hid.subdet() == HcalEndcap) ? eHighHE_ : eHighHB_;
++count;
if (id.subdetId() == HcalBarrel)
++countHB;
else
++countHE;
if (fill) {
for (unsigned int i = 0; i < hcalID_.size(); i++) {
if (hcalID_[i] == id.rawId()) {
histo_[i]->Fill(energyhit);
break;
}
}
if (fillHist_) {
std::map<HcalDetId, TH1D*>::iterator itr1 = histHC_.find(hid);
if (itr1 != histHC_.end())
itr1->second->Fill(energyhit);
}
h_[hid.subdet() - 1]->Fill(energyhit);
if (energyhit > eMin_) {
hbhe_->Fill(hid.ieta(), hid.iphi());
++count2;
if (id.subdetId() == HcalBarrel) {
++count2HB;
hb_->Fill(hid.ieta(), hid.iphi());
} else {
++count2HE;
he_->Fill(hid.ieta(), hid.iphi());
}
}
}
if (!fillHist_) {
if (Noise_ || runNZS_ || (energyhit >= eLow && energyhit <= eHigh)) {
std::map<std::pair<int, HcalDetId>, myInfo>::iterator itr1 =
myMap_.find(std::pair<int, HcalDetId>(algoBit, hid));
if (itr1 == myMap_.end()) {
myInfo info;
myMap_[std::pair<int, HcalDetId>(algoBit, hid)] = info;
itr1 = myMap_.find(std::pair<int, HcalDetId>(algoBit, hid));
}
itr1->second.theMB0 += weight;
itr1->second.theMB1 += (weight * energyhit);
itr1->second.theMB2 += (weight * energyhit * energyhit);
itr1->second.theMB3 += (weight * energyhit * energyhit * energyhit);
itr1->second.theMB4 += (weight * energyhit * energyhit * energyhit * energyhit);
itr1->second.runcheck = rnnum_;
}
}
} // HBHE_MB
if (fill) {
if (count > 0)
hbherun_->Fill(rnnum_, (double)(count2) / count);
if (countHB > 0)
hbrun_->Fill(rnnum_, (double)(count2HB) / countHB);
if (countHE > 0)
herun_->Fill(rnnum_, (double)(count2HE) / countHE);
}
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("RecAnalyzerMinbias") << "HBHE " << count2 << ":" << count << ":" << (double)(count2) / count
<< "\t HB " << count2HB << ":" << countHB << ":"
<< (double)(count2HB) / countHB << "\t HE " << count2HE << ":" << countHE
<< ":" << (double)(count2HE) / countHE;
#endif
int countHF(0), count2HF(0);
// Signal part for HF
for (HFRecHitCollection::const_iterator hfItr = HithfMB.begin(); hfItr != HithfMB.end(); hfItr++) {
// Recalibration of energy
DetId mydetid = hfItr->id().rawId();
double icalconst(1.);
if (theRecalib_) {
std::map<DetId, double>::iterator itr = corrFactor_.find(mydetid);
if (itr != corrFactor_.end())
icalconst = itr->second;
}
HFRecHit aHit(hfItr->id(), hfItr->energy() * icalconst, hfItr->time());
double energyhit = aHit.energy();
DetId id = (*hfItr).detid();
HcalDetId hid = HcalDetId(id);
++countHF;
if (fill) {
for (unsigned int i = 0; i < hcalID_.size(); i++) {
if (hcalID_[i] == id.rawId()) {
histo_[i]->Fill(energyhit);
break;
}
}
if (fillHist_) {
std::map<HcalDetId, TH1D*>::iterator itr1 = histHC_.find(hid);
if (itr1 != histHC_.end())
itr1->second->Fill(energyhit);
}
h_[hid.subdet() - 1]->Fill(energyhit);
if (energyhit > eMin_) {
hf_->Fill(hid.ieta(), hid.iphi());
++count2HF;
}
}
//
// Remove PMT hits
//
if (!fillHist_) {
if (((Noise_ || runNZS_) && fabs(energyhit) <= 40.) || (energyhit >= eLowHF_ && energyhit <= eHighHF_)) {
std::map<std::pair<int, HcalDetId>, myInfo>::iterator itr1 =
myMap_.find(std::pair<int, HcalDetId>(algoBit, hid));
if (itr1 == myMap_.end()) {
myInfo info;
myMap_[std::pair<int, HcalDetId>(algoBit, hid)] = info;
itr1 = myMap_.find(std::pair<int, HcalDetId>(algoBit, hid));
}
itr1->second.theMB0 += weight;
itr1->second.theMB1 += (weight * energyhit);
itr1->second.theMB2 += (weight * energyhit * energyhit);
itr1->second.theMB3 += (weight * energyhit * energyhit * energyhit);
itr1->second.theMB4 += (weight * energyhit * energyhit * energyhit * energyhit);
itr1->second.runcheck = rnnum_;
}
}
}
if (fill && countHF > 0)
hfrun_->Fill(rnnum_, (double)(count2HF) / countHF);
#ifdef EDM_ML_DEBUG
if (count)
edm::LogVerbatim("RecAnalyzerMinbias")
<< "HF " << count2HF << ":" << countHF << ":" << (double)(count2HF) / countHF;
#endif
}
//define this as a plug-in
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_MODULE(RecAnalyzerMinbias);
|