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
PFMET Class Reference

Computes the MET from a collection of PFCandidates. HF missing! More...

#include <PFMET.h>

Inheritance diagram for PFMET:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual void beginJob ()
 
 PFMET (const edm::ParameterSet &)
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 ~PFMET ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- 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

edm::InputTag inputTagPFCandidates_
 Input PFCandidates. More...
 
pf2pat::PFMETAlgo pfMETAlgo_
 
edm::EDGetTokenT
< reco::PFCandidateCollection
tokenPFCandidates_
 

Additional Inherited Members

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

Computes the MET from a collection of PFCandidates. HF missing!

Author
Colin Bernet
Date
february 2008

Definition at line 30 of file PFMET.h.

Constructor & Destructor Documentation

PFMET::PFMET ( const edm::ParameterSet )
explicit
PFMET::~PFMET ( )

Member Function Documentation

void PFMET::beginJob ( void  )
virtual

Reimplemented from edm::EDProducer.

Definition at line 42 of file PFMET.cc.

42 { }
void PFMET::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 45 of file PFMET.cc.

References edm::EventID::event(), edm::Event::getByToken(), edm::EventBase::id(), LogDebug, reco::tau::pfCandidates(), edm::Event::put(), and edm::EventID::run().

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

46  {
47 
48  LogDebug("PFMET")<<"START event: "<<iEvent.id().event()
49  <<" in run "<<iEvent.id().run()<<endl;
50 
51 
52 
53  // get PFCandidates
54 
56  iEvent.getByToken( tokenPFCandidates_, pfCandidates);
57 
58  auto_ptr< METCollection >
59  pOutput( new METCollection() );
60 
61 
62 
63  pOutput->push_back( pfMETAlgo_.produce( *pfCandidates ) );
64  iEvent.put( pOutput );
65 
66  LogDebug("PFMET")<<"STOP event: "<<iEvent.id().event()
67  <<" in run "<<iEvent.id().run()<<endl;
68 }
#define LogDebug(id)
RunNumber_t run() const
Definition: EventID.h:39
EventNumber_t event() const
Definition: EventID.h:41
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
reco::MET produce(const reco::PFCandidateCollection &pfCandidates)
Definition: PFMETAlgo.cc:33
std::vector< reco::MET > METCollection
collection of MET objects
Definition: METCollection.h:23
edm::EDGetTokenT< reco::PFCandidateCollection > tokenPFCandidates_
Definition: PFMET.h:45
std::vector< PFCandidatePtr > pfCandidates(const PFJet &jet, int particleId, bool sort=true)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
edm::EventID id() const
Definition: EventBase.h:59
pf2pat::PFMETAlgo pfMETAlgo_
Definition: PFMET.h:47

Member Data Documentation

edm::InputTag PFMET::inputTagPFCandidates_
private

Input PFCandidates.

Definition at line 44 of file PFMET.h.

pf2pat::PFMETAlgo PFMET::pfMETAlgo_
private

Definition at line 47 of file PFMET.h.

edm::EDGetTokenT<reco::PFCandidateCollection> PFMET::tokenPFCandidates_
private

Definition at line 45 of file PFMET.h.