-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Add online DQM plots for Run 3 L1T shower trigger #36128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#ifndef DQM_L1TMonitor_L1TStage2Shower_h | ||
#define DQM_L1TMonitor_L1TStage2Shower_h | ||
|
||
#include "FWCore/Framework/interface/Event.h" | ||
#include "FWCore/MessageLogger/interface/MessageLogger.h" | ||
#include "FWCore/ParameterSet/interface/ParameterSet.h" | ||
|
||
#include "DQMServices/Core/interface/DQMOneEDAnalyzer.h" | ||
#include "DQMServices/Core/interface/DQMStore.h" | ||
|
||
#include "DataFormats/L1TMuon/interface/EMTFDaqOut.h" | ||
#include "DataFormats/L1TMuon/interface/EMTFHit.h" | ||
#include "DataFormats/L1TMuon/interface/EMTFTrack.h" | ||
#include "DataFormats/L1TMuon/interface/RegionalMuonCand.h" | ||
#include "DataFormats/CSCDigi/interface/CSCShowerDigiCollection.h" | ||
#include "DataFormats/L1TMuon/interface/RegionalMuonShower.h" | ||
|
||
class L1TStage2Shower : public DQMOneEDAnalyzer<> { | ||
public: | ||
L1TStage2Shower(const edm::ParameterSet& ps); | ||
~L1TStage2Shower() override; | ||
|
||
protected: | ||
void bookHistograms(DQMStore::IBooker&, const edm::Run&, const edm::EventSetup&) override; | ||
void analyze(const edm::Event&, const edm::EventSetup&) override; | ||
|
||
private: | ||
edm::EDGetTokenT<l1t::RegionalMuonShowerBxCollection> EMTFShowerToken; | ||
edm::EDGetTokenT<CSCShowerDigiCollection> CSCShowerToken; | ||
std::string monitorDir; | ||
bool verbose; | ||
|
||
MonitorElement* cscShowerOccupancyLoose; | ||
MonitorElement* cscShowerOccupancyNom; | ||
MonitorElement* cscShowerOccupancyTight; | ||
MonitorElement* cscShowerStationRing; | ||
MonitorElement* cscShowerChamber; | ||
|
||
MonitorElement* emtfShowerTypeOccupancy; | ||
}; | ||
|
||
#endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer | ||
l1tStage2Shower = DQMEDAnalyzer( | ||
"L1TStage2Shower", | ||
emtfSource = cms.InputTag("emtfStage2Digis"), ## EMTF unpacker tag | ||
cscSource = cms.InputTag("muonCSCDigis", "MuonCSCShowerDigi"), ## CSC unpacker tag | ||
# emtfSource = cms.InputTag("simEmtfShowers", "EMTF"), ## EMTF emulator tag | ||
# cscSource = cms.InputTag("simCscTriggerPrimitiveDigis"), ## CSC emulator tag | ||
monitorDir = cms.untracked.string("L1T/L1TStage2EMTF/Shower"), | ||
verbose = cms.untracked.bool(False), | ||
) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
#include <string> | ||
#include <vector> | ||
#include <iostream> | ||
#include <map> | ||
|
||
#include "DQM/L1TMonitor/interface/L1TStage2Shower.h" | ||
|
||
L1TStage2Shower::L1TStage2Shower(const edm::ParameterSet& ps) | ||
: EMTFShowerToken(consumes<l1t::RegionalMuonShowerBxCollection>(ps.getParameter<edm::InputTag>("emtfSource"))), | ||
CSCShowerToken(consumes<CSCShowerDigiCollection>(ps.getParameter<edm::InputTag>("cscSource"))), | ||
monitorDir(ps.getUntrackedParameter<std::string>("monitorDir", "")), | ||
verbose(ps.getUntrackedParameter<bool>("verbose", false)) {} | ||
|
||
L1TStage2Shower::~L1TStage2Shower() {} | ||
|
||
void L1TStage2Shower::bookHistograms(DQMStore::IBooker& ibooker, const edm::Run&, const edm::EventSetup&) { | ||
ibooker.setCurrentFolder(monitorDir); | ||
|
||
const std::array<std::string, 9> suffix_label{{"4/2", "4/1", "3/2", "3/1", " 2/2", "2/1", "1/3", "1/2", "1/1"}}; | ||
|
||
// CSC local shower | ||
cscShowerOccupancyLoose = | ||
ibooker.book2D("cscShowerOccupancyLoose", "CSC Loose Shower Occupancy", 36, 1, 37, 18, 0, 18); | ||
cscShowerOccupancyLoose->setAxisTitle("Chamber", 1); | ||
for (int ybin = 1; ybin <= 9; ++ybin) { | ||
cscShowerOccupancyLoose->setBinLabel(ybin, "ME-" + suffix_label[ybin - 1], 2); | ||
cscShowerOccupancyLoose->setBinLabel(19 - ybin, "ME+" + suffix_label[ybin - 1], 2); | ||
} | ||
|
||
cscShowerOccupancyNom = ibooker.book2D("cscShowerOccupancyNom", "CSC Nominal Shower Occupancy", 36, 1, 37, 18, 0, 18); | ||
cscShowerOccupancyNom->setAxisTitle("Chamber", 1); | ||
for (int ybin = 1; ybin <= 9; ++ybin) { | ||
cscShowerOccupancyNom->setBinLabel(ybin, "ME-" + suffix_label[ybin - 1], 2); | ||
cscShowerOccupancyNom->setBinLabel(19 - ybin, "ME+" + suffix_label[ybin - 1], 2); | ||
} | ||
|
||
cscShowerOccupancyTight = | ||
ibooker.book2D("cscShowerOccupancyTight", "CSC Tight Shower Occupancy", 36, 1, 37, 18, 0, 18); | ||
cscShowerOccupancyTight->setAxisTitle("Chamber", 1); | ||
for (int ybin = 1; ybin <= 9; ++ybin) { | ||
cscShowerOccupancyTight->setBinLabel(ybin, "ME-" + suffix_label[ybin - 1], 2); | ||
cscShowerOccupancyTight->setBinLabel(19 - ybin, "ME+" + suffix_label[ybin - 1], 2); | ||
} | ||
|
||
cscShowerStationRing = | ||
ibooker.book2D("cscShowerStationRing", "CSC shower types in stations and rings", 4, 0, 4, 18, 0, 18); | ||
cscShowerStationRing->setAxisTitle("Type", 1); | ||
cscShowerStationRing->setBinLabel(1, "Total", 1); | ||
cscShowerStationRing->setBinLabel(2, "Loose", 1); | ||
cscShowerStationRing->setBinLabel(3, "Nominal", 1); | ||
cscShowerStationRing->setBinLabel(4, "Tight", 1); | ||
for (int ybin = 1; ybin <= 9; ++ybin) { | ||
cscShowerStationRing->setBinLabel(ybin, "ME-" + suffix_label[ybin - 1], 2); | ||
cscShowerStationRing->setBinLabel(19 - ybin, "ME+" + suffix_label[ybin - 1], 2); | ||
} | ||
|
||
cscShowerChamber = ibooker.book2D("cscShowerChamber", "CSC shower types in chambers", 36, 1, 37, 4, 0, 4); | ||
cscShowerChamber->setAxisTitle("Chamber", 1); | ||
cscShowerChamber->setAxisTitle("Type", 2); | ||
cscShowerChamber->setBinLabel(1, "Total", 2); | ||
cscShowerChamber->setBinLabel(2, "Loose", 2); | ||
cscShowerChamber->setBinLabel(3, "Nominal", 2); | ||
cscShowerChamber->setBinLabel(4, "Tight", 2); | ||
|
||
// EMTF regional shower | ||
emtfShowerTypeOccupancy = ibooker.book2D("emtfShowerTypeOccupancy", "EMTF shower Type Occupancy", 6, 1, 7, 8, 0, 8); | ||
emtfShowerTypeOccupancy->setAxisTitle("Sector", 1); | ||
emtfShowerTypeOccupancy->setBinLabel(8, "ME+ Tight", 2); | ||
emtfShowerTypeOccupancy->setBinLabel(7, "ME+ 2Loose", 2); | ||
emtfShowerTypeOccupancy->setBinLabel(6, "ME+ Nom", 2); | ||
emtfShowerTypeOccupancy->setBinLabel(5, "ME+ Tot", 2); | ||
emtfShowerTypeOccupancy->setBinLabel(4, "ME- Tot", 2); | ||
emtfShowerTypeOccupancy->setBinLabel(3, "ME- Nom", 2); | ||
emtfShowerTypeOccupancy->setBinLabel(2, "ME- 2Loose", 2); | ||
emtfShowerTypeOccupancy->setBinLabel(1, "ME- Tight", 2); | ||
} | ||
|
||
void L1TStage2Shower::analyze(const edm::Event& e, const edm::EventSetup& c) { | ||
edm::Handle<l1t::RegionalMuonShowerBxCollection> EmtfShowers; | ||
e.getByToken(EMTFShowerToken, EmtfShowers); | ||
|
||
edm::Handle<CSCShowerDigiCollection> CscShowers; | ||
e.getByToken(CSCShowerToken, CscShowers); | ||
|
||
const std::map<std::pair<int, int>, int> histIndexCSC = {{{1, 1}, 8}, | ||
{{1, 2}, 7}, | ||
{{1, 3}, 6}, | ||
{{2, 1}, 5}, | ||
{{2, 2}, 4}, | ||
{{3, 1}, 3}, | ||
{{3, 2}, 2}, | ||
{{4, 1}, 1}, | ||
{{4, 2}, 0}}; | ||
|
||
// Fill CSC local shower plots | ||
for (auto element = CscShowers->begin(); element != CscShowers->end(); ++element) { | ||
zuoxunwu marked this conversation as resolved.
Show resolved
Hide resolved
|
||
auto detId = (*element).first; | ||
int endcap = (detId.endcap() == 1 ? 1 : -1); | ||
int station = detId.station(); | ||
int ring = detId.ring(); | ||
int chamber = detId.chamber(); | ||
int sr = histIndexCSC.at({station, ring}); | ||
if (endcap == -1) | ||
sr = 17 - sr; | ||
float evt_wgt = (station > 1 && ring == 1) ? 0.5 : 1.0; | ||
|
||
auto cscShower = (*element).second.first; | ||
auto cscShowerEnd = (*element).second.second; | ||
for (; cscShower != cscShowerEnd; ++cscShower) { | ||
if (station > 1 && (ring % 2) == 1) { | ||
if (cscShower->isLooseInTime()) | ||
cscShowerOccupancyLoose->Fill(chamber * 2, sr, evt_wgt); | ||
if (cscShower->isNominalInTime()) | ||
cscShowerOccupancyNom->Fill(chamber * 2, sr, evt_wgt); | ||
if (cscShower->isTightInTime()) | ||
cscShowerOccupancyTight->Fill(chamber * 2, sr, evt_wgt); | ||
if (cscShower->isLooseInTime()) | ||
cscShowerOccupancyLoose->Fill(chamber * 2 - 1, sr, evt_wgt); | ||
if (cscShower->isNominalInTime()) | ||
cscShowerOccupancyNom->Fill(chamber * 2 - 1, sr, evt_wgt); | ||
if (cscShower->isTightInTime()) | ||
cscShowerOccupancyTight->Fill(chamber * 2 - 1, sr, evt_wgt); | ||
} else { | ||
if (cscShower->isLooseInTime()) | ||
cscShowerOccupancyLoose->Fill(chamber, sr); | ||
if (cscShower->isNominalInTime()) | ||
cscShowerOccupancyNom->Fill(chamber, sr); | ||
if (cscShower->isTightInTime()) | ||
cscShowerOccupancyTight->Fill(chamber, sr); | ||
} | ||
|
||
cscShowerStationRing->Fill(0.5, sr); | ||
if (cscShower->isLooseInTime()) | ||
cscShowerStationRing->Fill(1.5, sr); | ||
if (cscShower->isNominalInTime()) | ||
cscShowerStationRing->Fill(2.5, sr); | ||
if (cscShower->isTightInTime()) | ||
cscShowerStationRing->Fill(3.5, sr); | ||
|
||
if (station > 1 && (ring % 2) == 1) { | ||
cscShowerChamber->Fill(chamber * 2, 0.5, evt_wgt); | ||
cscShowerChamber->Fill(chamber * 2 - 1, 0.5, evt_wgt); | ||
if (cscShower->isLooseInTime()) | ||
cscShowerChamber->Fill(chamber * 2, 1.5, evt_wgt); | ||
if (cscShower->isNominalInTime()) | ||
cscShowerChamber->Fill(chamber * 2, 2.5, evt_wgt); | ||
if (cscShower->isTightInTime()) | ||
cscShowerChamber->Fill(chamber * 2, 3.5, evt_wgt); | ||
if (cscShower->isLooseInTime()) | ||
cscShowerChamber->Fill(chamber * 2 - 1, 1.5, evt_wgt); | ||
if (cscShower->isNominalInTime()) | ||
cscShowerChamber->Fill(chamber * 2 - 1, 2.5, evt_wgt); | ||
if (cscShower->isTightInTime()) | ||
cscShowerChamber->Fill(chamber * 2 - 1, 3.5, evt_wgt); | ||
} else { | ||
cscShowerChamber->Fill(chamber, 0.5); | ||
if (cscShower->isLooseInTime()) | ||
cscShowerChamber->Fill(chamber, 1.5); | ||
if (cscShower->isNominalInTime()) | ||
cscShowerChamber->Fill(chamber, 2.5); | ||
if (cscShower->isTightInTime()) | ||
cscShowerChamber->Fill(chamber, 3.5); | ||
} | ||
} | ||
} | ||
|
||
// Fill EMTF regional shower plots | ||
for (auto Shower = EmtfShowers->begin(); Shower != EmtfShowers->end(); ++Shower) { | ||
zuoxunwu marked this conversation as resolved.
Show resolved
Hide resolved
|
||
int endcap = Shower->endcap(); | ||
zuoxunwu marked this conversation as resolved.
Show resolved
Hide resolved
|
||
int sector = Shower->sector(); | ||
if (not Shower->isValid()) | ||
zuoxunwu marked this conversation as resolved.
Show resolved
Hide resolved
|
||
continue; | ||
if (Shower->isOneNominalInTime() or Shower->isTwoLooseInTime() or Shower->isOneTightInTime()) { | ||
if (Shower->isOneTightInTime()) | ||
emtfShowerTypeOccupancy->Fill(sector, (endcap == 1) ? 7.5 : 0.5); | ||
if (Shower->isTwoLooseInTime()) | ||
emtfShowerTypeOccupancy->Fill(sector, (endcap == 1) ? 6.5 : 1.5); | ||
if (Shower->isOneNominalInTime()) | ||
emtfShowerTypeOccupancy->Fill(sector, (endcap == 1) ? 5.5 : 2.5); | ||
emtfShowerTypeOccupancy->Fill(sector, (endcap == 1) ? 4.5 : 3.5); | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.