test
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 Member Functions | Private Attributes
cms::PFMETProducer Class Reference

#include <PFMETProducer.h>

Inheritance diagram for cms::PFMETProducer:
edm::stream::EDProducer<> edm::stream::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 PFMETProducer (const edm::ParameterSet &)
 
virtual void produce (edm::Event &, const edm::EventSetup &) override
 
virtual ~PFMETProducer ()
 
- 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)
 
 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 Member Functions

reco::METCovMatrix getMETCovMatrix (const edm::Event &event, const edm::EventSetup &, const edm::View< reco::Candidate > &input) const
 

Private Attributes

bool calculateSignificance_
 
double globalThreshold_
 
edm::EDGetTokenT< edm::View
< reco::Candidate > > 
inputToken_
 
std::string jetResPhiType_
 
std::string jetResPtType_
 
std::string jetSFType_
 
double jetThreshold_
 
edm::EDGetTokenT< edm::View
< reco::Jet > > 
jetToken_
 
std::vector< edm::EDGetTokenT
< edm::View< reco::Candidate > > > 
lepTokens_
 
metsig::METSignificancemetSigAlgo_
 
edm::EDGetTokenT< double > rhoToken_
 

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, GlobalCache
LuminosityBlockContext
 
typedef
CacheTypes::LuminosityBlockSummaryCache 
LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache,
GlobalCache
RunContext
 
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 60 of file PFMETProducer.h.

Constructor & Destructor Documentation

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

Definition at line 16 of file PFMETProducer.cc.

References HLT_25ns10e33_v2_cff::alias, calculateSignificance_, edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), jetResPhiType_, jetResPtType_, jetSFType_, jetToken_, lepTokens_, edm::EDConsumerBase::mayConsume(), metSigAlgo_, METSignificance_cfi::METSignificance, rhoToken_, and AlCaHLTBitMon_QueryRunRegistry::string.

18  , calculateSignificance_(iConfig.getParameter<bool>("calculateSignificance"))
19  , globalThreshold_(iConfig.getParameter<double>("globalThreshold"))
20  {
22  {
23  metSigAlgo_ = new metsig::METSignificance(iConfig);
24 
25  jetToken_ = mayConsume<edm::View<reco::Jet> >(iConfig.getParameter<edm::InputTag>("srcJets"));
26  std::vector<edm::InputTag> srcLeptonsTags = iConfig.getParameter< std::vector<edm::InputTag> >("srcLeptons");
27  for(std::vector<edm::InputTag>::const_iterator it=srcLeptonsTags.begin();it!=srcLeptonsTags.end();it++) {
28  lepTokens_.push_back( mayConsume<edm::View<reco::Candidate> >( *it ) );
29  }
30 
31  jetSFType_ = iConfig.getParameter<std::string>("srcJetSF");
32  jetResPtType_ = iConfig.getParameter<std::string>("srcJetResPt");
33  jetResPhiType_ = iConfig.getParameter<std::string>("srcJetResPhi");
34  rhoToken_ = consumes<double>(iConfig.getParameter<edm::InputTag>("srcRho"));
35  }
36 
37  std::string alias = iConfig.exists("alias") ? iConfig.getParameter<std::string>("alias") : "";
38 
39  produces<reco::PFMETCollection>().setBranchAlias(alias);
40  }
T getParameter(std::string const &) const
bool exists(std::string const &parameterName) const
checks if a parameter exists
std::string jetResPtType_
Definition: PFMETProducer.h:84
edm::EDGetTokenT< edm::View< reco::Jet > > jetToken_
Definition: PFMETProducer.h:81
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
tuple METSignificance
____________________________________________________________________________||
metsig::METSignificance * metSigAlgo_
Definition: PFMETProducer.h:76
std::string jetSFType_
Definition: PFMETProducer.h:83
std::vector< edm::EDGetTokenT< edm::View< reco::Candidate > > > lepTokens_
Definition: PFMETProducer.h:82
std::string jetResPhiType_
Definition: PFMETProducer.h:85
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_
Definition: PFMETProducer.h:73
edm::EDGetTokenT< double > rhoToken_
Definition: PFMETProducer.h:86
EDGetTokenT< ProductType > mayConsume(edm::InputTag const &tag)
virtual cms::PFMETProducer::~PFMETProducer ( )
inlinevirtual

Definition at line 64 of file PFMETProducer.h.

64 { }

Member Function Documentation

reco::METCovMatrix PFMETProducer::getMETCovMatrix ( const edm::Event event,
const edm::EventSetup setup,
const edm::View< reco::Candidate > &  input 
) const
private

Definition at line 74 of file PFMETProducer.cc.

References JME::JetResolution::get(), JME::JetResolutionScaleFactor::get(), metsig::METSignificance::getCovariance(), HLT_25ns10e33_v2_cff::inputJets, edm::EventBase::isRealData(), jetResPhiType_, jetResPtType_, jetSFType_, jetToken_, lepTokens_, HLT_25ns10e33_v2_cff::leptons, metSigAlgo_, rho, and rhoToken_.

Referenced by produce().

74  {
75 
76  // leptons
77  std::vector< edm::Handle<reco::CandidateView> > leptons;
78  for ( std::vector<edm::EDGetTokenT<edm::View<reco::Candidate> > >::const_iterator srcLeptons_i = lepTokens_.begin();
79  srcLeptons_i != lepTokens_.end(); ++srcLeptons_i ) {
81  event.getByToken(*srcLeptons_i, leptons_i);
82  leptons.push_back( leptons_i );
83  /*
84  for ( reco::CandidateView::const_iterator lepton = leptons_i->begin();
85  lepton != leptons_i->end(); ++lepton ) {
86  leptons.push_back(*lepton);
87  }
88  */
89  }
90 
91  // jets
93  event.getByToken( jetToken_, inputJets );
94 
98 
100  event.getByToken(rhoToken_, rho);
101 
102  //Compute the covariance matrix and fill it
103  reco::METCovMatrix cov = metSigAlgo_->getCovariance( *inputJets, leptons, candInput, *rho, resPtObj, resPhiObj, resSFObj, event.isRealData() );
104 
105  return cov;
106  }
static const JetResolution get(const edm::EventSetup &, const std::string &)
ROOT::Math::SMatrix< double, 2 > METCovMatrix
Definition: MET.h:40
std::string jetResPtType_
Definition: PFMETProducer.h:84
edm::EDGetTokenT< edm::View< reco::Jet > > jetToken_
Definition: PFMETProducer.h:81
bool isRealData() const
Definition: EventBase.h:63
metsig::METSignificance * metSigAlgo_
Definition: PFMETProducer.h:76
std::string jetSFType_
Definition: PFMETProducer.h:83
std::vector< edm::EDGetTokenT< edm::View< reco::Candidate > > > lepTokens_
Definition: PFMETProducer.h:82
std::string jetResPhiType_
Definition: PFMETProducer.h:85
static const JetResolutionScaleFactor get(const edm::EventSetup &, const std::string &)
edm::EDGetTokenT< double > rhoToken_
Definition: PFMETProducer.h:86
reco::METCovMatrix getCovariance(const edm::View< reco::Jet > &jets, const std::vector< edm::Handle< reco::CandidateView > > &leptons, const edm::View< reco::Candidate > &pfCandidates, double rho, JME::JetResolution &resPtObj, JME::JetResolution &resPhiObj, JME::JetResolutionScaleFactor &resSFObj, bool isRealData)
void PFMETProducer::produce ( edm::Event event,
const edm::EventSetup setup 
)
overridevirtual

Implements edm::stream::EDProducerBase.

Definition at line 43 of file PFMETProducer.cc.

References ecalcalib_dqm_sourceclient-live_cfg::algo, calculateSignificance_, getMETCovMatrix(), globalThreshold_, input, inputToken_, CommonMETData::met, CommonMETData::mex, CommonMETData::mey, p4, edm::Handle< T >::product(), PFSpecificAlgo::run(), METAlgo::run(), reco::MET::setSignificanceMatrix(), timingPdfMaker::specific, and CommonMETData::sumet.

44  {
46  event.getByToken(inputToken_, input);
47 
48  METAlgo algo;
49  CommonMETData commonMETdata = algo.run(*input.product(), globalThreshold_);
50 
51  const math::XYZTLorentzVector p4(commonMETdata.mex, commonMETdata.mey, 0.0, commonMETdata.met);
52  const math::XYZPoint vtx(0.0, 0.0, 0.0);
53 
54  PFSpecificAlgo pf;
55  SpecificPFMETData specific = pf.run(*input.product());
56 
57  reco::PFMET pfmet(specific, commonMETdata.sumet, p4, vtx);
58 
60  {
61  reco::METCovMatrix sigcov = getMETCovMatrix(event, setup, *input);
62  pfmet.setSignificanceMatrix(sigcov);
63  }
64 
65  std::auto_ptr<reco::PFMETCollection> pfmetcoll;
66  pfmetcoll.reset(new reco::PFMETCollection);
67 
68  pfmetcoll->push_back(pfmet);
69  event.put(pfmetcoll);
70  }
dictionary specific
ROOT::Math::SMatrix< double, 2 > METCovMatrix
Definition: MET.h:40
reco::METCovMatrix getMETCovMatrix(const edm::Event &event, const edm::EventSetup &, const edm::View< reco::Candidate > &input) const
static std::string const input
Definition: EdmProvDump.cc:44
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
CommonMETData run(const edm::View< reco::Candidate > &candidates, double globalThreshold=0.0)
Definition: METAlgo.cc:16
double p4[4]
Definition: TauolaWrapper.h:92
Structure containing data common to all types of MET.
Definition: CommonMETData.h:12
MET made from Particle Flow Candidates.
SpecificPFMETData run(const edm::View< reco::Candidate > &pfCands)
T const * product() const
Definition: Handle.h:81
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
std::vector< reco::PFMET > PFMETCollection
collection of PFMET objects
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_
Definition: PFMETProducer.h:73

Member Data Documentation

bool cms::PFMETProducer::calculateSignificance_
private

Definition at line 75 of file PFMETProducer.h.

Referenced by PFMETProducer(), and produce().

double cms::PFMETProducer::globalThreshold_
private

Definition at line 78 of file PFMETProducer.h.

Referenced by produce().

edm::EDGetTokenT<edm::View<reco::Candidate> > cms::PFMETProducer::inputToken_
private

Definition at line 73 of file PFMETProducer.h.

Referenced by produce().

std::string cms::PFMETProducer::jetResPhiType_
private

Definition at line 85 of file PFMETProducer.h.

Referenced by getMETCovMatrix(), and PFMETProducer().

std::string cms::PFMETProducer::jetResPtType_
private

Definition at line 84 of file PFMETProducer.h.

Referenced by getMETCovMatrix(), and PFMETProducer().

std::string cms::PFMETProducer::jetSFType_
private

Definition at line 83 of file PFMETProducer.h.

Referenced by getMETCovMatrix(), and PFMETProducer().

double cms::PFMETProducer::jetThreshold_
private

Definition at line 79 of file PFMETProducer.h.

edm::EDGetTokenT<edm::View<reco::Jet> > cms::PFMETProducer::jetToken_
private

Definition at line 81 of file PFMETProducer.h.

Referenced by getMETCovMatrix(), and PFMETProducer().

std::vector< edm::EDGetTokenT<edm::View<reco::Candidate> > > cms::PFMETProducer::lepTokens_
private

Definition at line 82 of file PFMETProducer.h.

Referenced by getMETCovMatrix(), and PFMETProducer().

metsig::METSignificance* cms::PFMETProducer::metSigAlgo_
private

Definition at line 76 of file PFMETProducer.h.

Referenced by getMETCovMatrix(), and PFMETProducer().

edm::EDGetTokenT<double> cms::PFMETProducer::rhoToken_
private

Definition at line 86 of file PFMETProducer.h.

Referenced by getMETCovMatrix(), and PFMETProducer().