CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
CorrectedPATMETProducer Class Reference
Inheritance diagram for CorrectedPATMETProducer:
edm::stream::EDProducer<> edm::stream::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 CorrectedPATMETProducer (const edm::ParameterSet &cfg)
 
 ~CorrectedPATMETProducer ()
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
- Public Member Functions inherited from edm::stream::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, std::unordered_multimap< std::string, edm::ProductResolverIndex > const &iIndicies, std::string const &moduleLabel)
 
virtual ~ProducerBase () noexcept(false)
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
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 & itemsToGetFromEvent () 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
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Types

typedef std::vector< pat::METMETCollection
 

Private Member Functions

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

Private Attributes

AddCorrectionsToGenericMET corrector
 
edm::EDGetTokenT< METCollectiontoken_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 
- Public Types inherited from edm::stream::EDProducerBase
typedef EDProducerAdaptorBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::stream::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- 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

Definition at line 23 of file CorrectedPATMETProducer.cc.

Member Typedef Documentation

typedef std::vector<pat::MET> CorrectedPATMETProducer::METCollection
private

Definition at line 49 of file CorrectedPATMETProducer.cc.

Constructor & Destructor Documentation

CorrectedPATMETProducer::CorrectedPATMETProducer ( const edm::ParameterSet cfg)
inlineexplicit

Definition at line 28 of file CorrectedPATMETProducer.cc.

References corrector, edm::ParameterSet::getParameter(), HiClusterCompatibility_cfi::inputTag, and AddCorrectionsToGenericMET::setCorTokens().

29  : corrector(),
30  token_(consumes<METCollection>(cfg.getParameter<edm::InputTag>("src")))
31  {
32  std::vector<edm::InputTag> corrInputTags = cfg.getParameter<std::vector<edm::InputTag> >("srcCorrections");
33  std::vector<edm::EDGetTokenT<CorrMETData> > corrTokens;
34  for (std::vector<edm::InputTag>::const_iterator inputTag = corrInputTags.begin(); inputTag != corrInputTags.end(); ++inputTag) {
35  corrTokens.push_back(consumes<CorrMETData>(*inputTag));
36  }
37 
38  corrector.setCorTokens(corrTokens);
39 
40  produces<METCollection>("");
41  }
T getParameter(std::string const &) const
edm::EDGetTokenT< METCollection > token_
AddCorrectionsToGenericMET corrector
void setCorTokens(std::vector< edm::EDGetTokenT< CorrMETData > > const &corrTokens)
CorrectedPATMETProducer::~CorrectedPATMETProducer ( )
inline

Definition at line 43 of file CorrectedPATMETProducer.cc.

43 { }

Member Function Documentation

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

Definition at line 53 of file CorrectedPATMETProducer.cc.

References DEFINE_FWK_MODULE, edm::Event::getByToken(), AddCorrectionsToGenericMET::getCorrectedMET(), metsig::METSignificance::getSignificance(), reco::MET::getSignificanceMatrix(), eostools::move(), edm::Event::put(), pat::MET::setMETSignificance(), reco::MET::setSignificanceMatrix(), and patCaloMETCorrections_cff::srcMET.

54  {
55  edm::Handle<METCollection> srcMETCollection;
56  evt.getByToken(token_, srcMETCollection);
57 
58  const pat::MET& srcMET = (*srcMETCollection)[0];
59 
60  //dispatching to be sure we retrieve all the informations
61  reco::MET corrMET = corrector.getCorrectedMET(srcMET, evt, es);
62  pat::MET outMET(corrMET, srcMET);
63 
64  auto product = std::make_unique<METCollection>();
65 
67  if( !(cov(0,0)==0 && cov(0,1)==0 && cov(1,0)==0 && cov(1,1)==0) ) {
68  outMET.setSignificanceMatrix(cov);
69  double metSig=metsig::METSignificance::getSignificance(cov, outMET);
70  outMET.setMETSignificance(metSig);
71  }
72 
73  product->push_back(outMET);
74  evt.put(std::move(product));
75  }
Analysis-level MET class.
Definition: MET.h:43
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
static double getSignificance(const reco::METCovMatrix &cov, const reco::MET &met)
reco::MET getCorrectedMET(const reco::MET &srcMET, edm::Event &evt, const edm::EventSetup &es)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
edm::EDGetTokenT< METCollection > token_
ROOT::Math::SMatrix< double, 2 > METCovMatrix
Definition: MET.h:40
AddCorrectionsToGenericMET corrector
Definition: MET.h:42
def move(src, dest)
Definition: eostools.py:510
reco::METCovMatrix getSignificanceMatrix(void) const
Definition: MET.cc:139

Member Data Documentation

AddCorrectionsToGenericMET CorrectedPATMETProducer::corrector
private

Definition at line 47 of file CorrectedPATMETProducer.cc.

Referenced by CorrectedPATMETProducer().

edm::EDGetTokenT<METCollection> CorrectedPATMETProducer::token_
private

Definition at line 51 of file CorrectedPATMETProducer.cc.