141 : _digicollectionToken(
146 _useCabling(iConfig.getUntrackedParameter<
bool>(
"useCabling",
true)),
148 : decltype(_detCablingWatcher){}),
149 _detCablingToken(_useCabling ? decltype(_detCablingToken){
esConsumes()} : decltype(_detCablingToken){}),
150 _phasepart(iConfig.getUntrackedParameter<
std::string>(
"phasePartition",
"None")),
151 _zs(iConfig.getUntrackedParameter<
bool>(
"zeroSuppressed",
true)),
152 _suffix(iConfig.getParameter<
std::string>(
"mapSuffix")),
154 _rhm(consumesCollector()) {
162 _nShots = tfserv->
make<TH1F>(
"nShots",
"Number of Shots per event", 200, -0.5, 199.5);
163 _nShots->GetXaxis()->SetTitle(
"Shots");
164 _nShots->GetYaxis()->SetTitle(
"Events");
165 _nShots->StatOverflows(kTRUE);
167 _whichAPV = tfserv->make<TH1F>(
"whichAPV",
"APV with shots", 6, -0.5, 5.5);
168 _whichAPV->GetXaxis()->SetTitle(
"APV");
169 _whichAPV->GetYaxis()->SetTitle(
"Shots");
171 _stripMult = tfserv->make<TH1F>(
"stripMultiplicity",
"Shot Strip Multiplicity", 129, -0.5, 128.5);
172 _stripMult->GetXaxis()->SetTitle(
"Number of Strips");
173 _stripMult->GetYaxis()->SetTitle(
"Shots");
175 _median = tfserv->make<TH1F>(
"median",
"APV Shot charge median", 256, -0.5, 255.5);
176 _median->GetXaxis()->SetTitle(
"Charge [ADC]");
177 _median->GetYaxis()->SetTitle(
"Shots");
179 _subDetector = tfserv->make<TH1F>(
"subDets",
"SubDetector Shot distribution", 10, -0.5, 9.5);
180 _subDetector->GetYaxis()->SetTitle(
"Shots");
182 _nShotsbxcycle = tfserv->make<TProfile>(
"nShotsBXcycle",
"Number of shots vs APV cycle bin", 70, -0.5, 69.5);
183 _nShotsbxcycle->GetXaxis()->SetTitle(
"Event BX mod(70)");
184 _nShotsbxcycle->GetYaxis()->SetTitle(
"APV shots");
186 _nShotsdbx = tfserv->make<TProfile>(
"nShotsDBX",
"Number of shots vs #Delta(BX)", 1000, -0.5, 999.5);
187 _nShotsdbx->GetXaxis()->SetTitle(
"Event #Delta(BX)");
188 _nShotsdbx->GetYaxis()->SetTitle(
"APV shots");
191 tfserv->make<TProfile>(
"nShotsDBXincycle",
"Number of shots vs #Delta(BX) w.r.t. APV cycle", 1000, -0.5, 999.5);
192 _nShotsdbxincycle->GetXaxis()->SetTitle(
"Event #Delta(BX) w.r.t. APV cycle");
193 _nShotsdbxincycle->GetYaxis()->SetTitle(
"APV shots");
196 tfserv->make<TProfile>(
"nShotsBXcycleprev",
"Number of shots vs APV cycle bin of previous L1A", 70, -0.5, 69.5);
197 _nShotsbxcycleprev->GetXaxis()->SetTitle(
"Previous L1A BX mod(70)");
198 _nShotsbxcycleprev->GetYaxis()->SetTitle(
"APV shots");
201 tfserv->make<TProfile>(
"nShotsDBXprev",
"Number of shots vs #Delta(BX) of previous L1A", 1000, -0.5, 999.5);
202 _nShotsdbxprev->GetXaxis()->SetTitle(
"Previous L1A #Delta(BX)");
203 _nShotsdbxprev->GetYaxis()->SetTitle(
"APV shots");
205 _nShotsdbxincycleprev = tfserv->make<TProfile>(
206 "nShotsDBXincycleprev",
"Number of shots vs #Delta(BX) w.r.t. APV cycle of previous L1A", 1000, -0.5, 999.5);
207 _nShotsdbxincycleprev->GetXaxis()->SetTitle(
"Previous L1A #Delta(BX) w.r.t. APV cycle");
208 _nShotsdbxincycleprev->GetYaxis()->SetTitle(
"APV shots");
210 _nShotsrun = _rhm.makeTH1F(
"nShotsrun",
"Number of Shots per event", 200, -0.5, 199.5);
212 _rhm.makeTProfile(
"nShotsVsTimerun",
"Mean number of shots vs orbit number", 4 * 500, 0, 500 * 262144);
213 _whichAPVrun = _rhm.makeTH1F(
"whichAPVrun",
"APV with shots", 6, -0.5, 5.5);
214 _stripMultrun = _rhm.makeTH1F(
"stripMultiplicityrun",
"Shot Strip Multiplicity", 129, -0.5, 128.5);
215 _medianrun = _rhm.makeTH1F(
"medianrun",
"APV Shot charge median", 256, -0.5, 255.5);
216 _subDetectorrun = _rhm.makeTH1F(
"subDetsrun",
"SubDetector Shot distribution", 10, -0.5, 9.5);
219 _fed = tfserv->make<TH1F>(
"fed",
"FED Shot distribution", 440, 50, 490);
220 _fed->GetYaxis()->SetTitle(
"Shots");
221 _fedrun = _rhm.makeTH1F(
"fedrun",
"FED Shot distribution", 440, 50, 490);
224 tfserv->make<TH2F>(
"channelvsfed",
"Channel vs FED Shot distribution", 440, 50, 490, 97, -0.5, 96.5);
225 _channelvsfed->GetXaxis()->SetTitle(
"FED");
226 _channelvsfed->GetYaxis()->SetTitle(
"Channel");
229 tfserv->make<TH2F>(
"nShotsVsFED",
"Number of Shots per event vs fedid", 440, 50, 490, 200, -0.5, 199.5);
230 _nShotsVsFED->GetXaxis()->SetTitle(
"fedId");
231 _nShots->GetYaxis()->SetTitle(
"Shots");
232 _nShots->GetZaxis()->SetTitle(
"Events");
233 _nShotsVsFED->StatOverflows(kTRUE);
235 _medianVsFED = tfserv->make<TH2F>(
"medianVsFED",
"APV Shot charge median vs fedid", 440, 50, 490, 256, -0.5, 255.5);
236 _medianVsFED->GetXaxis()->SetTitle(
"fedId");
237 _medianVsFED->GetYaxis()->SetTitle(
"Charge [ADC]");
238 _median->GetZaxis()->SetTitle(
"Shots");
267 tkhisto = std::make_unique<TkHistoMap>(tkDetMap,
"ShotMultiplicity",
"ShotMultiplicity", -1);
268 tkhisto2 = std::make_unique<TkHistoMap>(tkDetMap,
"StripMultiplicity",
"StripMultiplicity", -1);
292 std::vector<int> nshotsperFed;
296 nshotsperFed.resize(lNumFeds, 0);
300 const std::vector<APVShot>& shots = apvsf.
getShots();
302 for (std::vector<APVShot>::const_iterator shot = shots.begin(); shot != shots.end(); ++shot) {
303 if (shot->isGenuine()) {
306 uint32_t det = shot->detId();
308 int apvPair = shot->apvNumber() / 2;
316 lChannelId = theConn.
fedCh();
317 thelFEDId = theConn.
fedId();
320 <<
"connection of det " << det <<
" APV pair " << apvPair <<
" not found";
322 LogDebug(
"FED channels") << thelFEDId <<
" " << lChannelId;
329 for (uint32_t ch = 0; ch < conns.size(); ch++) {
330 if (conns[ch] && conns[ch]->isConnected()) {
332 LogDebug(
"ReadyForFEDid") <<
"Ready for FED id " << ch;
333 lFedId = conns[ch]->fedId();
334 LogDebug(
"FEDid") <<
"obtained FED id " << ch <<
" " << lFedId;
338 edm::LogWarning(
"InvalidFEDid") << lFedId <<
" for detid " << det <<
" connection " << ch;
345 edm::LogWarning(
"NoValidFEDid") << lFedId <<
"found for detid " << det;
349 if (lFedId != thelFEDId) {
350 edm::LogWarning(
"FEDidMismatch") <<
" Mismatch in FED id for det " << det <<
" APV pair " << apvPair <<
" : "
351 << lFedId <<
" vs " << thelFEDId;
357 LogDebug(
"ReadyToBeFilled") <<
" ready to be filled with " << thelFEDId <<
" " << lChannelId;
359 LogDebug(
"Filled") <<
" filled with " << thelFEDId <<
" " << lChannelId;
364 (*_fedrun)->Fill(lFedId);
376 (*_whichAPVrun)->Fill(shot->apvNumber());
378 (*_medianrun)->Fill(shot->median());
380 (*_stripMultrun)->Fill(shot->nStrips());
382 (*_subDetectorrun)->Fill(shot->subDet());
384 tkhisto2->fill(det, shot->nStrips());
392 (*_nShotsrun)->Fill(nshots);
404 for (uint16_t lFed(0); lFed < lNumFeds; lFed++) {
410 (*_nShotsVsTimerun)->Fill(
iEvent.orbitNumber(), nshots);
417 (*_nShotsrun)->GetXaxis()->SetTitle(
"Shots");
418 (*_nShotsrun)->GetYaxis()->SetTitle(
"Events");
419 (*_nShotsrun)->StatOverflows(kTRUE);
423 (*_nShotsVsTimerun)->GetXaxis()->SetTitle(
"Orbit");
424 (*_nShotsVsTimerun)->GetYaxis()->SetTitle(
"Number of Shots");
425 (*_nShotsVsTimerun)->SetCanExtend(TH1::kXaxis);
429 (*_whichAPVrun)->GetXaxis()->SetTitle(
"APV");
430 (*_whichAPVrun)->GetYaxis()->SetTitle(
"Shots");
434 (*_stripMultrun)->GetXaxis()->SetTitle(
"Number of Strips");
435 (*_stripMultrun)->GetYaxis()->SetTitle(
"Shots");
439 (*_medianrun)->GetXaxis()->SetTitle(
"Charge [ADC]");
440 (*_medianrun)->GetYaxis()->SetTitle(
"Shots");
444 (*_subDetectorrun)->GetYaxis()->SetTitle(
"Shots");
449 (*_fedrun)->GetYaxis()->SetTitle(
"Shots");
471 tkmap.
save(
true, 0, 0, tkshotmultmapname);
473 tkmap2.
save(
true, 0, 0, tkstripmultmapname);