CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
PFJetsTauOverlapRemoval Class Reference

#include <PFJetsTauOverlapRemoval.h>

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

Public Member Functions

 PFJetsTauOverlapRemoval (const edm::ParameterSet &)
 
virtual void produce (edm::StreamID, edm::Event &, const edm::EventSetup &) const override
 
 ~PFJetsTauOverlapRemoval ()
 
- 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)
 
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
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 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 & itemsToGetFrom (BranchType iType) 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)
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::global::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Private Attributes

const double matchingR2_
 
const edm::EDGetTokenT< reco::PFJetCollectionpfJetSrc_
 
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefstauSrc_
 

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
 
- 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 20 of file PFJetsTauOverlapRemoval.h.

Constructor & Destructor Documentation

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

Definition at line 11 of file PFJetsTauOverlapRemoval.cc.

11  :
12  tauSrc_ ( consumes<trigger::TriggerFilterObjectWithRefs>(iConfig.getParameter<edm::InputTag>("TauSrc" ) ) ),
13  pfJetSrc_ ( consumes<reco::PFJetCollection>(iConfig.getParameter<edm::InputTag>("PFJetSrc") ) ),
14  matchingR2_ ( iConfig.getParameter<double>("Min_dR")*iConfig.getParameter<double>("Min_dR") )
15 {
16  produces<reco::PFJetCollection>();
17 }
T getParameter(std::string const &) const
const edm::EDGetTokenT< reco::PFJetCollection > pfJetSrc_
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > tauSrc_
PFJetsTauOverlapRemoval::~PFJetsTauOverlapRemoval ( )

Definition at line 18 of file PFJetsTauOverlapRemoval.cc.

18 { }

Member Function Documentation

void PFJetsTauOverlapRemoval::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 50 of file PFJetsTauOverlapRemoval.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), edm::ConfigurationDescriptions::setComment(), and edm::ParameterDescriptionNode::setComment().

51 {
53  desc.add<edm::InputTag>("PFJetSrc", edm::InputTag("hltAK4PFJetsCorrected"))->setComment("Input collection of PFJets" );
54  desc.add<edm::InputTag>("TauSrc", edm::InputTag("hltSinglePFTau20TrackPt1LooseChargedIsolationReg"))->setComment("Input collection of PFTaus that have passed ID and isolation requirements");
55  desc.add<double> ("Min_dR",0.5)->setComment("Minimum dR outside of which PFJets will be saved");
56  descriptions.setComment("This module produces a collection of PFJets that are cross-cleaned with respect to PFTaus passing a HLT filter.");
57  descriptions.add ("PFJetsTauOverlapRemoval",desc);
58 }
void setComment(std::string const &value)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void setComment(std::string const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void PFJetsTauOverlapRemoval::produce ( edm::StreamID  iSId,
edm::Event iEvent,
const edm::EventSetup iES 
) const
overridevirtual

Definition at line 20 of file PFJetsTauOverlapRemoval.cc.

References reco::deltaR2(), edm::Event::getByToken(), trigger::TriggerRefsCollections::getObjects(), trackerHitRTTI::isMatched(), matchingR2_, eostools::move(), p4, reco::LeafCandidate::p4(), pfJetSrc_, edm::Event::put(), jetCleaner_cfi::taus, tauSrc_, and trigger::TriggerTau.

21 {
22  std::unique_ptr<reco::PFJetCollection> cleanedPFJets(new reco::PFJetCollection);
23 
25  iEvent.getByToken(tauSrc_, tauJets);
26 
28  iEvent.getByToken(pfJetSrc_,PFJets);
29 
31  tauJets->getObjects(trigger::TriggerTau,taus);
32 
33  if(PFJets->size() > 1){
34  for(unsigned int iJet = 0; iJet < 2; iJet++){
35  bool isMatched = false;
36  const reco::PFJet & myPFJet = (*PFJets)[iJet];
37  for(unsigned int iTau = 0; iTau < taus.size(); iTau++){
38  if(reco::deltaR2(taus[iTau]->p4(), myPFJet.p4()) < matchingR2_){
39  isMatched = true;
40  break;
41  }
42  }
43  if(isMatched == false) cleanedPFJets->push_back(myPFJet);
44  }
45  if(PFJets->size() > 2) cleanedPFJets->push_back((*PFJets)[2]);
46  }
47  iEvent.put(std::move(cleanedPFJets));
48 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
void getObjects(Vids &ids, VRphoton &refs) const
various physics-level getters:
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:460
Jets made from PFObjects.
Definition: PFJet.h:21
const edm::EDGetTokenT< reco::PFJetCollection > pfJetSrc_
double p4[4]
Definition: TauolaWrapper.h:92
bool isMatched(TrackingRecHit const &hit)
T1 deltaR2(T1 eta1, T2 phi1, T3 eta2, T4 phi2)
Definition: deltaR.h:36
std::vector< PFJet > PFJetCollection
collection of PFJet objects
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > tauSrc_
virtual const LorentzVector & p4() const final
four-momentum Lorentz vector
Definition: LeafCandidate.h:99
std::vector< reco::PFTauRef > VRpftau
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

const double PFJetsTauOverlapRemoval::matchingR2_
private

Definition at line 25 of file PFJetsTauOverlapRemoval.h.

Referenced by produce().

const edm::EDGetTokenT<reco::PFJetCollection> PFJetsTauOverlapRemoval::pfJetSrc_
private

Definition at line 24 of file PFJetsTauOverlapRemoval.h.

Referenced by produce().

const edm::EDGetTokenT<trigger::TriggerFilterObjectWithRefs> PFJetsTauOverlapRemoval::tauSrc_
private

Definition at line 23 of file PFJetsTauOverlapRemoval.h.

Referenced by produce().