Skip to content

Commit

Permalink
Merge pull request cms-sw#12734 from jingyucms/jingyu-80x-stage2-laye…
Browse files Browse the repository at this point in the history
…r2-dqm

Jingyu 80x stage2 layer2 dqm module
  • Loading branch information
cmsbuild committed Dec 16, 2015
2 parents f5b1814 + 77c6d3b commit 2185670
Show file tree
Hide file tree
Showing 12 changed files with 771 additions and 0 deletions.
101 changes: 101 additions & 0 deletions DQM/L1TMonitor/interface/L1TStage2CaloLayer2.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
#ifndef DQM_L1TMonitor_L1TStage2CaloLayer2_h
#define DQM_L1TMonitor_L1TStage2CaloLayer2_h

// base classes
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"

// DQM
#include "DQMServices/Core/interface/MonitorElement.h"
#include "DQMServices/Core/interface/DQMEDAnalyzer.h"

// stage2 collection

#include "DataFormats/L1Trigger/interface/EGamma.h"
#include "DataFormats/L1Trigger/interface/Jet.h"
#include "DataFormats/L1Trigger/interface/EtSum.h"
#include "DataFormats/L1Trigger/interface/Tau.h"

class L1TStage2CaloLayer2 : public DQMEDAnalyzer {

public:

L1TStage2CaloLayer2(const edm::ParameterSet & ps);

virtual ~L1TStage2CaloLayer2();

protected:

void analyze(const edm::Event& e, const edm::EventSetup& c);
virtual void dqmBeginRun(const edm::Run&, const edm::EventSetup&);
virtual void bookHistograms(DQMStore::IBooker&, const edm::Run&, const edm::EventSetup&) override ;
virtual void beginLuminosityBlock(const edm::LuminosityBlock&, const edm::EventSetup&);

private:

std::string monitorDir_;

edm::EDGetTokenT<l1t::JetBxCollection> stage2CaloLayer2JetToken_;
edm::EDGetTokenT<l1t::EGammaBxCollection> stage2CaloLayer2EGammaToken_;
edm::EDGetTokenT<l1t::TauBxCollection> stage2CaloLayer2TauToken_;
edm::EDGetTokenT<l1t::EtSumBxCollection> stage2CaloLayer2EtSumToken_;

bool verbose_;

MonitorElement* stage2CaloLayer2CenJetEtEtaPhi_;
MonitorElement* stage2CaloLayer2CenJetEta_;
MonitorElement* stage2CaloLayer2CenJetPhi_;
MonitorElement* stage2CaloLayer2CenJetRank_;
MonitorElement* stage2CaloLayer2CenJetOcc_;
MonitorElement* stage2CaloLayer2CenJetBxOcc_;

MonitorElement* stage2CaloLayer2ForJetEtEtaPhi_;
MonitorElement* stage2CaloLayer2ForJetEta_;
MonitorElement* stage2CaloLayer2ForJetPhi_;
MonitorElement* stage2CaloLayer2ForJetRank_;
MonitorElement* stage2CaloLayer2ForJetOcc_;
MonitorElement* stage2CaloLayer2ForJetBxOcc_;

MonitorElement* stage2CaloLayer2IsoEGEtEtaPhi_;
MonitorElement* stage2CaloLayer2IsoEGEta_;
MonitorElement* stage2CaloLayer2IsoEGPhi_;
MonitorElement* stage2CaloLayer2IsoEGRank_;
MonitorElement* stage2CaloLayer2IsoEGOcc_;
MonitorElement* stage2CaloLayer2IsoEGBxOcc_;

MonitorElement* stage2CaloLayer2NonIsoEGEtEtaPhi_;
MonitorElement* stage2CaloLayer2NonIsoEGEta_;
MonitorElement* stage2CaloLayer2NonIsoEGPhi_;
MonitorElement* stage2CaloLayer2NonIsoEGRank_;
MonitorElement* stage2CaloLayer2NonIsoEGOcc_;
MonitorElement* stage2CaloLayer2NonIsoEGBxOcc_;

MonitorElement* stage2CaloLayer2IsoTauEtEtaPhi_;
MonitorElement* stage2CaloLayer2IsoTauEta_;
MonitorElement* stage2CaloLayer2IsoTauPhi_;
MonitorElement* stage2CaloLayer2IsoTauRank_;
MonitorElement* stage2CaloLayer2IsoTauOcc_;
MonitorElement* stage2CaloLayer2IsoTauBxOcc_;

MonitorElement* stage2CaloLayer2TauEtEtaPhi_;
MonitorElement* stage2CaloLayer2TauEta_;
MonitorElement* stage2CaloLayer2TauPhi_;
MonitorElement* stage2CaloLayer2TauRank_;
MonitorElement* stage2CaloLayer2TauOcc_;
MonitorElement* stage2CaloLayer2TauBxOcc_;

MonitorElement* stage2CaloLayer2EtSumBxOcc_;
MonitorElement* stage2CaloLayer2METRank_;
MonitorElement* stage2CaloLayer2METPhi_;
MonitorElement* stage2CaloLayer2ETTRank_;
MonitorElement* stage2CaloLayer2ETTPhi_;
MonitorElement* stage2CaloLayer2MHTRank_;
MonitorElement* stage2CaloLayer2MHTPhi_;
MonitorElement* stage2CaloLayer2MHTEta_;
MonitorElement* stage2CaloLayer2HTTRank_;
MonitorElement* stage2CaloLayer2HTTPhi_;
MonitorElement* stage2CaloLayer2HTTEta_;
};

#endif
7 changes: 7 additions & 0 deletions DQM/L1TMonitor/python/L1T2016_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import FWCore.ParameterSet.Config as cms

from DQM.L1TMonitor.L1TStage2CaloLayer2_cfi import *

l1t2016Online = cms.Sequence(
l1tStage2CaloLayer2
)
7 changes: 7 additions & 0 deletions DQM/L1TMonitor/python/L1TEMU2016_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import FWCore.ParameterSet.Config as cms

from DQM.L1TMonitor.L1TStage2CaloLayer2Emul_cfi import *

l1tEmul2016Online = cms.Sequence(
l1tStage2CaloLayer2Emul
)
10 changes: 10 additions & 0 deletions DQM/L1TMonitor/python/L1TStage2CaloLayer2Emul_cfi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import FWCore.ParameterSet.Config as cms

l1tStage2CaloLayer2Emul = cms.EDAnalyzer("L1TStage2CaloLayer2",
stage2CaloLayer2JetSource = cms.InputTag("simCaloStage2Digis"),
stage2CaloLayer2EGammaSource = cms.InputTag("simCaloStage2Digis"),
stage2CaloLayer2TauSource = cms.InputTag("simCaloStage2Digis"),
stage2CaloLayer2EtSumSource = cms.InputTag("simCaloStage2Digis"),
monitorDir = cms.untracked.string("L1T2016EMU/L1TStage2CaloLayer2EMU")
)

10 changes: 10 additions & 0 deletions DQM/L1TMonitor/python/L1TStage2CaloLayer2_cfi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import FWCore.ParameterSet.Config as cms

l1tStage2CaloLayer2 = cms.EDAnalyzer("L1TStage2CaloLayer2",
stage2CaloLayer2JetSource = cms.InputTag("caloStage2Digis"),
stage2CaloLayer2EGammaSource = cms.InputTag("caloStage2Digis"),
stage2CaloLayer2TauSource = cms.InputTag("caloStage2Digis"),
stage2CaloLayer2EtSumSource = cms.InputTag("caloStage2Digis"),
monitorDir = cms.untracked.string("L1T2016/L1TStage2CaloLayer2")
)

223 changes: 223 additions & 0 deletions DQM/L1TMonitor/src/L1TStage2CaloLayer2.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,223 @@
#include "DQM/L1TMonitor/interface/L1TStage2CaloLayer2.h"

L1TStage2CaloLayer2::L1TStage2CaloLayer2(const edm::ParameterSet & ps) :
monitorDir_(ps.getUntrackedParameter<std::string>("monitorDir","")),
stage2CaloLayer2JetToken_(consumes<l1t::JetBxCollection>(ps.getParameter<edm::InputTag>("stage2CaloLayer2JetSource"))),
stage2CaloLayer2EGammaToken_(consumes<l1t::EGammaBxCollection>(ps.getParameter<edm::InputTag>("stage2CaloLayer2EGammaSource"))),
stage2CaloLayer2TauToken_(consumes<l1t::TauBxCollection>(ps.getParameter<edm::InputTag>("stage2CaloLayer2TauSource"))),
stage2CaloLayer2EtSumToken_(consumes<l1t::EtSumBxCollection>(ps.getParameter<edm::InputTag>("stage2CaloLayer2EtSumSource"))),
verbose_(ps.getUntrackedParameter < bool > ("verbose", false))
{
}

L1TStage2CaloLayer2::~L1TStage2CaloLayer2()
{}

void L1TStage2CaloLayer2::bookHistograms(DQMStore::IBooker &ibooker, edm::Run const&, edm::EventSetup const&)
{
ibooker.setCurrentFolder(monitorDir_);

//central jet
stage2CaloLayer2CenJetEtEtaPhi_ = ibooker.book2D("CenJetsEtEtaPhi", "CENTRAL JET E_{T} ETA PHI", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2CenJetEta_ = ibooker.book1D("CenJetsEta", "CENTRAL JET ETA", 229, -114.5, 114.5);
stage2CaloLayer2CenJetPhi_ = ibooker.book1D("CenJetsPhi", "CENTRAL JET PHI", 144, -0.5, 143.5);
stage2CaloLayer2CenJetRank_ = ibooker.book1D("CenJetsRank", "CENTRAL JET E_{T}", 2048, -0.5, 2047.5);
stage2CaloLayer2CenJetOcc_ = ibooker.book2D("CenJetsOcc", "CENTRAL JET OCCUPANCY", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2CenJetBxOcc_ = ibooker.book2D("CenJetsBxOcc", "CENTRAL JET BX OCCUPANCY", 5,-2.5, 2.5, 512, -0.5, 2047.5);

//forward jet
stage2CaloLayer2ForJetEtEtaPhi_ = ibooker.book2D("ForJetsEtEtaPhi", "FORWARD JET E_{T} ETA PHI", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2ForJetEta_ = ibooker.book1D("ForJetsEta", "FORWARD JET ETA", 229, -114.5, 114.5);
stage2CaloLayer2ForJetPhi_ = ibooker.book1D("ForJetsPhi", "FORWARD JET PHI", 144, -0.5, 143.5);
stage2CaloLayer2ForJetRank_ = ibooker.book1D("ForJetsRank", "FORWARD JET E_{T}", 2048, -0.5, 2047.5);
stage2CaloLayer2ForJetOcc_ = ibooker.book2D("ForJetsOcc", "FORWARD JET OCCUPANCy", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2ForJetBxOcc_ = ibooker.book2D("ForJetsBxOcc", "FORWARD JET BX OCCUPANCY", 5,-2.5, 2.5, 512, -0.5, 2047.5);

//IsoEG
stage2CaloLayer2IsoEGEtEtaPhi_ = ibooker.book2D("IsoEGsEtEtaPhi", "ISO EG E_{T} ETA PHI", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2IsoEGEta_ = ibooker.book1D("IsoEGsEta", "ISO EG ETA", 229, -114.5, 114.5);
stage2CaloLayer2IsoEGPhi_ = ibooker.book1D("IsoEGsPhi", "ISO EG PHI", 144, -0.5, 143.5);
stage2CaloLayer2IsoEGRank_ = ibooker.book1D("IsoEGsRank", "ISO EG E_{T}", 512, -0.5, 511.5);
stage2CaloLayer2IsoEGOcc_ = ibooker.book2D("IsoEGsOcc", "ISO EG OCCUPANCY", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2IsoEGBxOcc_ = ibooker.book2D("IsoEGsBxOcc", "ISO EG BX OCCUPANCY", 5,-2.5, 2.5, 128, -0.5, 511.5);

//NonIsoEG
stage2CaloLayer2NonIsoEGEtEtaPhi_ = ibooker.book2D("NonIsoEGsEtEtaPhi", "NonISO EG E_{T} ETA PHI", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2NonIsoEGEta_ = ibooker.book1D("NonIsoEGsEta", "NonISO EG ETA", 229, -114.5, 114.5);
stage2CaloLayer2NonIsoEGPhi_ = ibooker.book1D("NonIsoEGsPhi", "NonISO EG PHI", 144, -0.5, 143.5);
stage2CaloLayer2NonIsoEGRank_ = ibooker.book1D("NonIsoEGsRank", "NonISO EG E_{T}", 512, -0.5, 511.5);
stage2CaloLayer2NonIsoEGOcc_ = ibooker.book2D("NonIsoEGsOcc", "NonISO EG OCCUPANCY", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2NonIsoEGBxOcc_ = ibooker.book2D("NonIsoEGsBxOcc", "NonISO EG BX OCCUPANCY", 5,-2.5, 2.5, 128, -0.5, 511.5);

//IsoTau
stage2CaloLayer2IsoTauEtEtaPhi_ = ibooker.book2D("IsoTausEtEtaPhi", "ISO Tau E_{T} ETA PHI", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2IsoTauEta_ = ibooker.book1D("IsoTausEta", "ISO Tau ETA", 229, -114.5, 114.5);
stage2CaloLayer2IsoTauPhi_ = ibooker.book1D("IsoTausPhi", "ISO Tau PHI", 144, -0.5, 143.5);
stage2CaloLayer2IsoTauRank_ = ibooker.book1D("IsoTausRank", "ISO Tau E_{T}", 512, -0.5, 511.5);
stage2CaloLayer2IsoTauOcc_ = ibooker.book2D("IsoTausOcc", "ISO Tau OCCUPANCY", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2IsoTauBxOcc_ = ibooker.book2D("IsoTausBxOcc", "ISO Tau BX OCCUPANCY", 5,-2.5, 2.5, 128, -0.5, 511.5);

//rlxTau
stage2CaloLayer2TauEtEtaPhi_ = ibooker.book2D("TausEtEtaPhi", "Tau E_{T} ETA PHI", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2TauEta_ = ibooker.book1D("TausEta", "Tau ETA", 229, -114.5, 114.5);
stage2CaloLayer2TauPhi_ = ibooker.book1D("TausPhi", "Tau PHI", 144, -0.5, 143.5);
stage2CaloLayer2TauRank_ = ibooker.book1D("TausRank", "Tau E_{T}", 512, -0.5, 511.5);
stage2CaloLayer2TauOcc_ = ibooker.book2D("TausOcc", "Tau OCCUPANCY", 229, -114.5, 114.5, 144, -0.5, 143.5);
stage2CaloLayer2TauBxOcc_ = ibooker.book2D("TausBxOcc", "Tau BX OCCUPANCY", 5,-2.5, 2.5, 128, -0.5, 511.5);

//EtSums
stage2CaloLayer2EtSumBxOcc_ = ibooker.book2D("EtSumBxOcc", "EtSum BX OCCUPANCY", 5,-2.5, 2.5, 1024, -0.5, 4095.5);
stage2CaloLayer2METRank_ = ibooker.book1D("METRank", "MET E_{T}", 4096, -0.5, 4095.5);
stage2CaloLayer2METPhi_ = ibooker.book1D("METPhi", "MET Phi", 144, -0.5, 143.5);
stage2CaloLayer2ETTRank_ = ibooker.book1D("ETTPhi", "ETT E_{T}", 4096, -0.5, 4095.5);
stage2CaloLayer2ETTPhi_ = ibooker.book1D("ETTPhi","ETT Phi", 144, -0.5, 143.5);
stage2CaloLayer2MHTRank_ = ibooker.book1D("MHTRank", "MHT E_{T}", 4096, -0.5, 4095.5);
stage2CaloLayer2MHTPhi_ = ibooker.book1D("MHTPhi", "MHT Phi", 144, -0.5, 143.5);
stage2CaloLayer2MHTEta_ = ibooker.book1D("MHTEta", "MHT Eta", 229, -114.5, 114.5);
stage2CaloLayer2HTTRank_ = ibooker.book1D("HTTRank", "HTT E_{T}", 4096, -0.5, 4095.5);
stage2CaloLayer2HTTPhi_ = ibooker.book1D("HTTPhi", "HTT Phi", 144, -0.5, 143.5);
stage2CaloLayer2HTTEta_ = ibooker.book1D("HTTEta", "HTT Eta", 229, -114.5, 114.5);

}

void L1TStage2CaloLayer2::analyze(const edm::Event & e, const edm::EventSetup & c)
{
if (verbose_) {
edm::LogInfo("L1TStage2CaloLayer2") << "L1TStage2CaloLayer2: analyze...." << std::endl;
}

// analyze Jet
edm::Handle<l1t::JetBxCollection> Jet;
e.getByToken(stage2CaloLayer2JetToken_,Jet);

for(int itBX=Jet->getFirstBX(); itBX<=Jet->getLastBX(); ++itBX){
for(l1t::JetBxCollection::const_iterator itJet = Jet->begin(itBX); itJet != Jet->end(itBX); ++itJet){
//const bool forward = ((itJet->hwQual() & 0x2) != 0);
const bool forward = (itJet->hwEta()>68 || itJet->hwEta()<(-68));
//bool forward = false;
if(forward){
stage2CaloLayer2ForJetBxOcc_->Fill(itBX, itJet->hwPt());
if(itBX == 0 ){
stage2CaloLayer2ForJetRank_->Fill(itJet->hwPt());
stage2CaloLayer2ForJetPhi_->Fill(itJet->hwPhi());
stage2CaloLayer2ForJetEta_->Fill(itJet->hwEta());
if (itJet->hwPt() !=0 ){
stage2CaloLayer2ForJetEtEtaPhi_->Fill(itJet->hwEta(), itJet->hwPhi(), itJet->hwPt());
stage2CaloLayer2ForJetOcc_->Fill(itJet->hwEta(), itJet->hwPhi());
}
}
}
else{
stage2CaloLayer2CenJetBxOcc_->Fill(itBX, itJet->hwPt());
if(itBX == 0 ){
stage2CaloLayer2CenJetRank_->Fill(itJet->hwPt());
stage2CaloLayer2CenJetPhi_->Fill(itJet->hwPhi());
stage2CaloLayer2CenJetEta_->Fill(itJet->hwEta());
if (itJet->hwPt() !=0 ){
stage2CaloLayer2CenJetEtEtaPhi_->Fill(itJet->hwEta(), itJet->hwPhi(), itJet->hwPt());
stage2CaloLayer2CenJetOcc_->Fill(itJet->hwEta(), itJet->hwPhi());
}
}
}
}
}

//analyze EGamma
edm::Handle<l1t::EGammaBxCollection> EGamma;
e.getByToken(stage2CaloLayer2EGammaToken_,EGamma);

for(int itBX=EGamma->getFirstBX(); itBX<=EGamma->getLastBX(); ++itBX){
for(l1t::EGammaBxCollection::const_iterator itEG = EGamma->begin(itBX); itEG != EGamma->end(itBX); ++itEG){
bool iso = itEG->hwIso();
if(iso){
stage2CaloLayer2IsoEGBxOcc_->Fill(itBX, itEG->hwPt());
if(itBX == 0 ){
stage2CaloLayer2IsoEGRank_->Fill(itEG->hwPt());
stage2CaloLayer2IsoEGPhi_->Fill(itEG->hwPhi());
stage2CaloLayer2IsoEGEta_->Fill(itEG->hwEta());
if(itEG->hwPt() !=0 ){
stage2CaloLayer2IsoEGEtEtaPhi_->Fill(itEG->hwEta(), itEG->hwPhi(), itEG->hwPt());
stage2CaloLayer2IsoEGOcc_->Fill(itEG->hwEta(), itEG->hwPhi());
}
}
}
else{
stage2CaloLayer2NonIsoEGBxOcc_->Fill(itBX, itEG->hwPt());
if(itBX == 0 ){
stage2CaloLayer2NonIsoEGRank_->Fill(itEG->hwPt());
stage2CaloLayer2NonIsoEGPhi_->Fill(itEG->hwPhi());
stage2CaloLayer2NonIsoEGEta_->Fill(itEG->hwEta());
if(itEG->hwPt() !=0 ){
stage2CaloLayer2NonIsoEGEtEtaPhi_->Fill(itEG->hwEta(), itEG->hwPhi(), itEG->hwPt());
stage2CaloLayer2NonIsoEGOcc_->Fill(itEG->hwEta(), itEG->hwPhi());
}
}
}
}
}

//analyze Tau
edm::Handle<l1t::TauBxCollection> Tau;
e.getByToken(stage2CaloLayer2TauToken_,Tau);
for(int itBX=Tau->getFirstBX(); itBX<=Tau->getLastBX(); ++itBX){
for(l1t::TauBxCollection::const_iterator itTau = Tau->begin(itBX); itTau != Tau->end(itBX); ++itTau){
bool iso = itTau->hwIso();
if(iso){
stage2CaloLayer2IsoTauBxOcc_->Fill(itBX, itTau->hwPt());
if(itBX == 0 ){
stage2CaloLayer2IsoTauRank_->Fill(itTau->hwPt());
stage2CaloLayer2IsoTauPhi_->Fill(itTau->hwPhi());
stage2CaloLayer2IsoTauEta_->Fill(itTau->hwEta());
if(itTau->hwPt() !=0 ){
stage2CaloLayer2IsoTauEtEtaPhi_->Fill(itTau->hwEta(), itTau->hwPhi(), itTau->hwPt());
stage2CaloLayer2IsoTauOcc_->Fill(itTau->hwEta(), itTau->hwPhi());
}
}
}
else{
stage2CaloLayer2TauBxOcc_->Fill(itBX, itTau->hwPt());
if(itBX == 0 ){
stage2CaloLayer2TauRank_->Fill(itTau->hwPt());
stage2CaloLayer2TauPhi_->Fill(itTau->hwPhi());
stage2CaloLayer2TauEta_->Fill(itTau->hwEta());
if(itTau->hwPt() !=0 ){
stage2CaloLayer2TauEtEtaPhi_->Fill(itTau->hwEta(), itTau->hwPhi(), itTau->hwPt());
stage2CaloLayer2TauOcc_->Fill(itTau->hwEta(), itTau->hwPhi());
}
}
}
}
}

//energy sum
edm::Handle<l1t::EtSumBxCollection> EtSum;
e.getByToken(stage2CaloLayer2EtSumToken_,EtSum);
for(int itBX=EtSum->getFirstBX(); itBX<=EtSum->getLastBX(); ++itBX){
for(l1t::EtSumBxCollection::const_iterator itEtSum = EtSum->begin(itBX); itEtSum != EtSum->end(itBX); ++itEtSum){
stage2CaloLayer2EtSumBxOcc_->Fill(itBX, itEtSum->hwPt());

if (itBX==0){
if(l1t::EtSum::EtSumType::kMissingEt == itEtSum->getType()){;
stage2CaloLayer2METRank_->Fill(itEtSum->hwPt());
stage2CaloLayer2METPhi_->Fill(itEtSum->hwPhi());
} else if(l1t::EtSum::EtSumType::kTotalEt == itEtSum->getType()){
stage2CaloLayer2ETTRank_->Fill(itEtSum->hwPt());
stage2CaloLayer2ETTPhi_->Fill(itEtSum->hwPhi());
} else if(l1t::EtSum::EtSumType::kMissingHt == itEtSum->getType()){
stage2CaloLayer2MHTRank_->Fill(itEtSum->hwPt());
stage2CaloLayer2MHTPhi_->Fill(itEtSum->hwPhi());
stage2CaloLayer2MHTEta_->Fill(itEtSum->hwEta());
} else{
stage2CaloLayer2HTTRank_->Fill(itEtSum->hwPt());
stage2CaloLayer2HTTPhi_->Fill(itEtSum->hwPhi());
stage2CaloLayer2HTTEta_->Fill(itEtSum->hwEta());
}
}
}
}
}

void L1TStage2CaloLayer2::dqmBeginRun(edm::Run const& iRrun, edm::EventSetup const& evSetup)
{}

void L1TStage2CaloLayer2::beginLuminosityBlock(const edm::LuminosityBlock& iLumi, const edm::EventSetup& evSetup) {}
3 changes: 3 additions & 0 deletions DQM/L1TMonitor/src/SealModule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,8 @@ DEFINE_FWK_MODULE(L1TdeCSCTF);
#include "DQM/L1TMonitor/interface/L1THIonImp.h"
DEFINE_FWK_MODULE(L1THIonImp);

#include <DQM/L1TMonitor/interface/L1TStage2CaloLayer2.h>
DEFINE_FWK_MODULE(L1TStage2CaloLayer2);

//#include "DQM/L1TMonitor/interface/L1GtHwValidation.h"
//DEFINE_FWK_MODULE(L1GtHwValidation);
Loading

0 comments on commit 2185670

Please sign in to comment.