1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include "DataFormats/L1TParticleFlow/interface/PFCandidate.h"
l1t::PFCandidate::PFCandidate(
ParticleType kind, int charge, const PolarLorentzVector& p, float puppiWeight, int hwpt, int hweta, int hwphi)
: L1Candidate(p, hwpt, hweta, hwphi, /*hwQuality=*/int(kind)),
dxy_(0),
puppiWeight_(puppiWeight),
caloEta_(0),
caloPhi_(0),
hwZ0_(0),
hwDxy_(0),
hwTkQuality_(0),
hwPuppiWeight_(0),
hwEmID_(0),
encodedPuppi64_(0) {
setCharge(charge);
setPdgIdFromParticleType(charge, kind);
}
void l1t::PFCandidate::setPdgIdFromParticleType(int charge, ParticleType kind) {
switch (kind) {
case ChargedHadron:
setPdgId(charge > 0 ? 211 : -211);
break;
case Electron:
setPdgId(charge > 0 ? -11 : +11);
break;
case NeutralHadron:
setPdgId(130);
break;
case Photon:
setPdgId(22);
break;
case Muon:
setPdgId(charge > 0 ? -13 : +13);
break;
};
}
|