CMS 3D CMS Logo

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

Public Member Functions

 CandMergerCleanOthersByDR (const edm::ParameterSet &)
 
 ~CandMergerCleanOthersByDR ()
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
bool wantsStreamLuminosityBlocks () const final
 
bool wantsStreamRuns () const final
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducerBase () override
 
- 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 ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
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, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- 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
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) 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 Member Functions

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

Private Attributes

const edm::EDGetTokenT< edm::View< reco::Candidate > > coll1Token_
 
const edm::EDGetTokenT< edm::View< reco::Candidate > > coll2Token_
 
const float maxDR2ToClean_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
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 31 of file CandMergerCleanOthersByDR.cc.

Constructor & Destructor Documentation

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

Definition at line 53 of file CandMergerCleanOthersByDR.cc.

References reco::deltaR2(), reco::Candidate::eta(), edm::Event::getByToken(), cmsBatch::handle, iEvent, and reco::Candidate::phi().

53  :
56  maxDR2ToClean_(pow2(iConfig.getParameter<double>("maxDRToClean")))
57 {
58  produces<std::vector<edm::Ptr<reco::Candidate> > >();
59 }
T getParameter(std::string const &) const
const edm::EDGetTokenT< edm::View< reco::Candidate > > coll2Token_
const edm::EDGetTokenT< edm::View< reco::Candidate > > coll1Token_
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
CandMergerCleanOthersByDR::~CandMergerCleanOthersByDR ( )
inline

Definition at line 34 of file CandMergerCleanOthersByDR.cc.

References fillDescriptions(), and produce().

34 {}

Member Function Documentation

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

Definition at line 110 of file CandMergerCleanOthersByDR.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), and DEFINE_FWK_MODULE.

Referenced by ~CandMergerCleanOthersByDR().

110  {
111 
113  desc.add<edm::InputTag>("coll1", edm::InputTag("egammasForCoreTracking"));
114  desc.add<edm::InputTag>("coll2", edm::InputTag("jetsForCoreTracking"));
115  desc.add<double>("maxDRToClean", 0.05);
116  descriptions.add("candMergerCleanOthersByDR", desc);
117 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void CandMergerCleanOthersByDR::produce ( edm::StreamID  streamID,
edm::Event iEvent,
const edm::EventSetup iSetup 
) const
overrideprivate

Definition at line 85 of file CandMergerCleanOthersByDR.cc.

References coll1Token_, coll2Token_, reco::Candidate::eta(), maxDR2ToClean_, eostools::move(), ecalCompactTrigPrim_cfi::outColl, reco::Candidate::phi(), and edm::Event::put().

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

86 {
87  auto outColl = std::make_unique<std::vector<edm::Ptr<reco::Candidate> > >();
88 
89  auto coll1Handle = getHandle(iEvent,coll1Token_);
90  auto coll2Handle = getHandle(iEvent,coll2Token_);
91 
92  std::vector<std::pair<float,float> > coll1EtaPhis;
93  for(size_t objNr=0;objNr<coll1Handle->size();objNr++){
94  edm::Ptr<reco::Candidate> objPtr(coll1Handle,objNr);
95  coll1EtaPhis.push_back({objPtr->eta(),objPtr->phi()}); //just to speed up the DR match
96  outColl->push_back(objPtr);
97  }
98  for(size_t objNr=0;objNr<coll2Handle->size();objNr++){
99  edm::Ptr<reco::Candidate> objPtr(coll2Handle,objNr);
100  if(!hasDRMatch(*objPtr,coll1EtaPhis,maxDR2ToClean_)){
101  outColl->push_back(objPtr);
102  }
103  }
104 
105  iEvent.put(std::move(outColl));
106 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
const edm::EDGetTokenT< edm::View< reco::Candidate > > coll2Token_
const edm::EDGetTokenT< edm::View< reco::Candidate > > coll1Token_
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

const edm::EDGetTokenT<edm::View<reco::Candidate> > CandMergerCleanOthersByDR::coll1Token_
private

Definition at line 42 of file CandMergerCleanOthersByDR.cc.

Referenced by produce().

const edm::EDGetTokenT<edm::View<reco::Candidate> > CandMergerCleanOthersByDR::coll2Token_
private

Definition at line 43 of file CandMergerCleanOthersByDR.cc.

Referenced by produce().

const float CandMergerCleanOthersByDR::maxDR2ToClean_
private

Definition at line 44 of file CandMergerCleanOthersByDR.cc.

Referenced by produce().