CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
pat::RecoMETExtractor Class Reference

Retrieves the recoMET from a pat::MET. More...

#include "PhysicsTools/PatAlgos/interface/RecoMETExtractor.h"

Inheritance diagram for pat::RecoMETExtractor:
edm::global::EDProducer<> edm::global::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual void produce (edm::StreamID streamID, edm::Event &iEvent, const edm::EventSetup &iSetup) const
 
 RecoMETExtractor (const edm::ParameterSet &iConfig)
 
 ~RecoMETExtractor ()
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 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
std::vector< ConsumesInfoconsumesInfo () const
 
 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 (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

pat::MET::METCorrectionLevel corLevel_
 
edm::EDGetTokenT< std::vector
< pat::MET > > 
metSrcToken_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase 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::global::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

Retrieves the recoMET from a pat::MET.

The RecoMETExtractor produces the analysis-level pat::MET starting from a collection of objects of METType.

Author
Matthieu Marionneau
Version
Id:
RecoMETExtractor.h,v 1.0 2015/07/22 mmarionn Exp

Definition at line 27 of file RecoMETExtractor.h.

Constructor & Destructor Documentation

RecoMETExtractor::RecoMETExtractor ( const edm::ParameterSet iConfig)
explicit

Definition at line 10 of file RecoMETExtractor.cc.

References corLevel_, edm::ParameterSet::getParameter(), metSrcToken_, pat::MET::Raw, pat::MET::RawCalo, AlCaHLTBitMon_QueryRunRegistry::string, pat::MET::Type01, pat::MET::Type01Smear, pat::MET::Type01SmearXY, pat::MET::Type01XY, pat::MET::Type1, pat::MET::Type1Smear, pat::MET::Type1SmearXY, pat::MET::Type1XY, and pat::MET::TypeXY.

10  {
11 
12  edm::InputTag metIT = iConfig.getParameter<edm::InputTag>("metSource");
13  metSrcToken_ = consumes<pat::METCollection>(metIT);
14 
15  std::string corLevel = iConfig.getParameter<std::string>("correctionLevel");
16 
17  //all possible met flavors
18  if(corLevel=="raw") { corLevel_=pat::MET::Raw;}
19  else if(corLevel=="type1") { corLevel_=pat::MET::Type1;}
20  else if(corLevel=="type01") { corLevel_=pat::MET::Type01;}
21  else if(corLevel=="typeXY") { corLevel_=pat::MET::TypeXY;}
22  else if(corLevel=="type1XY") { corLevel_=pat::MET::Type1XY;}
23  else if(corLevel=="type01XY") { corLevel_=pat::MET::Type01XY;}
24  else if(corLevel=="type1Smear") { corLevel_=pat::MET::Type1Smear;}
25  else if(corLevel=="type01Smear") { corLevel_=pat::MET::Type01Smear;}
26  else if(corLevel=="type1SmearXY") { corLevel_=pat::MET::Type1SmearXY;}
27  else if(corLevel=="type01SmearXY") { corLevel_=pat::MET::Type01SmearXY;}
28  else if(corLevel=="rawCalo") { corLevel_=pat::MET::RawCalo;}
29  else {
30  //throw exception
31 
32  }
33 
34  // produces vector of recoMet
35  produces<std::vector<reco::MET> >();
36 }
T getParameter(std::string const &) const
pat::MET::METCorrectionLevel corLevel_
edm::EDGetTokenT< std::vector< pat::MET > > metSrcToken_
RecoMETExtractor::~RecoMETExtractor ( )

Definition at line 39 of file RecoMETExtractor.cc.

39  {
40 
41 }

Member Function Documentation

void RecoMETExtractor::produce ( edm::StreamID  streamID,
edm::Event iEvent,
const edm::EventSetup iSetup 
) const
virtual

Implements edm::global::EDProducerBase.

Definition at line 44 of file RecoMETExtractor.cc.

References corLevel_, edm::Event::getByToken(), objects.METAnalyzer::met, metSrcToken_, edm::Event::put(), and alcazmumu_cfi::src.

45  {
46 
48  iEvent.getByToken(metSrcToken_, src);
49  if(src->size()==0) edm::LogError("RecoMETExtractor::produce") << "input reco MET collection is empty" ;
50 
51  std::vector<reco::MET> *metCol = new std::vector<reco::MET>();
52 
53  reco::MET met(src->front().corP4(corLevel_), src->front().vertex() );
54  metCol->push_back( met );
55 
56  std::auto_ptr<std::vector<reco::MET> > recoMETs(metCol);
57  iEvent.put(recoMETs);
58 }
pat::MET::METCorrectionLevel corLevel_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
Definition: MET.h:42
edm::EDGetTokenT< std::vector< pat::MET > > metSrcToken_

Member Data Documentation

pat::MET::METCorrectionLevel pat::RecoMETExtractor::corLevel_
private

Definition at line 41 of file RecoMETExtractor.h.

Referenced by produce(), and RecoMETExtractor().

edm::EDGetTokenT<std::vector<pat::MET> > pat::RecoMETExtractor::metSrcToken_
private

Definition at line 39 of file RecoMETExtractor.h.

Referenced by produce(), and RecoMETExtractor().