CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
PatJetAnalyzer Class Reference

Module to analyze pat::Jets in the context of a more complex exercise. More...

Inheritance diagram for PatJetAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 PatJetAnalyzer (const edm::ParameterSet &cfg)
 default contructor More...
 
 ~PatJetAnalyzer () override
 default destructor More...
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void analyze (const edm::Event &event, const edm::EventSetup &setup) override
 everything that needs to be done during the even loop More...
 
bool booked (const std::string histName) const
 check if histogram was booked More...
 
void fill (const std::string histName, double value) const
 fill histogram if it had been booked before More...
 
void print (edm::View< pat::Jet >::const_iterator &jet, unsigned int idx)
 

Private Attributes

std::string corrLevel_
 correction level for pat jet More...
 
std::map< std::string, TH1F * > hists_
 management of 1d histograms More...
 
edm::EDGetTokenT< edm::View< pat::Jet > > jetsToken_
 pat jets More...
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

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:

Definition at line 42 of file PatJetAnalyzer.cc.

Constructor & Destructor Documentation

PatJetAnalyzer::PatJetAnalyzer ( const edm::ParameterSet cfg)
explicit

default contructor

Definition at line 72 of file PatJetAnalyzer.cc.

References BINS, edmScanValgrind::buffer, hists_, training_settings::idx, TFileService::make(), MAXBIN, and overlapproblemtsosanalyzer_cfi::title.

73  : corrLevel_(cfg.getParameter<std::string>("corrLevel")),
75  // register TFileService
77 
78  // jet multiplicity
79  hists_["mult"] = fs->make<TH1F>("mult", "N_{Jet}", 15, 0., 15.);
80  // jet pt (for all jets)
81  hists_["pt"] = fs->make<TH1F>("pt", "p_{T}(Jet) [GeV]", 60, 0., 300.);
82  // jet eta (for all jets)
83  hists_["eta"] = fs->make<TH1F>("eta", "#eta (Jet)", 60, -3., 3.);
84  // jet phi (for all jets)
85  hists_["phi"] = fs->make<TH1F>("phi", "#phi (Jet)", 60, 3.2, 3.2);
86  // dijet mass (if available)
87  hists_["mass"] = fs->make<TH1F>("mass", "M_{jj} [GeV]", 50, 0., 500.);
88  // basic histograms for jet energy response
89  for (unsigned int idx = 0; idx < MAXBIN; ++idx) {
90  char buffer[10];
91  sprintf(buffer, "jes_%i", idx);
92  char title[50];
93  sprintf(title, "p_{T}^{rec}/p_{T}^{gen} [%i GeV - %i GeV]", (int)BINS[idx], (int)BINS[idx + 1]);
94  hists_[buffer] = fs->make<TH1F>(buffer, title, 100, 0., 2.);
95  }
96 }
T getParameter(std::string const &) const
std::string corrLevel_
correction level for pat jet
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< edm::View< pat::Jet > > jetsToken_
pat jets
static const float BINS[]
static const unsigned int MAXBIN
std::map< std::string, TH1F * > hists_
management of 1d histograms
PatJetAnalyzer::~PatJetAnalyzer ( )
inlineoverride

default destructor

Definition at line 47 of file PatJetAnalyzer.cc.

References analyze(), and singleTopDQM_cfi::setup.

47 {};

Member Function Documentation

void PatJetAnalyzer::analyze ( const edm::Event event,
const edm::EventSetup setup 
)
overrideprivate

everything that needs to be done during the even loop

Definition at line 98 of file PatJetAnalyzer.cc.

References BINS, edmScanValgrind::buffer, corrLevel_, fill(), training_settings::idx, metsig::jet, singleTopDQM_cfi::jets, jetsToken_, EgHLTOffHistBins_cfi::mass, MAXBIN, and p4.

Referenced by ~PatJetAnalyzer().

98  {
99  // recieve jet collection label
101  event.getByToken(jetsToken_, jets);
102 
103  // loop jets
104  for (edm::View<pat::Jet>::const_iterator jet = jets->begin(); jet != jets->end(); ++jet) {
105  // print jec factors
106  // print(jet, jet-jets->begin());
107 
108  // fill basic kinematics
109  fill("pt", jet->correctedJet(corrLevel_).pt());
110  fill("eta", jet->eta());
111  fill("phi", jet->phi());
112  // basic plots for jet responds plot as a function of pt
113  if (jet->genJet()) {
114  double resp = jet->correctedJet(corrLevel_).pt() / jet->genJet()->pt();
115  for (unsigned int idx = 0; idx < MAXBIN; ++idx) {
116  if (BINS[idx] <= jet->genJet()->pt() && jet->genJet()->pt() < BINS[idx + 1]) {
117  char buffer[10];
118  sprintf(buffer, "jes_%i", idx);
119  fill(buffer, resp);
120  }
121  }
122  }
123  }
124  // jet multiplicity
125  fill("mult", jets->size());
126  // invariant dijet mass for first two leading jets
127  if (jets->size() > 1) {
128  fill("mass", ((*jets)[0].p4() + (*jets)[1].p4()).mass());
129  }
130 }
std::string corrLevel_
correction level for pat jet
void fill(const std::string histName, double value) const
fill histogram if it had been booked before
edm::EDGetTokenT< edm::View< pat::Jet > > jetsToken_
pat jets
double p4[4]
Definition: TauolaWrapper.h:92
static const float BINS[]
static const unsigned int MAXBIN
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
bool PatJetAnalyzer::booked ( const std::string  histName) const
inlineprivate

check if histogram was booked

Definition at line 54 of file PatJetAnalyzer.cc.

References hists_.

Referenced by fill().

54 { return hists_.find(histName) != hists_.end(); };
std::map< std::string, TH1F * > hists_
management of 1d histograms
void PatJetAnalyzer::fill ( const std::string  histName,
double  value 
) const
inlineprivate

fill histogram if it had been booked before

Definition at line 56 of file PatJetAnalyzer.cc.

References booked(), hists_, training_settings::idx, metsig::jet, and print().

Referenced by analyze().

56  {
57  if (booked(histName))
58  hists_.find(histName)->second->Fill(value);
59  };
Definition: value.py:1
bool booked(const std::string histName) const
check if histogram was booked
std::map< std::string, TH1F * > hists_
management of 1d histograms
void PatJetAnalyzer::print ( edm::View< pat::Jet >::const_iterator &  jet,
unsigned int  idx 
)
private

Definition at line 132 of file PatJetAnalyzer.cc.

References gather_cfg::cout, pat::Jet::currentJECLevel(), DEFINE_FWK_MODULE, training_settings::idx, pat::JetCorrFactors::NONE, reco::LeafCandidate::pt(), edm::View< T >::size(), and pat::JetCorrFactors::UDS.

Referenced by fill().

132  {
133  //edm::LogInfo log("JEC");
134  std::cout << "[" << idx << "] :: eta=" << std::setw(10) << jet->eta() << " phi=" << std::setw(10) << jet->phi()
135  << " size: " << jet->availableJECLevels().size() << std::endl;
136  for (unsigned int idx = 0; idx < jet->availableJECLevels().size(); ++idx) {
137  pat::Jet correctedJet;
138  if (jet->availableJECLevels()[idx].find("L5Flavor") != std::string::npos ||
139  jet->availableJECLevels()[idx].find("L7Parton") != std::string::npos) {
140  correctedJet = jet->correctedJet(idx, pat::JetCorrFactors::UDS);
141  } else {
142  correctedJet = jet->correctedJet(idx, pat::JetCorrFactors::NONE);
143  }
144  std::cout << std::setw(10) << correctedJet.currentJECLevel() << " pt=" << std::setw(10) << correctedJet.pt()
145  << std::endl;
146  }
147 }
size_type size() const
double pt() const final
transverse momentum
std::string currentJECLevel() const
return the name of the current step of jet energy corrections
Definition: Jet.h:141
Analysis-level calorimeter jet class.
Definition: Jet.h:77

Member Data Documentation

std::string PatJetAnalyzer::corrLevel_
private

correction level for pat jet

Definition at line 65 of file PatJetAnalyzer.cc.

Referenced by analyze().

std::map<std::string, TH1F*> PatJetAnalyzer::hists_
private

management of 1d histograms

Definition at line 69 of file PatJetAnalyzer.cc.

Referenced by booked(), fill(), and PatJetAnalyzer().

edm::EDGetTokenT<edm::View<pat::Jet> > PatJetAnalyzer::jetsToken_
private

pat jets

Definition at line 67 of file PatJetAnalyzer.cc.

Referenced by analyze().