test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DeltaBetaWeights.cc
Go to the documentation of this file.
2 
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 }
19 
20 
22 {
23 
24  // do anything here that needs to be done at desctruction time
25  // (e.g. close files, deallocate resources etc.)
26 
27 }
28 
29 
30 //
31 // member functions
32 //
33 
34 // ------------ method called to produce the data ------------
35 void
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::auto_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(out);
89 
90 }
edm::EDGetTokenT< edm::View< reco::Candidate > > pfPU_token
virtual void produce(edm::Event &, const edm::EventSetup &)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
edm::EDGetTokenT< edm::View< reco::Candidate > > pfCharged_token
#define X(str)
Definition: MuonsGrabber.cc:48
virtual void setP4(const LorentzVector &p4)
set 4-momentum
T eta() const
int iEvent
Definition: GenABIO.cc:230
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
void setParticleType(ParticleType type)
set Particle Type
Definition: PFCandidate.cc:252
double deltaR2(const T1 &t1, const T2 &t2)
Definition: deltaR.h:36
tuple out
Definition: dbtoconf.py:99
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
edm::InputTag pfCharged_
ParticleType translatePdgIdToType(int pdgid) const
Definition: PFCandidate.cc:220
edm::InputTag pfPU_
edm::EDGetTokenT< edm::View< reco::Candidate > > src_token
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:38
int translatePdgIdToType(int pdgid)
virtual const LorentzVector & p4() const
four-momentum Lorentz vector
edm::InputTag src_
DeltaBetaWeights(const edm::ParameterSet &)
Definition: DDAxes.h:10