CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
DeltaBetaWeights.cc
Go to the documentation of this file.
1 // Weight for neutral particles based on distance with charged
2 //
3 // Original Author: Michail Bachtis,40 1-B08,+41227678176,
4 // Created: Mon Dec 9 13:18:05 CET 2013
5 //
6 // edited by Pavel Jez
7 //
8 
16 
17 #include <memory>
18 
20 public:
21  explicit DeltaBetaWeights(const edm::ParameterSet&);
22  ~DeltaBetaWeights() override;
23 
24 private:
25  void produce(edm::Event&, const edm::EventSetup&) override;
26  // ----------member data ---------------------------
30 
34 };
35 
37  : src_(iConfig.getParameter<edm::InputTag>("src")),
38  pfCharged_(iConfig.getParameter<edm::InputTag>("chargedFromPV")),
39  pfPU_(iConfig.getParameter<edm::InputTag>("chargedFromPU")) {
40  produces<reco::PFCandidateCollection>();
41 
42  pfCharged_token = consumes<edm::View<reco::Candidate> >(pfCharged_);
43  pfPU_token = consumes<edm::View<reco::Candidate> >(pfPU_);
44  src_token = consumes<edm::View<reco::Candidate> >(src_);
45 
46  // pfCharged_token = consumes<reco::PFCandidateCollection>(pfCharged_);
47  // pfPU_token = consumes<reco::PFCandidateCollection>(pfPU_);
48  // src_token = consumes<reco::PFCandidateCollection>(src_);
49 }
50 
52  // do anything here that needs to be done at desctruction time
53  // (e.g. close files, deallocate resources etc.)
54 }
55 
58 
59 // ------------ method called to produce the data ------------
61  using namespace edm;
62 
66 
67  iEvent.getByToken(src_token, src);
68  iEvent.getByToken(pfCharged_token, pfCharged);
69  iEvent.getByToken(pfPU_token, pfPU);
70 
71  double sumNPU = .0;
72  double sumPU = .0;
73 
74  std::unique_ptr<reco::PFCandidateCollection> out(new reco::PFCandidateCollection);
75 
76  for (const reco::Candidate& cand : *src) {
77  if (cand.charge() != 0) {
78  // this part of code should be executed only if input collection is not entirely composed of neutral candidates, i.e. never by default
79  edm::LogWarning("DeltaBetaWeights")
80  << "Trying to reweight charged particle... saving it to output collection without any change";
81  out->emplace_back(cand.charge(), cand.p4(), reco::PFCandidate::ParticleType::X);
82  (out->back()).setParticleType((out->back()).translatePdgIdToType(cand.pdgId()));
83  continue;
84  }
85 
86  sumNPU = 1.0;
87  sumPU = 1.0;
88  double eta = cand.eta();
89  double phi = cand.phi();
90  for (const reco::Candidate& chCand : *pfCharged) {
91  double sum = (chCand.pt() * chCand.pt()) / (deltaR2(eta, phi, chCand.eta(), chCand.phi()));
92  if (sum > 1.0)
93  sumNPU *= sum;
94  }
95  sumNPU = 0.5 * log(sumNPU);
96 
97  for (const reco::Candidate& puCand : *pfPU) {
98  double sum = (puCand.pt() * puCand.pt()) / (deltaR2(eta, phi, puCand.eta(), puCand.phi()));
99  if (sum > 1.0)
100  sumPU *= sum;
101  }
102  sumPU = 0.5 * log(sumPU);
103 
104  reco::PFCandidate neutral = reco::PFCandidate(cand.charge(), cand.p4(), reco::PFCandidate::ParticleType::X);
105  neutral.setParticleType(neutral.translatePdgIdToType(cand.pdgId()));
106  if (sumNPU + sumPU > 0)
107  neutral.setP4(((sumNPU) / (sumNPU + sumPU)) * neutral.p4());
108  out->push_back(neutral);
109  }
110 
111  iEvent.put(std::move(out));
112 }
~DeltaBetaWeights() override
edm::EDGetTokenT< edm::View< reco::Candidate > > pfPU_token
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
static std::vector< std::string > checklist log
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
edm::EDGetTokenT< edm::View< reco::Candidate > > pfCharged_token
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void produce(edm::Event &, const edm::EventSetup &) override
#define X(str)
Definition: MuonsGrabber.cc:38
const LorentzVector & p4() const final
four-momentum Lorentz vector
int iEvent
Definition: GenABIO.cc:224
void setParticleType(ParticleType type)
set Particle Type
Definition: PFCandidate.cc:278
def move
Definition: eostools.py:511
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:16
edm::InputTag pfCharged_
ParticleType translatePdgIdToType(int pdgid) const
Definition: PFCandidate.cc:231
edm::InputTag pfPU_
edm::EDGetTokenT< edm::View< reco::Candidate > > src_token
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:41
Log< level::Warning, false > LogWarning
edm::InputTag src_
void setP4(const LorentzVector &p4) final
set 4-momentum
DeltaBetaWeights(const edm::ParameterSet &)