/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/PatExamples/plugins/PatJetAnalyzer.cc
151 строка
6 KB
Shahzad Malik Muzaffar
[ANALYSIS] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:04
05 сен 2024, 17:04
a467cd9
Код
Авторство
О чём код?
#include <map> #include <string> #include <iomanip> #include <sstream> #include <iostream> #include "TH1.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/one/EDAnalyzer.h" #include "FWCore/Utilities/interface/InputTag.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/ServiceRegistry/interface/Service.h" #include "CommonTools/UtilAlgos/interface/TFileService.h" #include "DataFormats/PatCandidates/interface/Jet.h" #include "FWCore/MessageLogger/interface/MessageLogger.h" /// maximal number of bins used for the jet /// response plots static const unsigned int MAXBIN = 8; /// binning used for the jet response plots /// (NOTE BINS must have a length of MAXBIN /// +1) static const float BINS[] = {30., 40., 50., 60., 70., 80., 100., 125., 150.}; /** \class PatJetAnalyzer PatJetAnalyzer.h "PhysicsTools/PatAlgos/plugins/PatJetAnalyzer.h" \brief Module to analyze pat::Jets in the context of a more complex exercise. Basic quantities of jets like the transverse momentum, eta and phi as well as the invariant dijet mass are plotted. Basic histograms for a jet energy response plot as a function of the pt of the reference object are filled. As reference matched partons are chosen. Input parameters are: - src --> input for the pat jet collection (edm::InputTag). - corrLevel --> string for the pat jet correction level. */ class PatJetAnalyzer : public edm::one::EDAnalyzer<edm::one::SharedResources> { public: /// default contructor explicit PatJetAnalyzer(const edm::ParameterSet& cfg); /// default destructor ~PatJetAnalyzer() override {} private: /// everything that needs to be done during the even loop void analyze(const edm::Event& event, const edm::EventSetup& setup) override; /// check if histogram was booked bool booked(const std::string histName) const { return hists_.find(histName) != hists_.end(); }; /// fill histogram if it had been booked before void fill(const std::string histName, double value) const { if (booked(histName)) hists_.find(histName)->second->Fill(value); }; // print jet pt for each level of energy corrections void print(edm::View<pat::Jet>::const_iterator& jet, unsigned int idx); private: /// correction level for pat jet std::string corrLevel_; /// pat jets edm::EDGetTokenT<edm::View<pat::Jet> > jetsToken_; /// management of 1d histograms std::map<std::string, TH1F*> hists_; }; PatJetAnalyzer::PatJetAnalyzer(const edm::ParameterSet& cfg) : corrLevel_(cfg.getParameter<std::string>("corrLevel")), jetsToken_(consumes<edm::View<pat::Jet> >(cfg.getParameter<edm::InputTag>("src"))) { usesResource(TFileService::kSharedResource); // register TFileService edm::Service<TFileService> fs; // jet multiplicity hists_["mult"] = fs->make<TH1F>("mult", "N_{Jet}", 15, 0., 15.); // jet pt (for all jets) hists_["pt"] = fs->make<TH1F>("pt", "p_{T}(Jet) [GeV]", 60, 0., 300.); // jet eta (for all jets) hists_["eta"] = fs->make<TH1F>("eta", "#eta (Jet)", 60, -3., 3.); // jet phi (for all jets) hists_["phi"] = fs->make<TH1F>("phi", "#phi (Jet)", 60, 3.2, 3.2); // dijet mass (if available) hists_["mass"] = fs->make<TH1F>("mass", "M_{jj} [GeV]", 50, 0., 500.); // basic histograms for jet energy response for (unsigned int idx = 0; idx < MAXBIN; ++idx) { char buffer[10]; sprintf(buffer, "jes_%i", idx); char title[50]; sprintf(title, "p_{T}^{rec}/p_{T}^{gen} [%i GeV - %i GeV]", (int)BINS[idx], (int)BINS[idx + 1]); hists_[buffer] = fs->make<TH1F>(buffer, title, 100, 0., 2.); } } void PatJetAnalyzer::analyze(const edm::Event& event, const edm::EventSetup& setup) { // recieve jet collection label edm::Handle<edm::View<pat::Jet> > jets; event.getByToken(jetsToken_, jets); // loop jets for (edm::View<pat::Jet>::const_iterator jet = jets->begin(); jet != jets->end(); ++jet) { // print jec factors // print(jet, jet-jets->begin()); // fill basic kinematics fill("pt", jet->correctedJet(corrLevel_).pt()); fill("eta", jet->eta()); fill("phi", jet->phi()); // basic plots for jet responds plot as a function of pt if (jet->genJet()) { double resp = jet->correctedJet(corrLevel_).pt() / jet->genJet()->pt(); for (unsigned int idx = 0; idx < MAXBIN; ++idx) { if (BINS[idx] <= jet->genJet()->pt() && jet->genJet()->pt() < BINS[idx + 1]) { char buffer[10]; sprintf(buffer, "jes_%i", idx); fill(buffer, resp); } } } } // jet multiplicity fill("mult", jets->size()); // invariant dijet mass for first two leading jets if (jets->size() > 1) { fill("mass", ((*jets)[0].p4() + (*jets)[1].p4()).mass()); } } void PatJetAnalyzer::print(edm::View<pat::Jet>::const_iterator& jet, unsigned int idx) { //edm::LogInfo log("JEC"); std::cout << "[" << idx << "] :: eta=" << std::setw(10) << jet->eta() << " phi=" << std::setw(10) << jet->phi() << " size: " << jet->availableJECLevels().size() << std::endl; for (unsigned int idx = 0; idx < jet->availableJECLevels().size(); ++idx) { pat::Jet correctedJet; if (jet->availableJECLevels()[idx].find("L5Flavor") != std::string::npos || jet->availableJECLevels()[idx].find("L7Parton") != std::string::npos) { correctedJet = jet->correctedJet(idx, pat::JetCorrFactors::UDS); } else { correctedJet = jet->correctedJet(idx, pat::JetCorrFactors::NONE); } std::cout << std::setw(10) << correctedJet.currentJECLevel() << " pt=" << std::setw(10) << correctedJet.pt() << std::endl; } } #include "FWCore/Framework/interface/MakerMacros.h" DEFINE_FWK_MODULE(PatJetAnalyzer);