CMS 3D CMS Logo

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

#include <DeltaBetaWeights.h>

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

Public Member Functions

 DeltaBetaWeights (const edm::ParameterSet &)
 
 ~DeltaBetaWeights () override
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducer () 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
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
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)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

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

Private Attributes

edm::InputTag pfCharged_
 
edm::EDGetTokenT< edm::View< reco::Candidate > > pfCharged_token
 
edm::InputTag pfPU_
 
edm::EDGetTokenT< edm::View< reco::Candidate > > pfPU_token
 
edm::InputTag src_
 
edm::EDGetTokenT< edm::View< reco::Candidate > > src_token
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer 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
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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 27 of file DeltaBetaWeights.h.

Constructor & Destructor Documentation

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

Definition at line 3 of file DeltaBetaWeights.cc.

References pfCharged_, pfCharged_token, pfPU_, pfPU_token, src_, and src_token.

3  :
4  src_(iConfig.getParameter<edm::InputTag>("src")),
5  pfCharged_(iConfig.getParameter<edm::InputTag>("chargedFromPV")),
6  pfPU_(iConfig.getParameter<edm::InputTag>("chargedFromPU"))
7 {
8  produces<reco::PFCandidateCollection>();
9 
10  pfCharged_token = consumes<edm::View<reco::Candidate> >(pfCharged_);
11  pfPU_token = consumes<edm::View<reco::Candidate> >(pfPU_);
12  src_token = consumes<edm::View<reco::Candidate> >(src_);
13 
14  // pfCharged_token = consumes<reco::PFCandidateCollection>(pfCharged_);
15  // pfPU_token = consumes<reco::PFCandidateCollection>(pfPU_);
16  // src_token = consumes<reco::PFCandidateCollection>(src_);
17 
18 }
T getParameter(std::string const &) const
edm::EDGetTokenT< edm::View< reco::Candidate > > pfPU_token
edm::EDGetTokenT< edm::View< reco::Candidate > > pfCharged_token
edm::InputTag pfCharged_
edm::InputTag pfPU_
edm::EDGetTokenT< edm::View< reco::Candidate > > src_token
edm::InputTag src_
DeltaBetaWeights::~DeltaBetaWeights ( )
override

Definition at line 21 of file DeltaBetaWeights.cc.

22 {
23 
24  // do anything here that needs to be done at desctruction time
25  // (e.g. close files, deallocate resources etc.)
26 
27 }

Member Function Documentation

void DeltaBetaWeights::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 36 of file DeltaBetaWeights.cc.

References reco::deltaR2(), PVValHelper::eta, edm::Event::getByToken(), cmsBatch::log, eostools::move(), MillePedeFileConverter_cfg::out, reco::LeafCandidate::p4(), pfElectronTranslator_cfi::PFCandidate, pfCharged_token, pfPU_token, phi, edm::Event::put(), reco::LeafCandidate::setP4(), reco::PFCandidate::setParticleType(), TrackRefitter_38T_cff::src, src_token, reco::PFCandidate::translatePdgIdToType(), and X.

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

37 {
38  using namespace edm;
39 
43 
44 
45  iEvent.getByToken(src_token,src);
46  iEvent.getByToken(pfCharged_token,pfCharged);
47  iEvent.getByToken(pfPU_token,pfPU);
48 
49  double sumNPU = .0;
50  double sumPU = .0;
51 
52  std::unique_ptr<reco::PFCandidateCollection> out(new reco::PFCandidateCollection);
53 
54 
55  for (const reco::Candidate & cand : *src) {
56  if (cand.charge() !=0) {
57  // this part of code should be executed only if input collection is not entirely composed of neutral candidates, i.e. never by default
58  edm::LogWarning("DeltaBetaWeights") << "Trying to reweight charged particle... saving it to output collection without any change";
59  out->emplace_back(cand.charge(),cand.p4(),reco::PFCandidate::ParticleType::X);
60  (out->back()).setParticleType((out->back()).translatePdgIdToType(cand.pdgId()));
61  continue;
62  }
63 
64  sumNPU=1.0;
65  sumPU=1.0;
66  double eta=cand.eta();
67  double phi=cand.phi();
68  for (const reco::Candidate &chCand : *pfCharged ) {
69  double sum = (chCand.pt()*chCand.pt())/(deltaR2(eta,phi,chCand.eta(),chCand.phi()));
70  if(sum > 1.0) sumNPU *= sum;
71  }
72  sumNPU=0.5*log(sumNPU);
73 
74  for (const reco::Candidate &puCand : *pfPU ) {
75  double sum = (puCand.pt()*puCand.pt())/(deltaR2(eta,phi,puCand.eta(),puCand.phi()));
76  if(sum > 1.0) sumPU *= sum;
77  }
78  sumPU=0.5*log(sumPU);
79 
81  neutral.setParticleType(neutral.translatePdgIdToType(cand.pdgId()));
82  if (sumNPU+sumPU>0)
83  neutral.setP4(((sumNPU)/(sumNPU+sumPU))*neutral.p4());
84  out->push_back(neutral);
85 
86  }
87 
88  iEvent.put(std::move(out));
89 
90 }
edm::EDGetTokenT< edm::View< reco::Candidate > > pfPU_token
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
edm::EDGetTokenT< edm::View< reco::Candidate > > pfCharged_token
#define X(str)
Definition: MuonsGrabber.cc:48
void setParticleType(ParticleType type)
set Particle Type
Definition: PFCandidate.cc:265
const LorentzVector & p4() const final
four-momentum Lorentz vector
Definition: LeafCandidate.h:99
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:16
ParticleType translatePdgIdToType(int pdgid) const
Definition: PFCandidate.cc:233
edm::EDGetTokenT< edm::View< reco::Candidate > > src_token
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:40
HLT enums.
void setP4(const LorentzVector &p4) final
set 4-momentum
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

edm::InputTag DeltaBetaWeights::pfCharged_
private

Definition at line 37 of file DeltaBetaWeights.h.

Referenced by DeltaBetaWeights().

edm::EDGetTokenT<edm::View<reco::Candidate> > DeltaBetaWeights::pfCharged_token
private

Definition at line 40 of file DeltaBetaWeights.h.

Referenced by DeltaBetaWeights(), and produce().

edm::InputTag DeltaBetaWeights::pfPU_
private

Definition at line 38 of file DeltaBetaWeights.h.

Referenced by DeltaBetaWeights().

edm::EDGetTokenT<edm::View<reco::Candidate> > DeltaBetaWeights::pfPU_token
private

Definition at line 41 of file DeltaBetaWeights.h.

Referenced by DeltaBetaWeights(), and produce().

edm::InputTag DeltaBetaWeights::src_
private

Definition at line 36 of file DeltaBetaWeights.h.

Referenced by DeltaBetaWeights().

edm::EDGetTokenT<edm::View<reco::Candidate> > DeltaBetaWeights::src_token
private

Definition at line 42 of file DeltaBetaWeights.h.

Referenced by DeltaBetaWeights(), and produce().