199 combinatorialTracks_token_(
215 tkDetMapToken_(esConsumes<edm::Transition::BeginRun>()),
217 layers_(conf.getParameter<
int>(
"Layer")),
218 DEBUG_(conf.getUntrackedParameter<
bool>(
"Debug",
false)),
219 addLumi_(conf.getUntrackedParameter<
bool>(
"addLumi",
false)),
220 addCommonMode_(conf.getUntrackedParameter<
bool>(
"addCommonMode",
false)),
221 cutOnTracks_(conf.getParameter<
bool>(
"cutOnTracks")),
222 trackMultiplicityCut_(conf.getParameter<
unsigned int>(
"trackMultiplicity")),
223 useFirstMeas_(conf.getParameter<
bool>(
"useFirstMeas")),
224 useLastMeas_(conf.getParameter<
bool>(
"useLastMeas")),
225 useAllHitsFromTracksWithMissingHits_(conf.getParameter<
bool>(
"useAllHitsFromTracksWithMissingHits")),
226 doMissingHitsRecovery_(conf.getParameter<
bool>(
"doMissingHitsRecovery")),
227 clusterMatchingMethod_(conf.getParameter<
int>(
"ClusterMatchingMethod")),
228 resXSig_(conf.getParameter<
double>(
"ResXSig")),
229 clusterTracjDist_(conf.getParameter<
double>(
"ClusterTrajDist")),
230 stripsApvEdge_(conf.getParameter<
double>(
"StripsApvEdge")),
231 useOnlyHighPurityTracks_(conf.getParameter<
bool>(
"UseOnlyHighPurityTracks")),
232 bunchX_(conf.getUntrackedParameter<
int>(
"BunchCrossing", 0)),
233 showRings_(conf.getUntrackedParameter<
bool>(
"ShowRings",
false)),
234 showTOB6TEC9_(conf.getUntrackedParameter<
bool>(
"ShowTOB6TEC9",
false)) {
235 hitRecoveryCounters.resize(k_END_OF_LAYERS, 0);
236 hitTotalCounters.resize(k_END_OF_LAYERS, 0);
237 missHitPerLayer.resize(k_END_OF_LAYERS, 0);
240 nTEClayers_ = (showRings_ ? 7 : 9);
243 if (!badModulesFile.empty()) {
244 std::ifstream badModules_file(badModulesFile);
245 uint32_t badmodule_detid;
246 int mods, fiber1, fiber2, fiber3;
247 if (badModules_file.is_open()) {
249 while (getline(badModules_file,
line)) {
250 if (badModules_file.eof())
252 std::stringstream
ss(
line);
253 ss >> badmodule_detid >>
mods >> fiber1 >> fiber2 >> fiber3;
254 if (badmodule_detid != 0 &&
mods == 1 && (fiber1 == 1 || fiber2 == 1 || fiber3 == 1))
255 badModules_.insert(badmodule_detid);
257 badModules_file.close();
260 if (!badModules_.empty())
261 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Remove additionnal bad modules from the analysis: ";
262 for (
const auto badMod : badModules_) {
263 LogDebug(
"SiStripHitEfficiencyWorker") <<
" " << badMod;
271 h_bx = booker.
book1D(
"bx",
"bx", 3600, 0, 3600);
273 h_PU = booker.
book1D(
"PU",
"PU", 200, 0, 200);
274 h_nTracks = booker.
book1D(
"ntracks",
"n.tracks;n. tracks;n.events", 500, -0.5, 499.5);
284 booker.
book1D(
"goodlayer_found",
"goodlayer_found", 35, 0., 35.));
286 booker.
book1D(
"alllayer_found",
"alllayer_found", 35, 0., 35.));
290 "layer_found",
"layer_found", bounds::k_END_OF_LAYERS, 0., static_cast<float>(bounds::k_END_OF_LAYERS)),
292 "layer_total",
"layer_total", bounds::k_END_OF_LAYERS, 0., static_cast<float>(bounds::k_END_OF_LAYERS)));
299 auto ihres = booker.
book1D(Form(
"resol_layer_%i",
layer), lyrName, 125, -125., 125.);
306 booker.
book1D(Form(
"layerfound_vsLumi_layer_%i",
layer), lyrName, 100, 0, 25000)));
311 booker.
book1D(Form(
"layerfound_vsPU_layer_%i",
layer), lyrName, 45, 0, 90)));
316 booker.
book1D(Form(
"layerfound_vsCM_layer_%i",
layer), lyrName, 20, 0, 400)));
322 booker.
book1D(Form(
"totalVsBx_layer%i",
layer), Form(
"layer %i (%s)",
layer, lyrName.c_str()), 3565, 0, 3565),
323 booker.
book1D(Form(
"foundVsBx_layer%i",
layer), Form(
"layer %i (%s)",
layer, lyrName.c_str()), 3565, 0, 3565)));
327 if (
layer <= bounds::k_LayersAtTOBEnd) {
328 const bool isTIB =
layer <= bounds::k_LayersAtTIBEnd;
329 const auto partition = (isTIB ?
"TIB" :
"TOB");
330 const auto yMax = (isTIB ? 100 : 120);
333 Form(
"%s%i: Map of missing hits",
partition, (isTIB ?
layer :
layer - bounds::k_LayersAtTIBEnd));
338 ::replaceInString(
name,
":",
"");
342 ihhotcold->setBinLabel(1,
"360", 1);
343 ihhotcold->setBinLabel(50,
"180", 1);
344 ihhotcold->setBinLabel(100,
"0", 1);
345 ihhotcold->setAxisTitle(
"Global Z [cm]", 2);
346 ihhotcold->setOption(
"colz");
349 const bool isTID =
layer <= bounds::k_LayersAtTIDEnd;
351 (isTID ? std::vector<std::string>{
"TIDplus",
"TIDminus"} : std::vector<std::string>{
"TECplus",
"TECminus"});
352 const auto axMax = (isTID ? 100 : 120);
356 ::replaceInString(forTitle,
"minus",
"-");
357 ::replaceInString(forTitle,
"plus",
"+");
361 const auto&
name = Form(
"%s %i Map of Missing Hits",
363 (isTID ?
layer - bounds::k_LayersAtTOBEnd :
layer - bounds::k_LayersAtTIDEnd));
364 const auto& tit = Form(
"%s%i: Map of Missing Hits",
366 (isTID ?
layer - bounds::k_LayersAtTOBEnd :
layer - bounds::k_LayersAtTIDEnd));
368 auto ihhotcold = booker.
book2D(
name, tit, 100, -axMax, axMax, 100, -axMax, axMax);
370 ihhotcold->setBinLabel(1,
"+Y", 1);
371 ihhotcold->setBinLabel(50,
"0", 1);
372 ihhotcold->setBinLabel(100,
"-Y", 1);
373 ihhotcold->setAxisTitle(
"Global X", 2);
374 ihhotcold->setBinLabel(1,
"-X", 2);
375 ihhotcold->setBinLabel(50,
"0", 2);
376 ihhotcold->setBinLabel(100,
"+X", 2);
377 ihhotcold->setOption(
"colz");
389 EffTkMap(std::make_unique<TkHistoMap>(tkDetMap, booker, tkDetMapFolder,
"perModule_total", 0,
false,
true),
390 std::make_unique<TkHistoMap>(tkDetMap, booker, tkDetMapFolder,
"perModule_found", 0,
false,
true));
396 std::make_unique<TkHistoMap>(tkDetMap, booker, FEDErrorMapFolder,
"perModule_FEDErrors", 0,
false,
true);
404 LogDebug(
"SiStripHitEfficiencyWorker") <<
"beginning analyze from HitEff";
420 }
else if (metaData.
isValid()) {
424 edm::LogWarning(
"SiStripHitEfficiencyWorker") <<
"could not find a source for the Luminosity and PU";
452 for (
const auto& fedErr : *fedErrorIds) {
476 LogDebug(
"SiStripHitEfficiencyWorker") <<
"number ckf tracks found = " << tracksCKF->size();
486 if (!tracksCKF->empty()) {
490 LogDebug(
"SiStripHitEfficiencyWorker")
496 for (
const auto& trajTrack : *trajTrackAssociationHandle) {
500 auto TMeas = trajTrack.key->measurements();
510 bool hasMissingHits{
false};
511 int previous_layer{999};
512 std::vector<unsigned int> missedLayers;
514 for (
const auto& itm : TMeas) {
515 auto theHit = itm.recHit();
516 unsigned int iidd = theHit->geographicalId().rawId();
517 int layer = ::checkLayer(iidd, tTopo);
518 int missedLayer =
layer + 1;
519 int diffPreviousLayer = (
layer - previous_layer);
522 if (diffPreviousLayer == -2 && missedLayer > k_LayersStart && missedLayer < k_LayersAtTOBEnd) {
524 hasMissingHits =
true;
527 else if (diffPreviousLayer == -2 && (missedLayer > k_LayersAtTOBEnd + 1 && missedLayer <= k_LayersAtTIDEnd)) {
529 hasMissingHits =
true;
532 else if (diffPreviousLayer == -2 && missedLayer > k_LayersAtTIDEnd && missedLayer <= k_LayersAtTECEnd) {
534 hasMissingHits =
true;
538 if ((
layer > k_LayersStart &&
layer <= k_LayersAtTIBEnd) && (previous_layer == 12)) {
540 hasMissingHits =
true;
544 if ((
layer > k_LayersAtTIBEnd &&
layer <= k_LayersAtTOBEnd) && (previous_layer == 15)) {
546 hasMissingHits =
true;
550 hasMissingHits =
true;
553 missedLayers.push_back(
layer);
554 previous_layer =
layer;
559 unsigned int prev_TKlayers = 0;
560 for (
auto itm = TMeas.cbegin(); itm != TMeas.cend(); ++itm) {
561 const auto theInHit = (*itm).recHit();
566 LogDebug(
"SiStripHitEfficiencyWorker") <<
"theInHit is valid = " << theInHit->isValid();
568 unsigned int iidd = theInHit->geographicalId().rawId();
570 unsigned int TKlayers = ::checkLayer(iidd, tTopo);
576 LogDebug(
"SiStripHitEfficiencyWorker") <<
"TKlayer from trajectory: " << TKlayers <<
" from module = " << iidd
577 <<
" matched/stereo/rphi = " << ((iidd & 0x3) == 0) <<
"/" 578 << ((iidd & 0x3) == 1) <<
"/" << ((iidd & 0x3) == 2);
582 bool isFirstMeas = (itm == (TMeas.end() - 1));
583 bool isLastMeas = (itm == (TMeas.begin()));
596 if (TKlayers == bounds::k_LayersAtTOBEnd || TKlayers == bounds::k_LayersAtTECEnd) {
597 LogDebug(
"SiStripHitEfficiencyWorker") <<
"skipping original TM for TOB 6 or TEC 9";
601 std::vector<TrajectoryAtInvalidHit> TMs;
609 if (::isDoubleSided(iidd, tTopo) && ((iidd & 0x3) == 0)) {
612 TMs.emplace_back(*itm, tTopo, tkgeom,
propagator, 1);
613 TMs.emplace_back(*itm, tTopo, tkgeom,
propagator, 2);
614 }
else if (::isDoubleSided(iidd, tTopo) && (!::check2DPartner(iidd, TMeas))) {
617 TMs.emplace_back(*itm, tTopo, tkgeom,
propagator, 1);
618 TMs.emplace_back(*itm, tTopo, tkgeom,
propagator, 2);
619 LogDebug(
"SiStripHitEfficiencyWorker") <<
" found a hit with a missing partner";
622 TMs.emplace_back(*itm, tTopo, tkgeom,
propagator);
625 bool missingHitAdded{
false};
626 std::vector<TrajectoryMeasurement> tmpTmeas;
627 unsigned int misLayer = TKlayers + 1;
630 if (
int(TKlayers) -
int(prev_TKlayers) == -2) {
631 const DetLayer* detlayer = itm->layer();
634 std::vector<DetLayer::DetWithState> compatDets = detlayer->
compatibleDets(tsos, prop, chi2Estimator);
636 if (misLayer > k_LayersAtTIDEnd && misLayer < k_LayersAtTECEnd) {
637 std::vector<ForwardDetLayer const*> negTECLayers = measTracker.geometricSearchTracker()->negTecLayers();
638 std::vector<ForwardDetLayer const*> posTECLayers = measTracker.geometricSearchTracker()->posTecLayers();
639 const DetLayer* tecLayerneg = negTECLayers[misLayer - k_LayersAtTIDEnd - 1];
640 const DetLayer* tecLayerpos = posTECLayers[misLayer - k_LayersAtTIDEnd - 1];
641 if (tTopo->tecSide(iidd) == 1) {
642 tmpTmeas = layerMeasurements.measurements(*tecLayerneg, tsos, prop, chi2Estimator);
643 }
else if (tTopo->tecSide(iidd) == 2) {
644 tmpTmeas = layerMeasurements.measurements(*tecLayerpos, tsos, prop, chi2Estimator);
648 else if (misLayer == (k_LayersAtTIDEnd - 1) ||
649 misLayer == k_LayersAtTIDEnd) {
650 std::vector<ForwardDetLayer const*> negTIDLayers = measTracker.geometricSearchTracker()->negTidLayers();
651 std::vector<ForwardDetLayer const*> posTIDLayers = measTracker.geometricSearchTracker()->posTidLayers();
652 const DetLayer* tidLayerneg = negTIDLayers[misLayer - k_LayersAtTOBEnd - 1];
653 const DetLayer* tidLayerpos = posTIDLayers[misLayer - k_LayersAtTOBEnd - 1];
655 if (tTopo->tidSide(iidd) == 1) {
656 tmpTmeas = layerMeasurements.measurements(*tidLayerneg, tsos, prop, chi2Estimator);
657 }
else if (tTopo->tidSide(iidd) == 2) {
658 tmpTmeas = layerMeasurements.measurements(*tidLayerpos, tsos, prop, chi2Estimator);
662 if (misLayer > k_LayersStart && misLayer < k_LayersAtTOBEnd) {
664 std::vector<BarrelDetLayer const*> barrelTIBLayers = measTracker.geometricSearchTracker()->tibLayers();
665 std::vector<BarrelDetLayer const*> barrelTOBLayers = measTracker.geometricSearchTracker()->tobLayers();
667 if (misLayer > k_LayersStart && misLayer <= k_LayersAtTIBEnd) {
668 const DetLayer* tibLayer = barrelTIBLayers[misLayer - k_LayersStart - 1];
669 tmpTmeas = layerMeasurements.measurements(*tibLayer, tsos, prop, chi2Estimator);
670 }
else if (misLayer > k_LayersAtTIBEnd && misLayer < k_LayersAtTOBEnd) {
671 const DetLayer* tobLayer = barrelTOBLayers[misLayer - k_LayersAtTIBEnd - 1];
672 tmpTmeas = layerMeasurements.measurements(*tobLayer, tsos, prop, chi2Estimator);
676 if ((
int(TKlayers) > k_LayersStart &&
int(TKlayers) <= k_LayersAtTIBEnd) &&
int(prev_TKlayers) == 12) {
677 const DetLayer* detlayer = itm->layer();
680 std::vector<DetLayer::DetWithState> compatDets = detlayer->
compatibleDets(tsos, prop, chi2Estimator);
681 std::vector<ForwardDetLayer const*> negTIDLayers = measTracker.geometricSearchTracker()->negTidLayers();
682 std::vector<ForwardDetLayer const*> posTIDLayers = measTracker.geometricSearchTracker()->posTidLayers();
684 const DetLayer* tidLayerneg = negTIDLayers[k_LayersStart];
685 const DetLayer* tidLayerpos = posTIDLayers[k_LayersStart];
686 if (tTopo->tidSide(iidd) == 1) {
687 tmpTmeas = layerMeasurements.measurements(*tidLayerneg, tsos, prop, chi2Estimator);
688 }
else if (tTopo->tidSide(iidd) == 2) {
689 tmpTmeas = layerMeasurements.measurements(*tidLayerpos, tsos, prop, chi2Estimator);
693 if ((
int(TKlayers) > k_LayersAtTIBEnd &&
int(TKlayers) <= k_LayersAtTOBEnd) &&
int(prev_TKlayers) == 15) {
694 const DetLayer* detlayer = itm->layer();
697 std::vector<DetLayer::DetWithState> compatDets = detlayer->
compatibleDets(tsos, prop, chi2Estimator);
699 std::vector<ForwardDetLayer const*> negTECLayers = measTracker.geometricSearchTracker()->negTecLayers();
700 std::vector<ForwardDetLayer const*> posTECLayers = measTracker.geometricSearchTracker()->posTecLayers();
702 const DetLayer* tecLayerneg = negTECLayers[k_LayersStart];
703 const DetLayer* tecLayerpos = posTECLayers[k_LayersStart];
704 if (tTopo->tecSide(iidd) == 1) {
705 tmpTmeas = layerMeasurements.measurements(*tecLayerneg, tsos, prop, chi2Estimator);
706 }
else if (tTopo->tecSide(iidd) == 2) {
707 tmpTmeas = layerMeasurements.measurements(*tecLayerpos, tsos, prop, chi2Estimator);
711 if (!tmpTmeas.empty()) {
713 unsigned int iidd_tmp = TM_tmp.
recHit()->geographicalId().rawId();
715 LogDebug(
"SiStripHitEfficiency:HitEff") <<
" hit actually being added to TM vector";
718 if (::isDoubleSided(iidd_tmp, tTopo)) {
723 missingHitAdded =
true;
729 prev_TKlayers = TKlayers;
734 bool hitsWithBias =
false;
735 for (
auto ilayer : missedLayers) {
736 if (ilayer < TKlayers)
749 const auto nextId = (itm + 1 != TMeas.end()) ? (itm + 1)->recHit()->geographicalId() :
DetId{};
751 if (TKlayers == 9 && theInHit->isValid() && !((!nextId.null()) && (::checkLayer(nextId.rawId(), tTopo) == 9))) {
754 const DetLayer* tob6 = measTracker.geometricSearchTracker()->tobLayers().back();
757 const auto tmp = theLayerMeasurements.measurements(*tob6, tsosTOB5, prop, chi2Estimator);
760 LogDebug(
"SiStripHitEfficiencyWorker") <<
"size of TM from propagation = " <<
tmp.size();
765 const auto& tob6TM =
tmp.back();
766 const auto& tob6Hit = tob6TM.recHit();
767 if (tob6Hit->geographicalId().rawId() != 0) {
768 LogDebug(
"SiStripHitEfficiencyWorker") <<
"tob6 hit actually being added to TM vector";
769 TMs.emplace_back(tob6TM, tTopo, tkgeom,
propagator);
775 if (TKlayers == 21 && theInHit->isValid() &&
776 !((!nextId.null()) && (::checkLayer(nextId.rawId(), tTopo) == 21))) {
777 const DetLayer* tec9pos = measTracker.geometricSearchTracker()->posTecLayers().back();
778 const DetLayer* tec9neg = measTracker.geometricSearchTracker()->negTecLayers().back();
785 LogDebug(
"SiStripHitEfficiencyWorker") <<
"there is a problem with TEC 9 extrapolation";
788 std::vector<TrajectoryMeasurement>
tmp;
789 if (tTopo->tecSide(iidd) == 1) {
790 tmp = theLayerMeasurements.measurements(*tec9neg, tsosTEC9, prop, chi2Estimator);
793 if (tTopo->tecSide(iidd) == 2) {
794 tmp = theLayerMeasurements.measurements(*tec9pos, tsosTEC9, prop, chi2Estimator);
802 const auto& tec9TM =
tmp.back();
803 const auto& tec9Hit = tec9TM.recHit();
805 const unsigned int tec9id = tec9Hit->geographicalId().rawId();
806 LogDebug(
"SiStripHitEfficiencyWorker")
807 <<
"tec9id = " << tec9id <<
" is Double sided = " << ::isDoubleSided(tec9id, tTopo)
808 <<
" and 0x3 = " << (tec9id & 0x3);
810 if (tec9Hit->geographicalId().rawId() != 0) {
811 LogDebug(
"SiStripHitEfficiencyWorker") <<
"tec9 hit actually being added to TM vector";
814 if (::isDoubleSided(tec9id, tTopo)) {
815 TMs.emplace_back(tec9TM, tTopo, tkgeom,
propagator, 1);
816 TMs.emplace_back(tec9TM, tTopo, tkgeom,
propagator, 2);
818 TMs.emplace_back(tec9TM, tTopo, tkgeom,
propagator);
823 for (
const auto& tm : TMs) {
837 LogDebug(
"SiStripHitEfficiencyWorker") <<
"After looping over TrajAtValidHit list";
839 LogDebug(
"SiStripHitEfficiencyWorker") <<
"end TMeasurement loop";
841 LogDebug(
"SiStripHitEfficiencyWorker") <<
"end of trajectories loop";
859 LogDebug(
"SiStripHitEfficiencyWorker") <<
"setting iidd = " << iidd <<
" before checking efficiency and ";
861 const auto xloc = tm.
localX();
862 const auto yloc = tm.
localY();
870 const auto TKlayers = ::checkLayer(iidd, tTopo);
872 const bool withinAcceptance =
873 tm.
withinAcceptance() && (!::isInBondingExclusionZone(iidd, TKlayers, yloc, yErr, tTopo));
877 (
layers_ == bounds::k_LayersStart))) {
878 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Looking at layer under study";
879 unsigned int ModIsBad = 2;
880 unsigned int SiStripQualBad = 0;
881 float commonMode = -100;
885 if (!theClusters.
empty()) {
886 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Checking clusters with size = " << theClusters.
size();
887 std::vector<::ClusterInfo> VCluster_info;
888 const auto idsv = theClusters.
find(iidd);
889 if (idsv != theClusters.
end()) {
891 LogDebug(
"SiStripHitEfficiencyWorker")
892 <<
"found (ClusterId == iidd) with ClusterId = " << idsv->id() <<
" and iidd = " << iidd;
901 if (TKlayers > bounds::k_LayersAtTOBEnd) {
902 const BoundPlane& plane = stripdet->surface();
904 dynamic_cast<const TrapezoidalPlaneBounds*>(&(plane.bounds())));
905 std::array<const float, 4>
const& parameterTrap = (*trapezoidalBounds).
parameters();
906 hbedge = parameterTrap[0];
907 htedge = parameterTrap[1];
908 hapoth = parameterTrap[3];
909 uylfac = (htedge - hbedge) / (htedge + hbedge) / hapoth;
910 uxlden = 1 + yloc * uylfac;
914 if (TrajStrip == -1) {
916 float pitch = stripdet->surface().bounds().width() / nstrips;
917 TrajStrip = xloc / pitch + nstrips / 2.0;
919 if (TKlayers > bounds::k_LayersAtTOBEnd) {
920 const float TrajLocXMid = xloc / (1 + (htedge - hbedge) * yloc / (htedge + hbedge) /
922 TrajStrip = TrajLocXMid / pitch + nstrips / 2.0;
927 for (
const auto& clus : *idsv) {
930 float sigma = ::checkConsistency(
parameters, xloc, xErr);
937 if (TKlayers > bounds::k_LayersAtTOBEnd) {
940 yErr * yErr * xloc * xloc * uylfac * uylfac / uxlden / uxlden / uxlden / uxlden);
943 VCluster_info.emplace_back(
res, sigma,
parameters.first.x());
945 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Have ID match. residual = " <<
res <<
" res sigma = " << sigma;
948 LogDebug(
"SiStripHitEfficiencyWorker")
950 <<
" trajectory position = " << xloc <<
" traj error = " << xErr;
953 ::ClusterInfo finalCluster{1000.0, 1000.0, 0.0};
954 if (!VCluster_info.empty()) {
955 LogDebug(
"SiStripHitEfficiencyWorker") <<
"found clusters > 0";
956 if (VCluster_info.size() > 1) {
958 for (
const auto&
res : VCluster_info) {
962 LogDebug(
"SiStripHitEfficiencyWorker")
963 <<
"iresidual = " <<
res.xResidual <<
" isigma = " <<
res.xResidualPull
964 <<
" and FinalRes = " << finalCluster.xResidual;
967 finalCluster = VCluster_info[0];
969 VCluster_info.clear();
972 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Final residual in X = " << finalCluster.xResidual <<
"+-" 973 << (finalCluster.xResidual / finalCluster.xResidualPull);
974 LogDebug(
"SiStripHitEfficiencyWorker")
975 <<
"Checking location of trajectory: abs(yloc) = " <<
abs(yloc) <<
" abs(xloc) = " <<
abs(xloc);
983 LogDebug(
"SiStripHitEfficiencyWorker") <<
"strip is bad from SiStripQuality";
986 LogDebug(
"SiStripHitEfficiencyWorker") <<
"strip is good from SiStripQuality";
990 for (
unsigned int ii = 0;
ii < fedErrorIds.
size();
ii++) {
991 if (iidd == fedErrorIds[
ii].
rawId())
997 if (commonModeDigis.isValid() && TrajStrip >= 0 && TrajStrip <= 768) {
998 const auto digiframe = commonModeDigis->find(iidd);
999 if (digiframe != commonModeDigis->end())
1004 LogDebug(
"SiStripHitEfficiencyWorker") <<
"before check good";
1006 if (finalCluster.xResidualPull < 999.0) {
1008 LogDebug(
"SiStripHitEfficiencyWorker")
1009 <<
"hit being counted as good " << finalCluster.xResidual <<
" FinalRecHit " << iidd <<
" TKlayers " 1010 << TKlayers <<
" xloc " << xloc <<
" yloc " << yloc <<
" module " << iidd
1011 <<
" matched/stereo/rphi = " << ((iidd & 0x3) == 0) <<
"/" << ((iidd & 0x3) == 1) <<
"/" 1012 << ((iidd & 0x3) == 2);
1015 LogDebug(
"SiStripHitEfficiencyWorker")
1016 <<
"hit being counted as bad ######### Invalid RPhi FinalResX " << finalCluster.xResidual
1017 <<
" FinalRecHit " << iidd <<
" TKlayers " << TKlayers <<
" xloc " << xloc <<
" yloc " << yloc
1018 <<
" module " << iidd <<
" matched/stereo/rphi = " << ((iidd & 0x3) == 0) <<
"/" << ((iidd & 0x3) == 1)
1019 <<
"/" << ((iidd & 0x3) == 2);
1021 LogDebug(
"SiStripHitEfficiencyWorker")
1022 <<
" RPhi Error " <<
sqrt(xErr * xErr + yErr * yErr) <<
" ErrorX " << xErr <<
" yErr " << yErr;
1025 LogDebug(
"SiStripHitEfficiencyWorker")
1026 <<
"To avoid them staying unused: ModIsBad=" << ModIsBad <<
", SiStripQualBad=" << SiStripQualBad
1027 <<
", commonMode=" << commonMode <<
", highPurity=" <<
highPurity 1028 <<
", withinAcceptance=" << withinAcceptance;
1030 unsigned int layer = TKlayers;
1032 if (
layer <= bounds::k_LayersAtTIDEnd) {
1033 layer = bounds::k_LayersAtTOBEnd +
1036 layer = bounds::k_LayersAtTIDEnd + tTopo->
tecRing(iidd);
1039 unsigned int layerWithSide =
layer;
1040 if (
layer > bounds::k_LayersAtTOBEnd &&
layer <= bounds::k_LayersAtTIDEnd) {
1041 const auto side = tTopo->
tidSide(iidd);
1043 layerWithSide =
layer + 3;
1044 }
else if (
layer > bounds::k_LayersAtTIDEnd) {
1045 const auto side = tTopo->
tecSide(iidd);
1047 layerWithSide =
layer + 3;
1048 }
else if (side == 2) {
1053 if ((
bunchX_ > 0 &&
bunchX_ != bunchCrossing) || (!withinAcceptance) ||
1055 (!
showTOB6TEC9_ && (TKlayers == bounds::k_LayersAtTOBEnd || TKlayers == bounds::k_LayersAtTECEnd)) ||
1059 const bool badquality = (SiStripQualBad == 1);
1064 bool badflag =
false;
1069 if (ModIsBad == 1 || finalCluster.xResidualPull >
resXSig_)
1077 if (finalCluster.xResidualPull ==
1087 double stripTrajMid = xloc / Pitch + nstrips / 2.0;
1088 double stripCluster = finalCluster.xLocal / Pitch + nstrips / 2.0;
1091 if (stripdet &&
layer > bounds::k_LayersAtTOBEnd) {
1093 std::array<const float, 4>
const&
parameters = trapezoidalBounds.parameters();
1097 const float TrajLocXMid = xloc / (1 + (htedge - hbedge) * yloc / (htedge + hbedge) /
1099 stripTrajMid = TrajLocXMid / Pitch + nstrips / 2.0;
1103 LogDebug(
"SiStripHitEfficiencyWorker")
1104 <<
"layer " <<
layer <<
" vector index " <<
layer - 1 <<
" before filling h_resolution" << std::endl;
1111 if (finalCluster.xResidualPull == 1000.0) {
1112 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Marking bad for resxsig=1000";
1118 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Marking bad for cluster-to-traj distance";
1128 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Too close to the edge: " << stripInAPV;
1132 LogDebug(
"SiStripHitEfficiencyWorker") <<
"Marking bad for tapv!=capv";
1139 LogDebug(
"SiStripHitEfficiencyWorker")
1140 <<
"Filling measurement for " << iidd <<
" in layer " <<
layer <<
" histograms with bx=" << bunchCrossing
1141 <<
", lumi=" <<
instLumi <<
", PU=" <<
PU <<
"; bad flag=" << badflag;
1145 if (
layer > bounds::k_LayersStart &&
layer <= bounds::k_LayersAtTIBEnd) {
1149 }
else if (
layer > bounds::k_LayersAtTIBEnd &&
layer <= bounds::k_LayersAtTOBEnd) {
1153 }
else if (
layer > bounds::k_LayersAtTOBEnd &&
layer <= bounds::k_LayersAtTIDEnd) {
1156 int side = tTopo->
tidSide(iidd);
1161 }
else if (
layer > bounds::k_LayersAtTIDEnd) {
1164 int side = tTopo->
tecSide(iidd);
1172 LogDebug(
"SiStripHitEfficiencyWorker")
1173 <<
"layer " <<
layer <<
" vector index " <<
layer - 1 <<
" before filling h_layer_vsSmthg" << std::endl;
1214 LogDebug(
"SiStripHitEfficiencyWorker") <<
"after good location check";
1216 LogDebug(
"SiStripHitEfficiencyWorker") <<
"after list of clusters";
1218 LogDebug(
"SiStripHitEfficiencyWorker") <<
"After layers=TKLayers if with TKlayers=" << TKlayers
1225 desc.add<
bool>(
"UseOnlyHighPurityTracks",
true);
1226 desc.add<
bool>(
"cutOnTracks",
false);
1227 desc.add<
bool>(
"doMissingHitsRecovery",
false);
1228 desc.add<
bool>(
"useAllHitsFromTracksWithMissingHits",
false);
1229 desc.add<
bool>(
"useFirstMeas",
false);
1230 desc.add<
bool>(
"useLastMeas",
false);
1231 desc.add<
double>(
"ClusterTrajDist", 64.0);
1232 desc.add<
double>(
"ResXSig", -1);
1233 desc.add<
double>(
"StripsApvEdge", 10.0);
1242 desc.add<
int>(
"ClusterMatchingMethod", 0);
1243 desc.add<
int>(
"Layer", 0);
1244 desc.add<
unsigned int>(
"trackMultiplicity", 100);
1245 desc.addUntracked<
bool>(
"Debug",
false);
1246 desc.addUntracked<
bool>(
"ShowRings",
false);
1247 desc.addUntracked<
bool>(
"ShowTOB6TEC9",
false);
1248 desc.addUntracked<
bool>(
"addCommonMode",
false);
1249 desc.addUntracked<
bool>(
"addLumi",
true);
1250 desc.addUntracked<
int>(
"BunchCrossing", 0);
std::pair< LocalPoint, LocalError > LocalValues
const edm::ESGetToken< MeasurementTracker, CkfComponentsRecord > measTrackerToken_
MonitorElement * h_nTracksVsPU
virtual int nstrips() const =0
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
void fill(double x, bool found, float weight=1.)
virtual std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
T const & getData(const ESGetToken< T, R > &iToken) const noexcept(false)
const TrackerGeomDet * idToDetUnit(DetId) const override
Return the pointer to the GeomDetUnit corresponding to a given DetId.
std::vector< EffME1 > h_layer_vsPU
std::vector< MonitorElement * > h_resolution
MonitorElement * h_instLumi
bool useOnlyHighPurityTracks_
virtual void setCurrentFolder(std::string const &fullpath)
EffME1(MonitorElement *total, MonitorElement *found)
std::vector< EffME1 > h_layer_vsBx
const edm::EDGetTokenT< std::vector< Trajectory > > trajectories_token_
std::vector< MonitorElement * > h_hotcold
virtual void localParameters(AClusters const &clusters, ALocalValues &retValues, const GeomDetUnit &gd, const LocalTrajectoryParameters <p) const
void bookHistograms(DQMStore::IBooker &booker, const edm::Run &run, const edm::EventSetup &setup) override
unsigned int tidSide(const DetId &id) const
Class to contain the online luminosity from soft FED 1022.
std::vector< Track > TrackCollection
collection of Tracks
unsigned int monodet_id() const
std::vector< EffME1 > h_layer_vsCM
std::vector< int > missHitPerLayer
const edm::EDGetTokenT< DetIdCollection > digis_token_
float instLumi() const
Return the luminosity for the current nibble.
std::unordered_map< uint32_t, int > fedErrorCounts
unsigned int tecRing(const DetId &id) const
ring id
std::unique_ptr< TkHistoMap > FEDErrorOccupancy
const edm::EDGetTokenT< MeasurementTrackerEvent > trackerEvent_token_
const_iterator end(bool update=false) const
~SiStripHitEfficiencyWorker() override=default
const edm::ESGetToken< TkDetMap, TrackerTopologyRcd > tkDetMapToken_
void fillForTraj(const TrajectoryAtInvalidHit &tm, const TrackerTopology *tTopo, const TrackerGeometry *tkgeom, const StripClusterParameterEstimator &stripCPE, const SiStripQuality &stripQuality, const DetIdCollection &fedErrorIds, const edm::Handle< edm::DetSetVector< SiStripRawDigi >> &commonModeDigis, const edmNew::DetSetVector< SiStripCluster > &theClusters, int bunchCrossing, float instLumi, float PU, bool highPurity)
std::unique_ptr< TkHistoMap > hTotal
const edm::ESGetToken< StripClusterParameterEstimator, TkStripCPERecord > stripCPEToken_
const edm::ESGetToken< Propagator, TrackingComponentsRecord > propagatorToken_
const edm::EDGetTokenT< OnlineLuminosityRecord > metaDataToken_
const edm::ESGetToken< Chi2MeasurementEstimatorBase, TrackingComponentsRecord > chi2EstimatorToken_
double localErrorX() const
unsigned int tecSide(const DetId &id) const
EffTkMap(std::unique_ptr< TkHistoMap > &&total, std::unique_ptr< TkHistoMap > &&found)
MonitorElement * bookProfile(TString const &name, TString const &title, int nchX, double lowX, double highX, int, double lowY, double highY, char const *option="s", FUNC onbooking=NOOP())
unsigned int clusterMatchingMethod_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > tkGeomToken_
virtual const StripTopology & specificTopology() const
Returns a reference to the strip proxy topology.
Abs< T >::type abs(const T &t)
unsigned int trackMultiplicityCut_
#define DEFINE_FWK_MODULE(type)
bool useAllHitsFromTracksWithMissingHits_
virtual void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
std::set< uint32_t > badModules_
dqm::reco::MonitorElement * EventStats
const edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > tTopoToken_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magFieldToken_
SiStripHitEfficiencyWorker(const edm::ParameterSet &conf)
void analyze(const edm::Event &e, const edm::EventSetup &c) override
std::vector< unsigned int > hitTotalCounters
SiStripHitEffData calibData_
const Plane & surface() const
The nominal surface of the GeomDet.
const edm::EDGetTokenT< TrajTrackAssociationCollection > trajTrackAsso_token_
Constants and enumerated types for FED/FEC systems.
double localErrorY() const
virtual const std::array< const float, 4 > parameters() const
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
std::unique_ptr< TkHistoMap > hFound
MonitorElement * h_nTracks
const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusters_token_
const_iterator find(id_type i, bool update=false) const
static const uint16_t STRIPS_PER_APV
const edm::EDGetTokenT< reco::TrackCollection > combinatorialTracks_token_
const edm::ESGetToken< SiStripQuality, SiStripQualityRcd > stripQualityToken_
const edm::EDGetTokenT< LumiScalersCollection > scalerToken_
std::vector< unsigned int > hitRecoveryCounters
unsigned int tidRing(const DetId &id) const
std::vector< LumiScalers > LumiScalersCollection
void fill(uint32_t id, bool found, float weight=1.)
const edm::EDGetTokenT< edm::DetSetVector< SiStripRawDigi > > commonModeToken_
Log< level::Warning, false > LogWarning
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
A Digi for the silicon strip detector, containing only adc information, and suitable for storing raw ...
virtual float width() const =0
std::vector< EffME1 > h_layer_vsLumi
MonitorElement * book2I(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
float avgPileUp() const
Return the average pileup for th current nibble.
ConstRecHitPointer const & recHit() const
bool doMissingHitsRecovery_
bool withinAcceptance() const
virtual void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
short getBadApvs(uint32_t detid) const
const Bounds & bounds() const