CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes
PFJetMETcorrInputProducerT< T, Textractor > Class Template Reference

#include <PFJetMETcorrInputProducerT.h>

Inheritance diagram for PFJetMETcorrInputProducerT< T, Textractor >:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Classes

struct  type2BinningEntryType
 

Public Member Functions

 PFJetMETcorrInputProducerT (const edm::ParameterSet &cfg)
 
 ~PFJetMETcorrInputProducerT ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

void produce (edm::Event &evt, const edm::EventSetup &es)
 

Private Attributes

double jetCorrEtaMax_
 
Textractor jetCorrExtractor_
 
std::string jetCorrLabel_
 
std::string moduleLabel_
 
std::string offsetCorrLabel_
 
bool skipEM_
 
double skipEMfractionThreshold_
 
bool skipMuons_
 
StringCutObjectSelector
< reco::Candidate > * 
skipMuonSelection_
 
edm::EDGetTokenT< std::vector
< T > > 
token_
 
double type1JetPtThreshold_
 
std::vector
< type2BinningEntryType * > 
type2Binning_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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 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

template<typename T, typename Textractor>
class PFJetMETcorrInputProducerT< T, Textractor >

Produce Type 1 + 2 MET corrections corresponding to differences between raw PFJets and PFJets with jet energy corrections (JECs) applied

NOTE: class is templated to that it works with reco::PFJets as well as with pat::Jets of PF-type as input

Authors
Michael Schmitt, Richard Cavanaugh, The University of Florida Florent Lacroix, University of Illinois at Chicago Christian Veelken, LLR

Definition at line 65 of file PFJetMETcorrInputProducerT.h.

Constructor & Destructor Documentation

template<typename T , typename Textractor >
PFJetMETcorrInputProducerT< T, Textractor >::PFJetMETcorrInputProducerT ( const edm::ParameterSet cfg)
inlineexplicit

Definition at line 69 of file PFJetMETcorrInputProducerT.h.

References edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), PFJetMETcorrInputProducerT< T, Textractor >::jetCorrEtaMax_, PFJetMETcorrInputProducerT< T, Textractor >::jetCorrLabel_, PFJetMETcorrInputProducerT< T, Textractor >::offsetCorrLabel_, PFJetMETcorrInputProducerT< T, Textractor >::skipEM_, PFJetMETcorrInputProducerT< T, Textractor >::skipEMfractionThreshold_, PFJetMETcorrInputProducerT< T, Textractor >::skipMuons_, PFJetMETcorrInputProducerT< T, Textractor >::skipMuonSelection_, AlCaHLTBitMon_QueryRunRegistry::string, PFJetMETcorrInputProducerT< T, Textractor >::token_, PFJetMETcorrInputProducerT< T, Textractor >::type1JetPtThreshold_, and PFJetMETcorrInputProducerT< T, Textractor >::type2Binning_.

70  : moduleLabel_(cfg.getParameter<std::string>("@module_label")),
72  {
73  token_ = consumes<std::vector<T> >(cfg.getParameter<edm::InputTag>("src"));
74 
75  offsetCorrLabel_ = ( cfg.exists("offsetCorrLabel") ) ?
76  cfg.getParameter<std::string>("offsetCorrLabel") : "";
77  jetCorrLabel_ = cfg.getParameter<std::string>("jetCorrLabel");
78 
79  jetCorrEtaMax_ = ( cfg.exists("jetCorrEtaMax") ) ?
80  cfg.getParameter<double>("jetCorrEtaMax") : 9.9;
81 
82  type1JetPtThreshold_ = cfg.getParameter<double>("type1JetPtThreshold");
83 
84  skipEM_ = cfg.getParameter<bool>("skipEM");
85  if ( skipEM_ ) {
86  skipEMfractionThreshold_ = cfg.getParameter<double>("skipEMfractionThreshold");
87  }
88 
89  skipMuons_ = cfg.getParameter<bool>("skipMuons");
90  if ( skipMuons_ ) {
91  std::string skipMuonSelection_string = cfg.getParameter<std::string>("skipMuonSelection");
92  skipMuonSelection_ = new StringCutObjectSelector<reco::Candidate>(skipMuonSelection_string,true);
93  }
94 
95  if ( cfg.exists("type2Binning") ) {
96  typedef std::vector<edm::ParameterSet> vParameterSet;
97  vParameterSet cfgType2Binning = cfg.getParameter<vParameterSet>("type2Binning");
98  for ( vParameterSet::const_iterator cfgType2BinningEntry = cfgType2Binning.begin();
99  cfgType2BinningEntry != cfgType2Binning.end(); ++cfgType2BinningEntry ) {
100  type2Binning_.push_back(new type2BinningEntryType(*cfgType2BinningEntry));
101  }
102  } else {
103  type2Binning_.push_back(new type2BinningEntryType());
104  }
105 
106  produces<CorrMETData>("type1");
107  for ( typename std::vector<type2BinningEntryType*>::const_iterator type2BinningEntry = type2Binning_.begin();
108  type2BinningEntry != type2Binning_.end(); ++type2BinningEntry ) {
109  produces<CorrMETData>((*type2BinningEntry)->getInstanceLabel_full("type2"));
110  produces<CorrMETData>((*type2BinningEntry)->getInstanceLabel_full("offset"));
111  }
112  }
T getParameter(std::string const &) const
StringCutObjectSelector< reco::Candidate > * skipMuonSelection_
bool exists(std::string const &parameterName) const
checks if a parameter exists
std::vector< type2BinningEntryType * > type2Binning_
edm::EDGetTokenT< std::vector< T > > token_
template<typename T , typename Textractor >
PFJetMETcorrInputProducerT< T, Textractor >::~PFJetMETcorrInputProducerT ( )
inline

Definition at line 113 of file PFJetMETcorrInputProducerT.h.

References PFJetMETcorrInputProducerT< T, Textractor >::skipMuonSelection_, and PFJetMETcorrInputProducerT< T, Textractor >::type2Binning_.

114  {
115  delete skipMuonSelection_;
116 
117  for ( typename std::vector<type2BinningEntryType*>::const_iterator it = type2Binning_.begin();
118  it != type2Binning_.end(); ++it ) {
119  delete (*it);
120  }
121  }
StringCutObjectSelector< reco::Candidate > * skipMuonSelection_
std::vector< type2BinningEntryType * > type2Binning_

Member Function Documentation

template<typename T , typename Textractor >
void PFJetMETcorrInputProducerT< T, Textractor >::produce ( edm::Event evt,
const edm::EventSetup es 
)
inlineprivatevirtual

Implements edm::EDProducer.

Definition at line 125 of file PFJetMETcorrInputProducerT.h.

References edm::Ref< C, T, F >::get(), reco::LeafCandidate::get(), edm::Event::getByToken(), edm::Ref< C, T, F >::isNonnull(), PFJetMETcorrInputProducerT< T, Textractor >::jetCorrEtaMax_, PFJetMETcorrInputProducerT< T, Textractor >::jetCorrExtractor_, PFJetMETcorrInputProducerT< T, Textractor >::jetCorrLabel_, fwrapper::jets, RPCpg::mu, reco::PFCandidate::muonRef(), PFJetMETcorrInputProducerT< T, Textractor >::offsetCorrLabel_, edm::Event::put(), PFJetMETcorrInputProducerT< T, Textractor >::skipEM_, PFJetMETcorrInputProducerT< T, Textractor >::skipEMfractionThreshold_, PFJetMETcorrInputProducerT< T, Textractor >::skipMuons_, PFJetMETcorrInputProducerT< T, Textractor >::skipMuonSelection_, PFJetMETcorrInputProducerT< T, Textractor >::token_, PFJetMETcorrInputProducerT< T, Textractor >::type1JetPtThreshold_, and PFJetMETcorrInputProducerT< T, Textractor >::type2Binning_.

126  {
127  std::auto_ptr<CorrMETData> type1Correction(new CorrMETData());
128  for ( typename std::vector<type2BinningEntryType*>::iterator type2BinningEntry = type2Binning_.begin();
129  type2BinningEntry != type2Binning_.end(); ++type2BinningEntry ) {
130  (*type2BinningEntry)->binUnclEnergySum_ = CorrMETData();
131  (*type2BinningEntry)->binOffsetEnergySum_ = CorrMETData();
132  }
133 
134  typedef std::vector<T> JetCollection;
136  evt.getByToken(token_, jets);
137 
138  int numJets = jets->size();
139  for ( int jetIndex = 0; jetIndex < numJets; ++jetIndex ) {
140  const T& rawJet = jets->at(jetIndex);
141 
143  checkInputType(rawJet);
144 
145  double emEnergyFraction = rawJet.chargedEmEnergyFraction() + rawJet.neutralEmEnergyFraction();
146  if ( skipEM_ && emEnergyFraction > skipEMfractionThreshold_ ) continue;
147 
149  reco::Candidate::LorentzVector rawJetP4 = rawJetExtractor(rawJet);
150  if ( skipMuons_ ) {
151  const std::vector<reco::CandidatePtr> & cands = rawJet.daughterPtrVector();
152  for ( std::vector<reco::CandidatePtr>::const_iterator cand = cands.begin();
153  cand != cands.end(); ++cand ) {
154  const reco::PFCandidate *pfcand = dynamic_cast<const reco::PFCandidate *>(cand->get());
155  const reco::Candidate *mu = (pfcand != 0 ? ( pfcand->muonRef().isNonnull() ? pfcand->muonRef().get() : 0) : cand->get());
156  if ( mu != 0 && (*skipMuonSelection_)(*mu) ) {
157  reco::Candidate::LorentzVector muonP4 = (*cand)->p4();
158  rawJetP4 -= muonP4;
159  }
160  }
161  }
162 
163  reco::Candidate::LorentzVector corrJetP4 = jetCorrExtractor_(rawJet, jetCorrLabel_, &evt, &es, jetCorrEtaMax_, &rawJetP4);
164 
165  if ( corrJetP4.pt() > type1JetPtThreshold_ ) {
166 
167  reco::Candidate::LorentzVector rawJetP4offsetCorr = rawJetP4;
168  if ( offsetCorrLabel_ != "" ) {
169  rawJetP4offsetCorr = jetCorrExtractor_(rawJet, offsetCorrLabel_, &evt, &es, jetCorrEtaMax_, &rawJetP4);
170 
171  for ( typename std::vector<type2BinningEntryType*>::iterator type2BinningEntry = type2Binning_.begin();
172  type2BinningEntry != type2Binning_.end(); ++type2BinningEntry ) {
173  if ( !(*type2BinningEntry)->binSelection_ || (*(*type2BinningEntry)->binSelection_)(corrJetP4) ) {
174  (*type2BinningEntry)->binOffsetEnergySum_.mex += (rawJetP4.px() - rawJetP4offsetCorr.px());
175  (*type2BinningEntry)->binOffsetEnergySum_.mey += (rawJetP4.py() - rawJetP4offsetCorr.py());
176  (*type2BinningEntry)->binOffsetEnergySum_.sumet += (rawJetP4.Et() - rawJetP4offsetCorr.Et());
177  }
178  }
179  }
180 
181 //--- MET balances momentum of reconstructed particles,
182 // hence correction to jets and corresponding Type 1 MET correction are of opposite sign
183  type1Correction->mex -= (corrJetP4.px() - rawJetP4offsetCorr.px());
184  type1Correction->mey -= (corrJetP4.py() - rawJetP4offsetCorr.py());
185  type1Correction->sumet += (corrJetP4.Et() - rawJetP4offsetCorr.Et());
186  } else {
187  for ( typename std::vector<type2BinningEntryType*>::iterator type2BinningEntry = type2Binning_.begin();
188  type2BinningEntry != type2Binning_.end(); ++type2BinningEntry ) {
189  if ( !(*type2BinningEntry)->binSelection_ || (*(*type2BinningEntry)->binSelection_)(corrJetP4) ) {
190  (*type2BinningEntry)->binUnclEnergySum_.mex += rawJetP4.px();
191  (*type2BinningEntry)->binUnclEnergySum_.mey += rawJetP4.py();
192  (*type2BinningEntry)->binUnclEnergySum_.sumet += rawJetP4.Et();
193  }
194  }
195  }
196  }
197 
198 //--- add
199 // o Type 1 MET correction (difference corrected-uncorrected jet energy for jets of (corrected) Pt > 10 GeV)
200 // o momentum sum of "unclustered energy" (jets of (corrected) Pt < 10 GeV)
201 // o momentum sum of "offset energy" (sum of energy attributed to pile-up/underlying event)
202 // to the event
203  evt.put(type1Correction, "type1");
204  for ( typename std::vector<type2BinningEntryType*>::const_iterator type2BinningEntry = type2Binning_.begin();
205  type2BinningEntry != type2Binning_.end(); ++type2BinningEntry ) {
206  evt.put(std::auto_ptr<CorrMETData>(new CorrMETData((*type2BinningEntry)->binUnclEnergySum_)), (*type2BinningEntry)->getInstanceLabel_full("type2"));
207  evt.put(std::auto_ptr<CorrMETData>(new CorrMETData((*type2BinningEntry)->binOffsetEnergySum_)), (*type2BinningEntry)->getInstanceLabel_full("offset"));
208  }
209  }
std::vector< Jet > JetCollection
Definition: Jet.h:49
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
StringCutObjectSelector< reco::Candidate > * skipMuonSelection_
std::vector< type2BinningEntryType * > type2Binning_
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:250
edm::EDGetTokenT< std::vector< T > > token_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
vector< PseudoJet > jets
T get() const
get a component
const int mu
Definition: Constants.h:22
reco::MuonRef muonRef() const
Definition: PFCandidate.cc:446
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:41
a MET correction term
Definition: CorrMETData.h:14
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:38
T const * get() const
Returns C++ pointer to the item.
Definition: Ref.h:242
long double T

Member Data Documentation

template<typename T , typename Textractor >
double PFJetMETcorrInputProducerT< T, Textractor >::jetCorrEtaMax_
private
template<typename T , typename Textractor >
Textractor PFJetMETcorrInputProducerT< T, Textractor >::jetCorrExtractor_
private
template<typename T , typename Textractor >
std::string PFJetMETcorrInputProducerT< T, Textractor >::jetCorrLabel_
private
template<typename T , typename Textractor >
std::string PFJetMETcorrInputProducerT< T, Textractor >::moduleLabel_
private
template<typename T , typename Textractor >
std::string PFJetMETcorrInputProducerT< T, Textractor >::offsetCorrLabel_
private
template<typename T , typename Textractor >
bool PFJetMETcorrInputProducerT< T, Textractor >::skipEM_
private
template<typename T , typename Textractor >
double PFJetMETcorrInputProducerT< T, Textractor >::skipEMfractionThreshold_
private
template<typename T , typename Textractor >
bool PFJetMETcorrInputProducerT< T, Textractor >::skipMuons_
private
template<typename T , typename Textractor >
StringCutObjectSelector<reco::Candidate>* PFJetMETcorrInputProducerT< T, Textractor >::skipMuonSelection_
private
template<typename T , typename Textractor >
edm::EDGetTokenT<std::vector<T> > PFJetMETcorrInputProducerT< T, Textractor >::token_
private
template<typename T , typename Textractor >
double PFJetMETcorrInputProducerT< T, Textractor >::type1JetPtThreshold_
private
template<typename T , typename Textractor >
std::vector<type2BinningEntryType*> PFJetMETcorrInputProducerT< T, Textractor >::type2Binning_
private