Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:42:53

0001 #include "DQM/Physics/src/SingleTopTChannelLeptonDQM_miniAOD.h"
0002 #include "DataFormats/BTauReco/interface/JetTag.h"
0003 #include "DataFormats/JetReco/interface/CaloJet.h"
0004 #include "DataFormats/JetReco/interface/PFJet.h"
0005 #include "DataFormats/Math/interface/deltaR.h"
0006 #include "JetMETCorrections/Objects/interface/JetCorrectionsRecord.h"
0007 #include <iostream>
0008 #include <memory>
0009 
0010 #include "FWCore/Framework/interface/ConsumesCollector.h"
0011 #include "FWCore/Framework/interface/EDConsumerBase.h"
0012 #include "FWCore/Utilities/interface/EDGetToken.h"
0013 
0014 #include "DataFormats/PatCandidates/interface/Muon.h"
0015 #include "DataFormats/PatCandidates/interface/Electron.h"
0016 #include "DataFormats/PatCandidates/interface/Jet.h"
0017 #include "DataFormats/PatCandidates/interface/MET.h"
0018 
0019 using namespace std;
0020 namespace SingleTopTChannelLepton_miniAOD {
0021 
0022   // maximal number of leading jets
0023   // to be used for top mass estimate
0024   static const unsigned int MAXJETS = 4;
0025   // nominal mass of the W boson to
0026   // be used for the top mass estimate
0027   static const double WMASS = 80.4;
0028 
0029   MonitorEnsemble::MonitorEnsemble(const char* label, const edm::ParameterSet& cfg, edm::ConsumesCollector&& iC)
0030       : label_(label),
0031         elecIso_(nullptr),
0032         elecSelect_(nullptr),
0033         pvSelect_(nullptr),
0034         muonIso_(nullptr),
0035         muonSelect_(nullptr),
0036         jetIDSelect_(nullptr),
0037         jetSelect(nullptr),
0038         includeBTag_(false),
0039         lowerEdge_(-1.),
0040         upperEdge_(-1.),
0041         logged_(0) {
0042     // sources have to be given; this PSet is not optional
0043     edm::ParameterSet sources = cfg.getParameter<edm::ParameterSet>("sources");
0044     // muons_ = iC.consumes<edm::View<reco::PFCandidate> >(
0045     //     sources.getParameter<edm::InputTag>("muons"));
0046 
0047     muons_ = iC.consumes<edm::View<pat::Muon>>(sources.getParameter<edm::InputTag>("muons"));
0048 
0049     elecs_ = iC.consumes<edm::View<pat::Electron>>(sources.getParameter<edm::InputTag>("elecs"));
0050     pvs_ = iC.consumes<edm::View<reco::Vertex>>(sources.getParameter<edm::InputTag>("pvs"));
0051     jets_ = iC.consumes<edm::View<pat::Jet>>(sources.getParameter<edm::InputTag>("jets"));
0052     for (edm::InputTag const& tag : sources.getParameter<std::vector<edm::InputTag>>("mets"))
0053       mets_.push_back(iC.consumes<edm::View<pat::MET>>(tag));
0054     // electronExtras are optional; they may be omitted or
0055     // empty
0056     if (cfg.existsAs<edm::ParameterSet>("elecExtras")) {
0057       edm::ParameterSet elecExtras = cfg.getParameter<edm::ParameterSet>("elecExtras");
0058       // select is optional; in case it's not found no
0059       // selection will be applied
0060       if (elecExtras.existsAs<std::string>("select")) {
0061         elecSelect_ =
0062             std::make_unique<StringCutObjectSelector<pat::Electron>>(elecExtras.getParameter<std::string>("select"));
0063       }
0064       // isolation is optional; in case it's not found no
0065       // isolation will be applied
0066       if (elecExtras.existsAs<std::string>("isolation")) {
0067         elecIso_ =
0068             std::make_unique<StringCutObjectSelector<pat::Electron>>(elecExtras.getParameter<std::string>("isolation"));
0069       }
0070 
0071       if (elecExtras.existsAs<std::string>("rho")) {
0072         rhoTag = elecExtras.getParameter<edm::InputTag>("rho");
0073       }
0074       // electronId is optional; in case it's not found the
0075       // InputTag will remain empty
0076       if (elecExtras.existsAs<edm::ParameterSet>("electronId")) {
0077         edm::ParameterSet elecId = elecExtras.getParameter<edm::ParameterSet>("electronId");
0078         electronId_ = iC.consumes<edm::ValueMap<float>>(elecId.getParameter<edm::InputTag>("src"));
0079         eidCutValue_ = elecId.getParameter<double>("cutValue");
0080       }
0081     }
0082     // pvExtras are opetional; they may be omitted or empty
0083     if (cfg.existsAs<edm::ParameterSet>("pvExtras")) {
0084       edm::ParameterSet pvExtras = cfg.getParameter<edm::ParameterSet>("pvExtras");
0085       // select is optional; in case it's not found no
0086       // selection will be applied
0087       if (pvExtras.existsAs<std::string>("select")) {
0088         pvSelect_ =
0089             std::make_unique<StringCutObjectSelector<reco::Vertex>>(pvExtras.getParameter<std::string>("select"));
0090       }
0091     }
0092     // muonExtras are optional; they may be omitted or empty
0093     if (cfg.existsAs<edm::ParameterSet>("muonExtras")) {
0094       edm::ParameterSet muonExtras = cfg.getParameter<edm::ParameterSet>("muonExtras");
0095       // select is optional; in case it's not found no
0096       // selection will be applied
0097       if (muonExtras.existsAs<std::string>("select")) {
0098         muonSelect_ =
0099             std::make_unique<StringCutObjectSelector<pat::Muon>>(muonExtras.getParameter<std::string>("select"));
0100       }
0101       // isolation is optional; in case it's not found no
0102       // isolation will be applied
0103       if (muonExtras.existsAs<std::string>("isolation")) {
0104         muonIso_ =
0105             std::make_unique<StringCutObjectSelector<pat::Muon>>(muonExtras.getParameter<std::string>("isolation"));
0106       }
0107     }
0108 
0109     // jetExtras are optional; they may be omitted or
0110     // empty
0111     if (cfg.existsAs<edm::ParameterSet>("jetExtras")) {
0112       edm::ParameterSet jetExtras = cfg.getParameter<edm::ParameterSet>("jetExtras");
0113       // read jetID information if it exists
0114       if (jetExtras.existsAs<edm::ParameterSet>("jetID")) {
0115         edm::ParameterSet jetID = jetExtras.getParameter<edm::ParameterSet>("jetID");
0116         jetIDLabel_ = iC.consumes<reco::JetIDValueMap>(jetID.getParameter<edm::InputTag>("label"));
0117         jetIDSelect_ =
0118             std::make_unique<StringCutObjectSelector<reco::JetID>>(jetID.getParameter<std::string>("select"));
0119       }
0120       // select is optional; in case it's not found no
0121       // selection will be applied (only implemented for
0122       // CaloJets at the moment)
0123       if (jetExtras.existsAs<std::string>("select")) {
0124         jetSelect_ = jetExtras.getParameter<std::string>("select");
0125         jetSelect = std::make_unique<StringCutObjectSelector<pat::Jet>>(jetSelect_);
0126       }
0127     }
0128 
0129     // triggerExtras are optional; they may be omitted or empty
0130     if (cfg.existsAs<edm::ParameterSet>("triggerExtras")) {
0131       edm::ParameterSet triggerExtras = cfg.getParameter<edm::ParameterSet>("triggerExtras");
0132       triggerTable_ = iC.consumes<edm::TriggerResults>(triggerExtras.getParameter<edm::InputTag>("src"));
0133       triggerPaths_ = triggerExtras.getParameter<std::vector<std::string>>("paths");
0134     }
0135 
0136     // massExtras is optional; in case it's not found no mass
0137     // window cuts are applied for the same flavor monitor
0138     // histograms
0139     if (cfg.existsAs<edm::ParameterSet>("massExtras")) {
0140       edm::ParameterSet massExtras = cfg.getParameter<edm::ParameterSet>("massExtras");
0141       lowerEdge_ = massExtras.getParameter<double>("lowerEdge");
0142       upperEdge_ = massExtras.getParameter<double>("upperEdge");
0143     }
0144 
0145     // setup the verbosity level for booking histograms;
0146     // per default the verbosity level will be set to
0147     // STANDARD. This will also be the chosen level in
0148     // the case when the monitoring PSet is not found
0149     verbosity_ = STANDARD;
0150     if (cfg.existsAs<edm::ParameterSet>("monitoring")) {
0151       edm::ParameterSet monitoring = cfg.getParameter<edm::ParameterSet>("monitoring");
0152       if (monitoring.getParameter<std::string>("verbosity") == "DEBUG")
0153         verbosity_ = DEBUG;
0154       if (monitoring.getParameter<std::string>("verbosity") == "VERBOSE")
0155         verbosity_ = VERBOSE;
0156       if (monitoring.getParameter<std::string>("verbosity") == "STANDARD")
0157         verbosity_ = STANDARD;
0158     }
0159     // and don't forget to do the histogram booking
0160     directory_ = cfg.getParameter<std::string>("directory");
0161     // book(ibooker);
0162   }
0163 
0164   void MonitorEnsemble::book(DQMStore::IBooker& ibooker) {
0165     // set up the current directory path
0166     std::string current(directory_);
0167     current += label_;
0168     ibooker.setCurrentFolder(current);
0169 
0170     // determine number of bins for trigger monitoring
0171     //unsigned int nPaths = triggerPaths_.size();
0172 
0173     // --- [STANDARD] --- //
0174     // Run Number
0175     //hists_["RunNumb_"] = ibooker.book1D("RunNumber", "Run Nr.", 1.e4, 1.5e5, 3.e5);
0176     // instantaneous luminosity
0177     //hists_["InstLumi_"] = ibooker.book1D("InstLumi", "Inst. Lumi.", 100, 0., 1.e3);
0178     // number of selected primary vertices
0179     hists_["pvMult_"] = ibooker.book1D("PvMult", "N_{good pvs}", 50, 0., 50.);
0180     // pt of the leading muon
0181     hists_["muonPt_"] = ibooker.book1D("MuonPt", "pt(#mu TightId, TightIso)", 40, 0., 200.);
0182     // muon multiplicity before std isolation
0183     hists_["muonMult_"] = ibooker.book1D("MuonMult", "N_{loose}(#mu)", 10, 0., 10.);
0184     // muon multiplicity after  std isolation
0185     //hists_["muonMultIso_"] = ibooker.book1D("MuonMultIso",
0186     //    "N_{TightIso}(#mu)", 10, 0., 10.);
0187 
0188     hists_["muonMultTight_"] = ibooker.book1D("MuonMultTight", "N_{TightIso,TightId}(#mu)", 10, 0., 10.);
0189 
0190     // pt of the leading electron
0191     hists_["elecPt_"] = ibooker.book1D("ElecPt", "pt(e TightId, TightIso)", 40, 0., 200.);
0192     // electron multiplicity before std isolation
0193     //hists_["elecMult_"] = ibooker.book1D("ElecMult", "N_{looseId}(e)", 10, 0., 10.);
0194     // electron multiplicity after  std isolation
0195     //hists_["elecMultIso_"] = ibooker.book1D("ElecMultIso", "N_{Iso}(e)", 10, 0., 10.);
0196     // multiplicity of jets with pt>20 (corrected to L2+L3)
0197     hists_["jetMult_"] = ibooker.book1D("JetMult", "N_{30}(jet)", 10, 0., 10.);
0198     hists_["jetLooseMult_"] = ibooker.book1D("JetLooseMult", "N_{30,loose}(jet)", 10, 0., 10.);
0199 
0200     // trigger efficiency estimates for single lepton triggers
0201     //hists_["triggerEff_"] = ibooker.book1D("TriggerEff",
0202     //    "Eff(trigger)", nPaths, 0., nPaths);
0203     // monitored trigger occupancy for single lepton triggers
0204     //hists_["triggerMon_"] = ibooker.book1D("TriggerMon",
0205     //    "Mon(trigger)", nPaths, 0., nPaths);
0206     // MET (calo)
0207     hists_["slimmedMETs_"] = ibooker.book1D("slimmedMETs", "MET_{slimmed}", 40, 0., 200.);
0208     // W mass estimate
0209     hists_["massW_"] = ibooker.book1D("MassW", "M(W)", 60, 0., 300.);
0210     // Top mass estimate
0211     hists_["massTop_"] = ibooker.book1D("MassTop", "M(Top)", 50, 0., 500.);
0212     // b-tagged Top mass
0213     //hists_["massBTop_"] = ibooker.book1D("MassBTop", "M(Top, 1 b-tag)", 50, 0., 500.);
0214 
0215     // W mass transverse estimate mu
0216     hists_["MTWm_"] = ibooker.book1D("MTWm", "M_{T}^{W}(#mu)", 60, 0., 300.);
0217     // Top mass transverse estimate mu
0218     hists_["mMTT_"] = ibooker.book1D("mMTT", "M_{T}^{t}(#mu)", 50, 0., 500.);
0219 
0220     // W mass transverse estimate e
0221     hists_["MTWe_"] = ibooker.book1D("MTWe", "M_{T}^{W}(e)", 60, 0., 300.);
0222     // Top mass transverse estimate e
0223     hists_["eMTT_"] = ibooker.book1D("eMTT", "M_{T}^{t}(e)", 50, 0., 500.);
0224 
0225     // set bin labels for trigger monitoring
0226     triggerBinLabels(std::string("trigger"), triggerPaths_);
0227 
0228     if (verbosity_ == STANDARD)
0229       return;
0230 
0231     // --- [VERBOSE] --- //
0232     // eta of the leading muon
0233     hists_["muonEta_"] = ibooker.book1D("MuonEta", "#eta(#mu TightId,TightIso)", 30, -3., 3.);
0234     // relative isolation of the candidate muon (depending on the decay channel)
0235     hists_["muonPhi_"] = ibooker.book1D("MuonPhi", "#phi(#mu TightId,TightIso)", 40, -4., 4.);
0236     hists_["muonRelIso_"] = ibooker.book1D("MuonRelIso", "Iso_{Rel}(#mu TightId) (#Delta#beta Corrected)", 50, 0., 1.);
0237 
0238     // eta of the leading electron
0239     hists_["elecEta_"] = ibooker.book1D("ElecEta", "#eta(e TightId, TightIso)", 30, -3., 3.);
0240     hists_["elecPhi_"] = ibooker.book1D("ElecPhi", "#phi(e TightId, TightIso)", 40, -4., 4.);
0241     // std isolation variable of the leading electron
0242     hists_["elecRelIso_"] = ibooker.book1D("ElecRelIso", "Iso_{Rel}(e TightId)", 50, 0., 1.);
0243 
0244     hists_["elecMultTight_"] = ibooker.book1D("ElecMultTight", "N_{TightIso,TightId}(e)", 10, 0., 10.);
0245 
0246     // multiplicity of btagged jets (for track counting high efficiency) with
0247     // pt(L2L3)>30
0248     //hists_["jetMultBEff_"] = ibooker.book1D("JetMultBEff",
0249     //    "N_{30}(TCHE)", 10, 0., 10.);
0250     // btag discriminator for track counting high efficiency for jets with
0251     // pt(L2L3)>30
0252     //hists_["jetBDiscEff_"] = ibooker.book1D("JetBDiscEff",
0253     //    "Disc_{TCHE}(jet)", 100, 0., 10.);
0254     // eta of the 1. leading jet (corrected to L2+L3)
0255     hists_["jet1Eta_"] = ibooker.book1D("Jet1Eta", "#eta_{30,loose}(jet1)", 60, -3., 3.);
0256     // pt of the 1. leading jet (corrected to L2+L3)
0257     hists_["jet1Pt_"] = ibooker.book1D("Jet1Pt", "pt_{30,loose}(jet1)", 60, 0., 300.);
0258     // eta of the 2. leading jet (corrected to L2+L3)
0259     hists_["jet2Eta_"] = ibooker.book1D("Jet2Eta", "#eta_{30,loose}(jet2)", 60, -3., 3.);
0260     // pt of the 2. leading jet (corrected to L2+L3)
0261     hists_["jet2Pt_"] = ibooker.book1D("Jet2Pt", "pt_{30,loose}(jet2)", 60, 0., 300.);
0262     // eta of the 3. leading jet (corrected to L2+L3)
0263     //hists_["jet3Eta_"] = ibooker.book1D("Jet3Eta", "#eta_{30,loose}(jet3)", 60, -3., 3.);
0264     // pt of the 3. leading jet (corrected to L2+L3)
0265     //hists_["jet3Pt_"] = ibooker.book1D("Jet3Pt", "pt_{30,loose}(jet3)", 60, 0., 300.);
0266     // eta of the 4. leading jet (corrected to L2+L3)
0267     //hists_["jet4Eta_"] = ibooker.book1D("Jet4Eta", "#eta_{30,loose}(jet4)", 60, -3., 3.);
0268     // pt of the 4. leading jet (corrected to L2+L3)
0269     //hists_["jet4Pt_"] = ibooker.book1D("Jet4Pt", "pt_{30,loose}(jet4)", 60, 0., 300.);
0270     // MET (tc)
0271     hists_["slimmedMETsNoHF_"] = ibooker.book1D("slimmedMETsNoHF", "MET_{slimmedNoHF}", 40, 0., 200.);
0272     // MET (pflow)
0273     hists_["slimmedMETsPuppi_"] = ibooker.book1D("slimmedMETsPuppi", "MET_{slimmedPuppi}", 40, 0., 200.);
0274     // dz for muons (to suppress cosmis)
0275     hists_["muonDelZ_"] = ibooker.book1D("MuonDelZ", "d_{z}(#mu)", 50, -25., 25.);
0276     // dxy for muons (to suppress cosmics)
0277     hists_["muonDelXY_"] = ibooker.book2D("MuonDelXY", "d_{xy}(#mu)", 50, -0.1, 0.1, 50, -0.1, 0.1);
0278 
0279     // set axes titles for dxy for muons
0280     hists_["muonDelXY_"]->setAxisTitle("x [cm]", 1);
0281     hists_["muonDelXY_"]->setAxisTitle("y [cm]", 2);
0282 
0283     if (verbosity_ == VERBOSE)
0284       return;
0285 
0286     // --- [DEBUG] --- //
0287     // charged hadron isolation component of the candidate muon (depending on the
0288     // decay channel)
0289     hists_["muonChHadIso_"] = ibooker.book1D("MuonChHadIsoComp", "ChHad_{IsoComponent}(#mu TightId)", 50, 0., 5.);
0290     // neutral hadron isolation component of the candidate muon (depending on the
0291     // decay channel)
0292     hists_["muonNeHadIso_"] = ibooker.book1D("MuonNeHadIsoComp", "NeHad_{IsoComponent}(#mu TightId)", 50, 0., 5.);
0293     // photon isolation component of the candidate muon (depending on the decay
0294     // channel)
0295     hists_["muonPhIso_"] = ibooker.book1D("MuonPhIsoComp", "Photon_{IsoComponent}(#mu TightId)", 50, 0., 5.);
0296     // charged hadron isolation component of the candidate electron (depending on
0297     // the decay channel)
0298     hists_["elecChHadIso_"] = ibooker.book1D("ElectronChHadIsoComp", "ChHad_{IsoComponent}(e TightId)", 50, 0., 5.);
0299     // neutral hadron isolation component of the candidate electron (depending on
0300     // the decay channel)
0301     hists_["elecNeHadIso_"] = ibooker.book1D("ElectronNeHadIsoComp", "NeHad_{IsoComponent}(e TightId)", 50, 0., 5.);
0302     // photon isolation component of the candidate electron (depending on the
0303     // decay channel)
0304     hists_["elecPhIso_"] = ibooker.book1D("ElectronPhIsoComp", "Photon_{IsoComponent}(e TightId)", 50, 0., 5.);
0305     // multiplicity of btagged jets (for track counting high purity) with
0306     // pt(L2L3)>30
0307     //hists_["jetMultBPur_"] = ibooker.book1D("JetMultBPur",
0308     //    "N_{30}(TCHP)", 10, 0., 10.);
0309     // btag discriminator for track counting high purity
0310     //hists_["jetBDiscPur_"] = ibooker.book1D("JetBDiscPur",
0311     //    "Disc_{TCHP}(Jet)", 100, 0., 10.);
0312     // multiplicity of btagged jets (for simple secondary vertex) with pt(L2L3)>30
0313     //hists_["jetMultBVtx_"] = ibooker.book1D("JetMultBVtx",
0314     //    "N_{30}(SSVHE)", 10, 0., 10.);
0315     // btag discriminator for simple secondary vertex
0316     //hists_["jetBDiscVtx_"] = ibooker.book1D("JetBDiscVtx",
0317     //    "Disc_{SSVHE}(Jet)", 35, -1., 6.);
0318     // multiplicity for combined secondary vertex
0319     hists_["jetMultBCSVM_"] = ibooker.book1D("JetMultBCSVM", "N_{30}(CSVM)", 10, 0., 10.);
0320     // btag discriminator for combined secondary vertex
0321     hists_["jetBCSV_"] = ibooker.book1D("JetDiscCSV", "BJet Disc_{CSV}(JET)", 100, -1., 2.);
0322     // pt of the 1. leading jet (uncorrected)
0323     //hists_["jet1PtRaw_"] = ibooker.book1D("Jet1PtRaw", "pt_{Raw}(jet1)", 60, 0., 300.);
0324     // pt of the 2. leading jet (uncorrected)
0325     //hists_["jet2PtRaw_"] = ibooker.book1D("Jet2PtRaw", "pt_{Raw}(jet2)", 60, 0., 300.);
0326     // pt of the 3. leading jet (uncorrected)
0327     //hists_["jet3PtRaw_"] = ibooker.book1D("Jet3PtRaw", "pt_{Raw}(jet3)", 60, 0., 300.);
0328     // pt of the 4. leading jet (uncorrected)
0329     //hists_["jet4PtRaw_"] = ibooker.book1D("Jet4PtRaw", "pt_{Raw}(jet4)", 60, 0., 300.);
0330     // selected events
0331     hists_["eventLogger_"] = ibooker.book2D("EventLogger", "Logged Events", 9, 0., 9., 10, 0., 10.);
0332 
0333     // set axes titles for selected events
0334     hists_["eventLogger_"]->getTH1()->SetOption("TEXT");
0335     hists_["eventLogger_"]->setBinLabel(1, "Run", 1);
0336     hists_["eventLogger_"]->setBinLabel(2, "Block", 1);
0337     hists_["eventLogger_"]->setBinLabel(3, "Event", 1);
0338     hists_["eventLogger_"]->setBinLabel(4, "pt_{L2L3}(jet1)", 1);
0339     hists_["eventLogger_"]->setBinLabel(5, "pt_{L2L3}(jet2)", 1);
0340     hists_["eventLogger_"]->setBinLabel(6, "pt_{L2L3}(jet3)", 1);
0341     hists_["eventLogger_"]->setBinLabel(7, "pt_{L2L3}(jet4)", 1);
0342     hists_["eventLogger_"]->setBinLabel(8, "M_{W}", 1);
0343     hists_["eventLogger_"]->setBinLabel(9, "M_{Top}", 1);
0344     hists_["eventLogger_"]->setAxisTitle("logged evts", 2);
0345     return;
0346   }
0347 
0348   void MonitorEnsemble::fill(const edm::Event& event, const edm::EventSetup& setup) {
0349     // fetch trigger event if configured such
0350     edm::Handle<edm::TriggerResults> triggerTable;
0351 
0352     if (!triggerTable_.isUninitialized()) {
0353       if (!event.getByToken(triggerTable_, triggerTable))
0354         return;
0355     }
0356 
0357     /*
0358   ------------------------------------------------------------
0359 
0360   Primary Vertex Monitoring
0361 
0362   ------------------------------------------------------------
0363   */
0364     // fill monitoring plots for primary verices
0365     edm::Handle<edm::View<reco::Vertex>> pvs;
0366     if (!event.getByToken(pvs_, pvs))
0367       return;
0368     const reco::Vertex& pver = pvs->front();
0369 
0370     unsigned int pvMult = 0;
0371     if (pvs.isValid()) {
0372       for (edm::View<reco::Vertex>::const_iterator pv = pvs->begin(); pv != pvs->end(); ++pv) {
0373         bool isGood =
0374             (!(pv->isFake()) && (pv->ndof() > 4.0) && (abs(pv->z()) < 24.0) && (abs(pv->position().Rho()) < 2.0));
0375         if (!isGood)
0376           continue;
0377         pvMult++;
0378       }
0379       //std::cout<<" npv  "<<testn<<endl;
0380     }
0381 
0382     fill("pvMult_", pvMult);
0383 
0384     /*
0385   ------------------------------------------------------------
0386 
0387   Run and Inst. Luminosity information (Inst. Lumi. filled now with a dummy
0388   value=5.0)
0389 
0390   ------------------------------------------------------------
0391   */
0392 
0393     //if (!event.eventAuxiliary().run()) return;
0394 
0395     //fill("RunNumb_", event.eventAuxiliary().run());
0396 
0397     //double dummy = 5.;
0398     //fill("InstLumi_", dummy);
0399 
0400     /*
0401   ------------------------------------------------------------
0402 
0403   Electron Monitoring
0404 
0405   ------------------------------------------------------------
0406   */
0407 
0408     // fill monitoring plots for electrons
0409     edm::Handle<edm::View<pat::Electron>> elecs;
0410     if (!event.getByToken(elecs_, elecs))
0411       return;
0412 
0413     edm::Handle<double> _rhoHandle;
0414     event.getByLabel(rhoTag, _rhoHandle);
0415     //if (!event.getByToken(elecs_, elecs)) return;
0416 
0417     // check availability of electron id
0418     edm::Handle<edm::ValueMap<float>> electronId;
0419     if (!electronId_.isUninitialized()) {
0420       if (!event.getByToken(electronId_, electronId))
0421         return;
0422     }
0423 
0424     // loop electron collection
0425     unsigned int eMultIso = 0, eMult = 0;
0426     std::vector<const pat::Electron*> isoElecs;
0427 
0428     pat::Electron e;
0429 
0430     for (edm::View<pat::Electron>::const_iterator elec = elecs->begin(); elec != elecs->end(); ++elec) {
0431       if (true) {  //loose id
0432         if (!elecSelect_ || (*elecSelect_)(*elec)) {
0433           double el_ChHadIso = elec->pfIsolationVariables().sumChargedHadronPt;
0434           double el_NeHadIso = elec->pfIsolationVariables().sumNeutralHadronEt;
0435           double el_PhIso = elec->pfIsolationVariables().sumPhotonEt;
0436 
0437           double rho = _rhoHandle.isValid() ? (float)(*_rhoHandle) : 0;
0438           double absEta = abs(elec->superCluster()->eta());
0439           double eA = 0;
0440           if (absEta < 1.000)
0441             eA = 0.1703;
0442           else if (absEta < 1.479)
0443             eA = 0.1715;
0444           else if (absEta < 2.000)
0445             eA = 0.1213;
0446           else if (absEta < 2.200)
0447             eA = 0.1230;
0448           else if (absEta < 2.300)
0449             eA = 0.1635;
0450           else if (absEta < 2.400)
0451             eA = 0.1937;
0452           else if (absEta < 5.000)
0453             eA = 0.2393;
0454 
0455           double el_pfRelIso = (el_ChHadIso + max(0., el_NeHadIso + el_PhIso - rho * eA)) / elec->pt();
0456 
0457           ++eMult;
0458 
0459           if (eMult == 1) {
0460             fill("elecRelIso_", el_pfRelIso);
0461             fill("elecChHadIso_", el_ChHadIso);
0462             fill("elecNeHadIso_", el_NeHadIso);
0463             fill("elecPhIso_", el_PhIso);
0464           }
0465           //loose Iso
0466           //if(!((el_pfRelIso<0.0994 && absEta<1.479)||(el_pfRelIso<0.107 && absEta>1.479)))continue;
0467 
0468           //tight Iso
0469           if (!((el_pfRelIso < 0.0588 && absEta < 1.479) || (el_pfRelIso < 0.0571 && absEta > 1.479)))
0470             continue;
0471           ++eMultIso;
0472 
0473           if (eMultIso == 1) {
0474             // restrict to the leading electron
0475             e = *elec;
0476 
0477             fill("elecPt_", elec->pt());
0478             fill("elecEta_", elec->eta());
0479             fill("elecPhi_", elec->phi());
0480           }
0481         }
0482       }
0483     }
0484     //fill("elecMult_", eMult);
0485     fill("elecMultTight_", eMultIso);
0486 
0487     /*
0488   ------------------------------------------------------------
0489 
0490   Muon Monitoring
0491 
0492   ------------------------------------------------------------
0493   */
0494 
0495     // fill monitoring plots for muons
0496     unsigned int mMult = 0, mTight = 0;
0497 
0498     edm::Handle<edm::View<pat::Muon>> muons;
0499 
0500     pat::Muon mu;
0501 
0502     edm::View<pat::Muon>::const_iterator muonit;
0503 
0504     if (!event.getByToken(muons_, muons))
0505       return;
0506 
0507     for (edm::View<pat::Muon>::const_iterator muon = muons->begin(); muon != muons->end(); ++muon) {
0508       // restrict to globalMuons
0509       if (muon->isGlobalMuon()) {
0510         fill("muonDelZ_", muon->innerTrack()->vz());  // CB using inner track!
0511         fill("muonDelXY_", muon->innerTrack()->vx(), muon->innerTrack()->vy());
0512 
0513         // apply preselection loose muon
0514         if (!muonSelect_ || (*muonSelect_)(*muon)) {
0515           //loose muon count
0516           ++mMult;
0517 
0518           double chHadPt = muon->pfIsolationR04().sumChargedHadronPt;
0519           double neHadEt = muon->pfIsolationR04().sumNeutralHadronEt;
0520           double phoEt = muon->pfIsolationR04().sumPhotonEt;
0521 
0522           double pfRelIso = (chHadPt + max(0., neHadEt + phoEt - 0.5 * muon->pfIsolationR04().sumPUPt)) /
0523                             muon->pt();  // CB dBeta corrected iso!
0524 
0525           if (!(muon->isGlobalMuon() && muon->isPFMuon() && muon->globalTrack()->normalizedChi2() < 10. &&
0526                 muon->globalTrack()->hitPattern().numberOfValidMuonHits() > 0 && muon->numberOfMatchedStations() > 1 &&
0527                 fabs(muon->muonBestTrack()->dxy(pver.position())) < 0.2 &&
0528                 fabs(muon->muonBestTrack()->dz(pver.position())) < 0.5 &&
0529                 muon->innerTrack()->hitPattern().numberOfValidPixelHits() > 0 &&
0530                 muon->innerTrack()->hitPattern().trackerLayersWithMeasurement() > 5))
0531             continue;
0532 
0533           if (mMult == 1) {
0534             // restrict to leading muon
0535             fill("muonRelIso_", pfRelIso);
0536             fill("muonChHadIso_", chHadPt);
0537             fill("muonNeHadIso_", neHadEt);
0538             fill("muonPhIso_", phoEt);
0539             fill("muonRelIso_", pfRelIso);
0540           }
0541 
0542           if (!(pfRelIso < 0.15))
0543             continue;
0544 
0545           ++mTight;
0546 
0547           //tight id
0548           if (mTight == 1) {
0549             // restrict to leading muon
0550             mu = *muon;
0551             fill("muonPt_", muon->pt());
0552             fill("muonEta_", muon->eta());
0553             fill("muonPhi_", muon->phi());
0554           }
0555         }
0556       }
0557     }
0558     fill("muonMult_", mMult);        //loose
0559     fill("muonMultTight_", mTight);  //tight id & iso
0560 
0561     /*
0562   ------------------------------------------------------------
0563 
0564   Jet Monitoring
0565 
0566   ------------------------------------------------------------
0567   */
0568 
0569     // loop jet collection
0570     std::vector<pat::Jet> correctedJets;
0571     std::vector<double> JetTagValues;
0572     pat::Jet TaggedJetCand;
0573     vector<double> bJetDiscVal;
0574 
0575     unsigned int mult = 0, loosemult = 0, multBCSVM = 0;
0576 
0577     edm::Handle<edm::View<pat::Jet>> jets;
0578     if (!event.getByToken(jets_, jets)) {
0579       return;
0580     }
0581 
0582     for (edm::View<pat::Jet>::const_iterator jet = jets->begin(); jet != jets->end(); ++jet) {
0583       // check jetID for calo jets
0584       //unsigned int idx = jet - jets->begin();
0585 
0586       const pat::Jet& sel = *jet;
0587 
0588       if (jetSelect == nullptr)
0589         jetSelect = std::make_unique<StringCutObjectSelector<pat::Jet>>(jetSelect_);
0590 
0591       if (!(*jetSelect)(sel))
0592         continue;
0593       //      if (!jetSelect(sel)) continue;
0594 
0595       // prepare jet to fill monitor histograms
0596       const pat::Jet& monitorJet = *jet;
0597 
0598       ++mult;
0599 
0600       if (monitorJet.chargedHadronEnergyFraction() > 0 && monitorJet.chargedMultiplicity() > 0 &&
0601           monitorJet.chargedEmEnergyFraction() < 0.99 && monitorJet.neutralHadronEnergyFraction() < 0.99 &&
0602           monitorJet.neutralEmEnergyFraction() < 0.99 &&
0603           (monitorJet.chargedMultiplicity() + monitorJet.neutralMultiplicity()) > 1) {
0604         correctedJets.push_back(monitorJet);
0605         ++loosemult;  // determine jet multiplicity
0606 
0607         fill("jetBCSV_",
0608              monitorJet.bDiscriminator(
0609                  "pfCombinedInclusiveSecondaryVertexV2BJetTags"));  //hard coded discriminator and value right now.
0610         if (monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags") > 0.89) {
0611           if (multBCSVM == 0) {
0612             TaggedJetCand = monitorJet;
0613             bJetDiscVal.push_back(monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags"));
0614           } else if (multBCSVM == 1) {
0615             bJetDiscVal.push_back(monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags"));
0616             if (bJetDiscVal[1] > bJetDiscVal[0])
0617               TaggedJetCand = monitorJet;
0618           }
0619 
0620           ++multBCSVM;
0621         }
0622 
0623         // Fill a vector with Jet b-tag WP for later M3+1tag calculation: CSV
0624         // tagger
0625         JetTagValues.push_back(monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags"));
0626         //    }
0627         // fill pt (raw or L2L3) for the leading four jets
0628         if (loosemult == 1) {
0629           //cout<<" jet id= "<<monitorJet.chargedHadronEnergyFraction()<<endl;
0630 
0631           fill("jet1Pt_", monitorJet.pt());
0632           //fill("jet1PtRaw_", jet->pt());
0633           fill("jet1Eta_", monitorJet.eta());
0634         };
0635         if (loosemult == 2) {
0636           fill("jet2Pt_", monitorJet.pt());
0637           //fill("jet2PtRaw_", jet->pt());
0638           fill("jet2Eta_", monitorJet.eta());
0639         }
0640       }
0641     }
0642     fill("jetMult_", mult);
0643     fill("jetLooseMult_", loosemult);
0644     fill("jetMultBCSVM_", multBCSVM);
0645 
0646     /*
0647   ------------------------------------------------------------
0648 
0649   MET Monitoring
0650 
0651   ------------------------------------------------------------
0652   */
0653 
0654     // fill monitoring histograms for met
0655 
0656     pat::MET mET;
0657 
0658     for (std::vector<edm::EDGetTokenT<edm::View<pat::MET>>>::const_iterator met_ = mets_.begin(); met_ != mets_.end();
0659          ++met_) {
0660       edm::Handle<edm::View<pat::MET>> met;
0661       if (!event.getByToken(*met_, met))
0662         continue;
0663       if (met->begin() != met->end()) {
0664         unsigned int idx = met_ - mets_.begin();
0665         if (idx == 0)
0666           fill("slimmedMETs_", met->begin()->et());
0667         if (idx == 1)
0668           fill("slimmedMETsNoHF_", met->begin()->et());
0669         if (idx == 2)
0670           fill("slimmedMETsPuppi_", met->begin()->et());
0671       }
0672     }
0673 
0674     /*
0675   ------------------------------------------------------------
0676 
0677   Event Monitoring
0678 
0679   ------------------------------------------------------------
0680   */
0681 
0682     // fill W boson and top mass estimates
0683 
0684     Calculate_miniAOD eventKinematics(MAXJETS, WMASS);
0685     double wMass = eventKinematics.massWBoson(correctedJets);
0686     double topMass = eventKinematics.massTopQuark(correctedJets);
0687     if (wMass >= 0 && topMass >= 0) {
0688       fill("massW_", wMass);
0689       fill("massTop_", topMass);
0690     }
0691 
0692     // Fill M3 with Btag (CSV Tight) requirement
0693 
0694     // if (!includeBTag_) return;
0695     //if (correctedJets.size() != JetTagValues.size()) return;
0696     //double btopMass =
0697     //    eventKinematics.massBTopQuark(correctedJets, JetTagValues, 0.89); //hard coded CSVv2 value
0698 
0699     //if (btopMass >= 0) fill("massBTop_", btopMass);
0700 
0701     // fill plots for trigger monitoring
0702     if ((lowerEdge_ == -1. && upperEdge_ == -1.) || (lowerEdge_ < wMass && wMass < upperEdge_)) {
0703       if (!triggerTable_.isUninitialized())
0704         fill(event, *triggerTable, "trigger", triggerPaths_);
0705       if (logged_ <= hists_.find("eventLogger_")->second->getNbinsY()) {
0706         // log runnumber, lumi block, event number & some
0707         // more pysics infomation for interesting events
0708         fill("eventLogger_", 0.5, logged_ + 0.5, event.eventAuxiliary().run());
0709         fill("eventLogger_", 1.5, logged_ + 0.5, event.eventAuxiliary().luminosityBlock());
0710         fill("eventLogger_", 2.5, logged_ + 0.5, event.eventAuxiliary().event());
0711         if (!correctedJets.empty())
0712           fill("eventLogger_", 3.5, logged_ + 0.5, correctedJets[0].pt());
0713         if (correctedJets.size() > 1)
0714           fill("eventLogger_", 4.5, logged_ + 0.5, correctedJets[1].pt());
0715         if (correctedJets.size() > 2)
0716           fill("eventLogger_", 5.5, logged_ + 0.5, correctedJets[2].pt());
0717         if (correctedJets.size() > 3)
0718           fill("eventLogger_", 6.5, logged_ + 0.5, correctedJets[3].pt());
0719 
0720         fill("eventLogger_", 7.5, logged_ + 0.5, wMass);
0721         fill("eventLogger_", 8.5, logged_ + 0.5, topMass);
0722         ++logged_;
0723       }
0724     }
0725 
0726     if (multBCSVM != 0 && mTight == 1) {
0727       double mtW = eventKinematics.tmassWBoson(&mu, mET, TaggedJetCand);
0728       fill("MTWm_", mtW);
0729       double MTT = eventKinematics.tmassTopQuark(&mu, mET, TaggedJetCand);
0730       fill("mMTT_", MTT);
0731     }
0732 
0733     if (multBCSVM != 0 && eMultIso == 1) {
0734       double mtW = eventKinematics.tmassWBoson(&e, mET, TaggedJetCand);
0735       fill("MTWe_", mtW);
0736       double MTT = eventKinematics.tmassTopQuark(&e, mET, TaggedJetCand);
0737       fill("eMTT_", MTT);
0738     }
0739   }
0740 }  // namespace SingleTopTChannelLepton_miniAOD
0741 
0742 SingleTopTChannelLeptonDQM_miniAOD::SingleTopTChannelLeptonDQM_miniAOD(const edm::ParameterSet& cfg)
0743     : vertexSelect_(nullptr),
0744       beamspot_(""),
0745       beamspotSelect_(nullptr),
0746       MuonStep(nullptr),
0747       ElectronStep(nullptr),
0748       PvStep(nullptr),
0749       METStep(nullptr) {
0750   JetSteps.clear();
0751 
0752   // configure preselection
0753   edm::ParameterSet presel = cfg.getParameter<edm::ParameterSet>("preselection");
0754   if (presel.existsAs<edm::ParameterSet>("trigger")) {
0755     edm::ParameterSet trigger = presel.getParameter<edm::ParameterSet>("trigger");
0756     triggerTable__ = consumes<edm::TriggerResults>(trigger.getParameter<edm::InputTag>("src"));
0757     triggerPaths_ = trigger.getParameter<std::vector<std::string>>("select");
0758   }
0759   if (presel.existsAs<edm::ParameterSet>("beamspot")) {
0760     edm::ParameterSet beamspot = presel.getParameter<edm::ParameterSet>("beamspot");
0761     beamspot_ = beamspot.getParameter<edm::InputTag>("src");
0762     beamspot__ = consumes<reco::BeamSpot>(beamspot.getParameter<edm::InputTag>("src"));
0763     beamspotSelect_ =
0764         std::make_unique<StringCutObjectSelector<reco::BeamSpot>>(beamspot.getParameter<std::string>("select"));
0765   }
0766 
0767   // conifgure the selection
0768   sel_ = cfg.getParameter<std::vector<edm::ParameterSet>>("selection");
0769   setup_ = cfg.getParameter<edm::ParameterSet>("setup");
0770   for (unsigned int i = 0; i < sel_.size(); ++i) {
0771     selectionOrder_.push_back(sel_.at(i).getParameter<std::string>("label"));
0772     selection_[selectionStep(selectionOrder_.back())] =
0773         std::make_pair(sel_.at(i),
0774                        std::make_unique<SingleTopTChannelLepton_miniAOD::MonitorEnsemble>(
0775 
0776                            selectionStep(selectionOrder_.back()).c_str(), setup_, consumesCollector()));
0777   }
0778   for (std::vector<std::string>::const_iterator selIt = selectionOrder_.begin(); selIt != selectionOrder_.end();
0779        ++selIt) {
0780     std::string key = selectionStep(*selIt), type = objectType(*selIt);
0781     if (selection_.find(key) != selection_.end()) {
0782       if (type == "muons") {
0783         MuonStep = std::make_unique<SelectionStep<pat::Muon>>(selection_[key].first, consumesCollector());
0784       }
0785       if (type == "elecs") {
0786         ElectronStep = std::make_unique<SelectionStep<pat::Electron>>(selection_[key].first, consumesCollector());
0787       }
0788       if (type == "pvs") {
0789         PvStep = std::make_unique<SelectionStep<reco::Vertex>>(selection_[key].first, consumesCollector());
0790       }
0791       if (type == "jets") {
0792         JetSteps.push_back(std::make_unique<SelectionStep<pat::Jet>>(selection_[key].first, consumesCollector()));
0793       }
0794 
0795       if (type == "met") {
0796         METStep = std::make_unique<SelectionStep<pat::MET>>(selection_[key].first, consumesCollector());
0797       }
0798     }
0799   }
0800 }
0801 void SingleTopTChannelLeptonDQM_miniAOD::bookHistograms(DQMStore::IBooker& ibooker,
0802                                                         edm::Run const&,
0803                                                         edm::EventSetup const&) {
0804   for (auto selIt = selection_.begin(); selIt != selection_.end(); ++selIt) {
0805     selIt->second.second->book(ibooker);
0806   }
0807 }
0808 void SingleTopTChannelLeptonDQM_miniAOD::analyze(const edm::Event& event, const edm::EventSetup& setup) {
0809   if (!triggerTable__.isUninitialized()) {
0810     edm::Handle<edm::TriggerResults> triggerTable;
0811     if (!event.getByToken(triggerTable__, triggerTable))
0812       return;
0813     if (!accept(event, *triggerTable, triggerPaths_))
0814       return;
0815   }
0816   if (!beamspot__.isUninitialized()) {
0817     edm::Handle<reco::BeamSpot> beamspot;
0818     if (!event.getByToken(beamspot__, beamspot))
0819       return;
0820     if (!(*beamspotSelect_)(*beamspot))
0821       return;
0822   }
0823 
0824   unsigned int nJetSteps = -1;
0825 
0826   for (std::vector<std::string>::const_iterator selIt = selectionOrder_.begin(); selIt != selectionOrder_.end();
0827        ++selIt) {
0828     std::string key = selectionStep(*selIt), type = objectType(*selIt);
0829     if (selection_.find(key) != selection_.end()) {
0830       if (type == "empty") {
0831         selection_[key].second->fill(event, setup);
0832       }
0833       if (type == "muons" && MuonStep != nullptr) {
0834         if (MuonStep->select(event)) {
0835           selection_[key].second->fill(event, setup);
0836         } else
0837           break;
0838       }
0839 
0840       if (type == "elecs" && ElectronStep != nullptr) {
0841         if (ElectronStep->select(event)) {
0842           selection_[key].second->fill(event, setup);
0843         } else
0844           break;
0845       }
0846 
0847       if (type == "pvs" && PvStep != nullptr) {
0848         if (PvStep->selectVertex(event)) {
0849           selection_[key].second->fill(event, setup);
0850         } else
0851           break;
0852       }
0853 
0854       if (type == "jets") {
0855         nJetSteps++;
0856         if (JetSteps[nJetSteps] != nullptr) {
0857           if (JetSteps[nJetSteps]->select(event, setup)) {
0858             selection_[key].second->fill(event, setup);
0859           } else
0860             break;
0861         }
0862       }
0863 
0864       if (type == "met" && METStep != nullptr) {
0865         if (METStep->select(event)) {
0866           selection_[key].second->fill(event, setup);
0867         } else
0868           break;
0869       }
0870     }
0871   }
0872 }
0873 
0874 // Local Variables:
0875 // show-trailing-whitespace: t
0876 // truncate-lines: t
0877 // End: