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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
|
#ifndef __DataFormats_PatCandidates_PackedCandidate_h__
#define __DataFormats_PatCandidates_PackedCandidate_h__
#include "DataFormats/Candidate/interface/Candidate.h"
#include "DataFormats/Candidate/interface/CandidateFwd.h"
#include "DataFormats/Common/interface/Association.h"
#include "DataFormats/Common/interface/RefVector.h"
#include "DataFormats/Math/interface/deltaPhi.h"
#include "DataFormats/PatCandidates/interface/CovarianceParameterization.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
#include "FWCore/Utilities/interface/thread_safety_macros.h"
#include <atomic>
#include <mutex>
/* #include "DataFormats/Math/interface/PtEtaPhiMass.h" */
// forward declare testing structure
class testPackedCandidate;
namespace pat {
class PackedCandidate : public reco::Candidate {
public:
/// collection of daughter candidates
typedef reco::CandidateCollection daughters;
/// Lorentz vector
typedef math::XYZTLorentzVector LorentzVector;
/// Lorentz vector
typedef math::PtEtaPhiMLorentzVector PolarLorentzVector;
/// point in the space
typedef math::XYZPoint Point;
/// point in the space
typedef math::XYZVector Vector;
typedef unsigned int index;
/// default constructor
PackedCandidate()
: packedPt_(0),
packedEta_(0),
packedPhi_(0),
packedM_(0),
packedDxy_(0),
packedDz_(0),
packedDPhi_(0),
packedDEta_(0),
packedDTrkPt_(0),
packedCovariance_(),
packedPuppiweight_(0),
packedPuppiweightNoLepDiff_(0),
rawCaloFraction_(0),
rawHcalFraction_(0),
caloFraction_(0),
hcalFraction_(0),
packedTime_(0),
packedTimeError_(0),
isIsolatedChargedHadron_(false),
p4_(new PolarLorentzVector(0, 0, 0, 0)),
p4c_(new LorentzVector(0, 0, 0, 0)),
vertex_(new Point(0, 0, 0)),
dphi_(0),
deta_(0),
dtrkpt_(0),
track_(nullptr),
pdgId_(0),
qualityFlags_(0),
pvRefKey_(reco::VertexRef::invalidKey()),
m_(nullptr),
packedHits_(0),
packedLayers_(0),
normalizedChi2_(0),
covarianceVersion_(0),
covarianceSchema_(0),
firstHit_(0) {}
explicit PackedCandidate(const reco::Candidate &c,
const reco::VertexRefProd &pvRefProd,
reco::VertexRef::key_type pvRefKey)
: packedPuppiweight_(0),
packedPuppiweightNoLepDiff_(0),
rawCaloFraction_(0),
rawHcalFraction_(0),
caloFraction_(0),
hcalFraction_(0),
packedTime_(0),
packedTimeError_(0),
isIsolatedChargedHadron_(false),
p4_(new PolarLorentzVector(c.pt(), c.eta(), c.phi(), c.mass())),
p4c_(new LorentzVector(*p4_)),
vertex_(new Point(c.vertex())),
dphi_(0),
deta_(0),
dtrkpt_(0),
track_(nullptr),
pdgId_(c.pdgId()),
qualityFlags_(0),
pvRefProd_(pvRefProd),
pvRefKey_(pvRefKey),
m_(nullptr),
packedHits_(0),
packedLayers_(0),
normalizedChi2_(0),
covarianceVersion_(0),
covarianceSchema_(0),
firstHit_(0) {
packBoth();
}
explicit PackedCandidate(const PolarLorentzVector &p4,
const Point &vtx,
float trkPt,
float etaAtVtx,
float phiAtVtx,
int pdgId,
const reco::VertexRefProd &pvRefProd,
reco::VertexRef::key_type pvRefKey)
: packedPuppiweight_(0),
packedPuppiweightNoLepDiff_(0),
rawCaloFraction_(0),
rawHcalFraction_(0),
caloFraction_(0),
hcalFraction_(0),
packedTime_(0),
packedTimeError_(0),
isIsolatedChargedHadron_(false),
p4_(new PolarLorentzVector(p4)),
p4c_(new LorentzVector(*p4_)),
vertex_(new Point(vtx)),
dphi_(reco::deltaPhi(phiAtVtx, p4_.load()->phi())),
deta_(std::abs(etaAtVtx - p4_.load()->eta()) >= kMinDEtaToStore_ ? etaAtVtx - p4_.load()->eta() : 0.),
dtrkpt_(std::abs(trkPt - p4_.load()->pt()) >= kMinDTrkPtToStore_ ? trkPt - p4_.load()->pt() : 0.),
track_(nullptr),
pdgId_(pdgId),
qualityFlags_(0),
pvRefProd_(pvRefProd),
pvRefKey_(pvRefKey),
m_(nullptr),
packedHits_(0),
packedLayers_(0),
normalizedChi2_(0),
covarianceVersion_(0),
covarianceSchema_(0),
firstHit_(0) {
packBoth();
}
explicit PackedCandidate(const LorentzVector &p4,
const Point &vtx,
float trkPt,
float etaAtVtx,
float phiAtVtx,
int pdgId,
const reco::VertexRefProd &pvRefProd,
reco::VertexRef::key_type pvRefKey)
: packedPuppiweight_(0),
packedPuppiweightNoLepDiff_(0),
rawCaloFraction_(0),
rawHcalFraction_(0),
caloFraction_(0),
hcalFraction_(0),
packedTime_(0),
packedTimeError_(0),
isIsolatedChargedHadron_(false),
p4_(new PolarLorentzVector(p4.Pt(), p4.Eta(), p4.Phi(), p4.M())),
p4c_(new LorentzVector(p4)),
vertex_(new Point(vtx)),
dphi_(reco::deltaPhi(phiAtVtx, p4_.load()->phi())),
deta_(std::abs(etaAtVtx - p4_.load()->eta()) >= kMinDEtaToStore_ ? etaAtVtx - p4_.load()->eta() : 0.),
dtrkpt_(std::abs(trkPt - p4_.load()->pt()) >= kMinDTrkPtToStore_ ? trkPt - p4_.load()->pt() : 0.),
track_(nullptr),
pdgId_(pdgId),
qualityFlags_(0),
pvRefProd_(pvRefProd),
pvRefKey_(pvRefKey),
m_(nullptr),
packedHits_(0),
packedLayers_(0),
normalizedChi2_(0),
covarianceVersion_(0),
covarianceSchema_(0),
firstHit_(0) {
packBoth();
}
PackedCandidate(const PackedCandidate &iOther)
: packedPt_(iOther.packedPt_),
packedEta_(iOther.packedEta_),
packedPhi_(iOther.packedPhi_),
packedM_(iOther.packedM_),
packedDxy_(iOther.packedDxy_),
packedDz_(iOther.packedDz_),
packedDPhi_(iOther.packedDPhi_),
packedDEta_(iOther.packedDEta_),
packedDTrkPt_(iOther.packedDTrkPt_),
packedCovariance_(iOther.packedCovariance_),
packedPuppiweight_(iOther.packedPuppiweight_),
packedPuppiweightNoLepDiff_(iOther.packedPuppiweightNoLepDiff_),
rawCaloFraction_(iOther.rawCaloFraction_),
rawHcalFraction_(iOther.rawHcalFraction_),
caloFraction_(iOther.caloFraction_),
hcalFraction_(iOther.hcalFraction_),
packedTime_(iOther.packedTime_),
packedTimeError_(iOther.packedTimeError_),
isIsolatedChargedHadron_(iOther.isIsolatedChargedHadron_),
// Need to trigger unpacking in iOther
p4_(new PolarLorentzVector(iOther.polarP4())),
p4c_(new LorentzVector(iOther.p4())),
vertex_((iOther.vertex_ ? new Point(iOther.vertex()) : nullptr)),
dxy_(vertex_ ? iOther.dxy_ : 0),
dz_(vertex_ ? iOther.dz_ : 0),
dphi_(vertex_ ? iOther.dphi_ : 0),
deta_(vertex_ ? iOther.deta_ : 0),
dtrkpt_(vertex_ ? iOther.dtrkpt_ : 0),
track_(iOther.track_ ? new reco::Track(*iOther.track_) : nullptr),
pdgId_(iOther.pdgId_),
qualityFlags_(iOther.qualityFlags_),
pvRefProd_(iOther.pvRefProd_),
pvRefKey_(iOther.pvRefKey_),
m_(iOther.m_ ? new reco::TrackBase::CovarianceMatrix(*iOther.m_) : nullptr),
packedHits_(iOther.packedHits_),
packedLayers_(iOther.packedLayers_),
normalizedChi2_(iOther.normalizedChi2_),
covarianceVersion_(iOther.covarianceVersion_),
covarianceSchema_(iOther.covarianceSchema_),
firstHit_(iOther.firstHit_),
trkAlgoPacked_(iOther.trkAlgoPacked_) {}
PackedCandidate(PackedCandidate &&iOther)
: packedPt_(iOther.packedPt_),
packedEta_(iOther.packedEta_),
packedPhi_(iOther.packedPhi_),
packedM_(iOther.packedM_),
packedDxy_(iOther.packedDxy_),
packedDz_(iOther.packedDz_),
packedDPhi_(iOther.packedDPhi_),
packedDEta_(iOther.packedDEta_),
packedDTrkPt_(iOther.packedDTrkPt_),
packedCovariance_(iOther.packedCovariance_),
packedPuppiweight_(iOther.packedPuppiweight_),
packedPuppiweightNoLepDiff_(iOther.packedPuppiweightNoLepDiff_),
rawCaloFraction_(iOther.rawCaloFraction_),
rawHcalFraction_(iOther.rawHcalFraction_),
caloFraction_(iOther.caloFraction_),
hcalFraction_(iOther.hcalFraction_),
packedTime_(iOther.packedTime_),
packedTimeError_(iOther.packedTimeError_),
isIsolatedChargedHadron_(iOther.isIsolatedChargedHadron_),
p4_(iOther.p4_.exchange(nullptr)),
p4c_(iOther.p4c_.exchange(nullptr)),
vertex_(iOther.vertex_.exchange(nullptr)),
dxy_(iOther.dxy_),
dz_(iOther.dz_),
dphi_(iOther.dphi_),
deta_(iOther.deta_),
dtrkpt_(iOther.dtrkpt_),
track_(iOther.track_.exchange(nullptr)),
pdgId_(iOther.pdgId_),
qualityFlags_(iOther.qualityFlags_),
pvRefProd_(iOther.pvRefProd_),
pvRefKey_(iOther.pvRefKey_),
m_(iOther.m_.exchange(nullptr)),
packedHits_(iOther.packedHits_),
packedLayers_(iOther.packedLayers_),
normalizedChi2_(iOther.normalizedChi2_),
covarianceVersion_(iOther.covarianceVersion_),
covarianceSchema_(iOther.covarianceSchema_),
firstHit_(iOther.firstHit_),
trkAlgoPacked_(iOther.trkAlgoPacked_) {}
PackedCandidate &operator=(const PackedCandidate &iOther) {
if (this == &iOther) {
return *this;
}
packedPt_ = iOther.packedPt_;
packedEta_ = iOther.packedEta_;
packedPhi_ = iOther.packedPhi_;
packedM_ = iOther.packedM_;
packedDxy_ = iOther.packedDxy_;
packedDz_ = iOther.packedDz_;
packedDPhi_ = iOther.packedDPhi_;
packedDEta_ = iOther.packedDEta_;
packedDTrkPt_ = iOther.packedDTrkPt_;
packedCovariance_ = iOther.packedCovariance_;
packedPuppiweight_ = iOther.packedPuppiweight_;
packedPuppiweightNoLepDiff_ = iOther.packedPuppiweightNoLepDiff_;
rawCaloFraction_ = iOther.rawCaloFraction_;
rawHcalFraction_ = iOther.rawHcalFraction_;
caloFraction_ = iOther.caloFraction_;
hcalFraction_ = iOther.hcalFraction_;
packedTime_ = iOther.packedTime_;
packedTimeError_ = iOther.packedTimeError_;
isIsolatedChargedHadron_ = iOther.isIsolatedChargedHadron_;
// Need to trigger unpacking in iOther
if (p4_) {
*p4_ = iOther.polarP4();
} else {
p4_.store(new PolarLorentzVector(iOther.polarP4()));
}
if (p4c_) {
*p4c_ = iOther.p4();
} else {
p4c_.store(new LorentzVector(iOther.p4()));
}
if (vertex_) {
*vertex_ = iOther.vertex();
} else {
vertex_.store(new Point(iOther.vertex()));
}
dxy_ = iOther.dxy_;
dz_ = iOther.dz_;
dphi_ = iOther.dphi_;
deta_ = iOther.deta_;
dtrkpt_ = iOther.dtrkpt_;
if (!iOther.track_) {
delete track_.exchange(nullptr);
} else {
if (!track_) {
track_.store(new reco::Track(*iOther.track_));
} else {
*track_ = *(iOther.track_);
}
}
pdgId_ = iOther.pdgId_;
qualityFlags_ = iOther.qualityFlags_;
pvRefProd_ = iOther.pvRefProd_;
pvRefKey_ = iOther.pvRefKey_;
if (!iOther.m_) {
delete m_.exchange(nullptr);
} else {
if (!m_) {
m_.store(new reco::Track::CovarianceMatrix(*iOther.m_));
} else {
*m_ = *(iOther.m_);
}
}
packedHits_ = iOther.packedHits_;
packedLayers_ = iOther.packedLayers_;
normalizedChi2_ = iOther.normalizedChi2_;
covarianceVersion_ = iOther.covarianceVersion_;
covarianceSchema_ = iOther.covarianceSchema_;
firstHit_ = iOther.firstHit_;
trkAlgoPacked_ = iOther.trkAlgoPacked_;
return *this;
}
PackedCandidate &operator=(PackedCandidate &&iOther) {
if (this == &iOther) {
return *this;
}
packedPt_ = iOther.packedPt_;
packedEta_ = iOther.packedEta_;
packedPhi_ = iOther.packedPhi_;
packedM_ = iOther.packedM_;
packedDxy_ = iOther.packedDxy_;
packedDz_ = iOther.packedDz_;
packedDPhi_ = iOther.packedDPhi_;
packedDEta_ = iOther.packedDEta_;
packedDTrkPt_ = iOther.packedDTrkPt_;
packedCovariance_ = iOther.packedCovariance_;
packedPuppiweight_ = iOther.packedPuppiweight_;
packedPuppiweightNoLepDiff_ = iOther.packedPuppiweightNoLepDiff_;
rawCaloFraction_ = iOther.rawCaloFraction_;
rawHcalFraction_ = iOther.rawHcalFraction_;
caloFraction_ = iOther.caloFraction_;
hcalFraction_ = iOther.hcalFraction_;
packedTime_ = iOther.packedTime_;
packedTimeError_ = iOther.packedTimeError_;
isIsolatedChargedHadron_ = iOther.isIsolatedChargedHadron_;
delete p4_.exchange(iOther.p4_.exchange(nullptr));
delete p4c_.exchange(iOther.p4c_.exchange(nullptr));
delete vertex_.exchange(iOther.vertex_.exchange(nullptr));
dxy_ = iOther.dxy_;
dz_ = iOther.dz_;
dphi_ = iOther.dphi_;
deta_ = iOther.deta_;
dtrkpt_ = iOther.dtrkpt_;
delete track_.exchange(iOther.track_.exchange(nullptr));
pdgId_ = iOther.pdgId_;
qualityFlags_ = iOther.qualityFlags_;
pvRefProd_ = iOther.pvRefProd_;
pvRefKey_ = iOther.pvRefKey_;
delete m_.exchange(iOther.m_.exchange(nullptr));
packedHits_ = iOther.packedHits_;
packedLayers_ = iOther.packedLayers_;
normalizedChi2_ = iOther.normalizedChi2_;
covarianceVersion_ = iOther.covarianceVersion_;
covarianceSchema_ = iOther.covarianceSchema_;
firstHit_ = iOther.firstHit_;
trkAlgoPacked_ = iOther.trkAlgoPacked_;
return *this;
}
/// destructor
~PackedCandidate() override;
/// number of daughters
size_t numberOfDaughters() const override;
/// return daughter at a given position (throws an exception)
const reco::Candidate *daughter(size_type) const override;
/// number of mothers
size_t numberOfMothers() const override;
/// return mother at a given position (throws an exception)
const reco::Candidate *mother(size_type) const override;
/// return daughter at a given position (throws an exception)
reco::Candidate *daughter(size_type) override;
/// return daughter with a specified role name
reco::Candidate *daughter(const std::string &s) override;
/// return daughter with a specified role name
const reco::Candidate *daughter(const std::string &s) const override;
/// return the number of source Candidates
/// ( the candidates used to construct this Candidate)
size_t numberOfSourceCandidatePtrs() const override { return 0; }
/// return a Ptr to one of the source Candidates
/// ( the candidates used to construct this Candidate)
reco::CandidatePtr sourceCandidatePtr(size_type i) const override { return reco::CandidatePtr(); }
/// electric charge
int charge() const override {
switch (abs(pdgId_)) {
case 211:
return (pdgId_ > 0) - (pdgId_ < 0);
case 11:
return (-1) * (pdgId_ > 0) + (pdgId_ < 0); // e
case 13:
return (-1) * (pdgId_ > 0) + (pdgId_ < 0); // mu
case 15:
return (-1) * (pdgId_ > 0) + (pdgId_ < 0); // tau
case 24:
return (pdgId_ > 0) - (pdgId_ < 0); // W
default:
return 0; // FIXME: charge is not defined
}
}
/// set electric charge
void setCharge(int charge) override {}
/// electric charge
int threeCharge() const override { return charge() * 3; }
/// set electric charge
void setThreeCharge(int threecharge) override {}
/// four-momentum Lorentz vecto r
const LorentzVector &p4() const override {
if (!p4c_)
unpack();
return *p4c_;
}
/// four-momentum Lorentz vector
const PolarLorentzVector &polarP4() const override {
if (!p4c_)
unpack();
return *p4_;
}
/// spatial momentum vector
Vector momentum() const override {
if (!p4c_)
unpack();
return p4c_.load()->Vect();
}
/// boost vector to boost a Lorentz vector
/// to the particle center of mass system
Vector boostToCM() const override {
if (!p4c_)
unpack();
return p4c_.load()->BoostToCM();
}
/// magnitude of momentum vector
double p() const override {
if (!p4c_)
unpack();
return p4c_.load()->P();
}
/// energy
double energy() const override {
if (!p4c_)
unpack();
return p4c_.load()->E();
}
/// transverse energy
double et() const override { return (pt() <= 0) ? 0 : p4c_.load()->Et(); }
/// transverse energy squared (use this for cuts)!
double et2() const override { return (pt() <= 0) ? 0 : p4c_.load()->Et2(); }
/// mass
double mass() const override {
if (!p4c_)
unpack();
return p4_.load()->M();
}
/// mass squared
double massSqr() const override {
if (!p4c_)
unpack();
auto m = p4_.load()->M();
return m * m;
}
/// transverse mass
double mt() const override {
if (!p4c_)
unpack();
return p4_.load()->Mt();
}
/// transverse mass squared
double mtSqr() const override {
if (!p4c_)
unpack();
return p4_.load()->Mt2();
}
/// x coordinate of momentum vector
double px() const override {
if (!p4c_)
unpack();
return p4c_.load()->Px();
}
/// y coordinate of momentum vector
double py() const override {
if (!p4c_)
unpack();
return p4c_.load()->Py();
}
/// z coordinate of momentum vector
double pz() const override {
if (!p4c_)
unpack();
return p4c_.load()->Pz();
}
/// transverse momentum
double pt() const override {
if (!p4c_)
unpack();
return p4_.load()->Pt();
}
/// momentum azimuthal angle
double phi() const override {
if (!p4c_)
unpack();
return p4_.load()->Phi();
}
/// pt from the track (normally identical to pt())
virtual double ptTrk() const {
maybeUnpackBoth();
return p4_.load()->pt() + dtrkpt_;
}
/// momentum azimuthal angle from the track (normally identical to phi())
virtual float phiAtVtx() const {
maybeUnpackBoth();
float ret = p4_.load()->Phi() + dphi_;
while (ret > float(M_PI))
ret -= 2 * float(M_PI);
while (ret < -float(M_PI))
ret += 2 * float(M_PI);
return ret;
}
/// eta from the track (normally identical to eta())
virtual float etaAtVtx() const {
maybeUnpackBoth();
return p4_.load()->eta() + deta_;
}
/// momentum polar angle
double theta() const override {
if (!p4c_)
unpack();
return p4_.load()->Theta();
}
/// momentum pseudorapidity
double eta() const override {
if (!p4c_)
unpack();
return p4_.load()->Eta();
}
/// rapidity
double rapidity() const override {
if (!p4c_)
unpack();
return p4_.load()->Rapidity();
}
/// rapidity
double y() const override {
if (!p4c_)
unpack();
return p4_.load()->Rapidity();
}
/// set 4-momentum
void setP4(const LorentzVector &p4) override {
maybeUnpackBoth(); // changing px,py,pz changes also mapping between dxy,dz
// and x,y,z
dphi_ += polarP4().Phi() - p4.Phi();
deta_ += polarP4().Eta() - p4.Eta();
dtrkpt_ += polarP4().Pt() - p4.Pt();
*p4_ = PolarLorentzVector(p4.Pt(), p4.Eta(), p4.Phi(), p4.M());
packBoth();
}
/// set 4-momentum
void setP4(const PolarLorentzVector &p4) override {
maybeUnpackBoth(); // changing px,py,pz changes also mapping between dxy,dz
// and x,y,z
dphi_ += polarP4().Phi() - p4.Phi();
deta_ += polarP4().Eta() - p4.Eta();
dtrkpt_ += polarP4().Pt() - p4.Pt();
*p4_ = p4;
packBoth();
}
/// set particle mass
void setMass(double m) override {
if (!p4c_)
unpack();
*p4_ = PolarLorentzVector(p4_.load()->Pt(), p4_.load()->Eta(), p4_.load()->Phi(), m);
pack();
}
void setPz(double pz) override {
maybeUnpackBoth(); // changing px,py,pz changes also mapping between dxy,dz
// and x,y,z
*p4c_ = LorentzVector(p4c_.load()->Px(), p4c_.load()->Py(), pz, p4c_.load()->E());
dphi_ += polarP4().Phi() - p4c_.load()->Phi();
deta_ += polarP4().Eta() - p4c_.load()->Eta();
dtrkpt_ += polarP4().Pt() - p4c_.load()->Pt();
*p4_ = PolarLorentzVector(p4c_.load()->Pt(), p4c_.load()->Eta(), p4c_.load()->Phi(), p4c_.load()->M());
packBoth();
}
/// set impact parameters covariance
// Note: mask is also the maximum value
enum trackHitShiftsAndMasks { trackPixelHitsMask = 7, trackStripHitsMask = 31, trackStripHitsShift = 3 };
// set number of tracker hits and layers
virtual void setHits(const reco::Track &tk) {
// first we count the number of layers with hits
int numberOfPixelLayers_ = tk.hitPattern().pixelLayersWithMeasurement();
if (numberOfPixelLayers_ > trackPixelHitsMask)
numberOfPixelLayers_ = trackPixelHitsMask;
int numberOfStripLayers_ = tk.hitPattern().stripLayersWithMeasurement();
if (numberOfStripLayers_ > trackStripHitsMask)
numberOfStripLayers_ = trackStripHitsMask;
packedLayers_ = (numberOfPixelLayers_ & trackPixelHitsMask) | (numberOfStripLayers_ << trackStripHitsShift);
// now we count number of additional hits, beyond the one-per-layer implied
// by packedLayers_
int numberOfPixelHits_ = tk.hitPattern().numberOfValidPixelHits() - numberOfPixelLayers_;
if (numberOfPixelHits_ > trackPixelHitsMask)
numberOfPixelHits_ = trackPixelHitsMask;
int numberOfStripHits_ =
tk.hitPattern().numberOfValidHits() - numberOfPixelHits_ - numberOfPixelLayers_ - numberOfStripLayers_;
if (numberOfStripHits_ > trackStripHitsMask)
numberOfStripHits_ = trackStripHitsMask;
packedHits_ = (numberOfPixelHits_ & trackPixelHitsMask) | (numberOfStripHits_ << trackStripHitsShift);
}
virtual void setTrackProperties(const reco::Track &tk,
const reco::Track::CovarianceMatrix &covariance,
int quality,
int covarianceVersion) {
covarianceVersion_ = covarianceVersion;
covarianceSchema_ = quality;
normalizedChi2_ = tk.normalizedChi2();
setHits(tk);
maybeUnpackBoth();
packBoth();
packCovariance(covariance, false);
}
// set track properties using quality and covarianceVersion to define the
// level of details in the cov. matrix
virtual void setTrackProperties(const reco::Track &tk, int quality, int covarianceVersion) {
setTrackProperties(tk, tk.covariance(), quality, covarianceVersion);
}
void setTrackPropertiesLite(unsigned int covSchema,
unsigned int covarianceVersion,
unsigned int nHits,
unsigned int nPixelHits) {
covarianceVersion_ = covarianceVersion;
covarianceSchema_ = covSchema;
packedHits_ =
(nPixelHits & trackPixelHitsMask) | (((nHits - nPixelHits) & trackStripHitsMask) << trackStripHitsShift);
}
int numberOfPixelHits() const { return (packedHits_ & trackPixelHitsMask) + pixelLayersWithMeasurement(); }
int numberOfHits() const {
return (packedHits_ >> trackStripHitsShift) + stripLayersWithMeasurement() + numberOfPixelHits();
}
int pixelLayersWithMeasurement() const { return packedLayers_ & trackPixelHitsMask; }
int stripLayersWithMeasurement() const { return (packedLayers_ >> trackStripHitsShift); }
int trackerLayersWithMeasurement() const { return stripLayersWithMeasurement() + pixelLayersWithMeasurement(); }
virtual void setCovarianceVersion(int v) { covarianceVersion_ = v; }
int covarianceVersion() const { return covarianceVersion_; }
int covarianceSchema() const { return covarianceSchema_; }
/// vertex position
const Point &vertex() const override {
maybeUnpackBoth();
return *vertex_;
} //{ if (fromPV_) return Point(0,0,0); else return Point(0,0,100); }
/// x coordinate of vertex position
double vx() const override {
maybeUnpackBoth();
return vertex_.load()->X();
} //{ return 0; }
/// y coordinate of vertex position
double vy() const override {
maybeUnpackBoth();
return vertex_.load()->Y();
} //{ return 0; }
/// z coordinate of vertex position
double vz() const override {
maybeUnpackBoth();
return vertex_.load()->Z();
} //{ if (fromPV_) return 0; else return 100; }
/// set vertex
void setVertex(const Point &vertex) override {
maybeUnpackBoth();
*vertex_ = vertex;
packVtx();
}
/// This refers to the association to PV=ipv. >=PVLoose corresponds to JME
/// definition, >=PVTight to isolation definition
enum PVAssoc { NoPV = 0, PVLoose = 1, PVTight = 2, PVUsedInFit = 3 };
const PVAssoc fromPV(size_t ipv = 0) const {
reco::VertexRef pvRef = vertexRef();
if (pvAssociationQuality() == UsedInFitTight and pvRef.key() == ipv)
return PVUsedInFit;
if (pvRef.key() == ipv or abs(pdgId()) == 13 or abs(pdgId()) == 11)
return PVTight;
if (pvAssociationQuality() == CompatibilityBTag and std::abs(dzAssociatedPV()) > std::abs(dz(ipv)))
return PVTight; // it is not closest, but at least prevents the B
// assignment stealing
if (pvAssociationQuality() < UsedInFitLoose or pvRef->ndof() < 4.0)
return PVLoose;
return NoPV;
}
/// The following contains information about how the association to the PV,
/// given in vertexRef, is obtained.
///
enum PVAssociationQuality {
NotReconstructedPrimary = 0,
OtherDeltaZ = 1,
CompatibilityBTag = 4,
CompatibilityDz = 5,
UsedInFitLoose = 6,
UsedInFitTight = 7
};
const PVAssociationQuality pvAssociationQuality() const {
return PVAssociationQuality((qualityFlags_ & assignmentQualityMask) >> assignmentQualityShift);
}
void setAssociationQuality(PVAssociationQuality q) {
qualityFlags_ =
(qualityFlags_ & ~assignmentQualityMask) | ((q << assignmentQualityShift) & assignmentQualityMask);
}
const reco::VertexRef vertexRef() const { return reco::VertexRef(pvRefProd_, pvRefKey_); }
/// dxy with respect to the PV ref
virtual float dxy() const {
maybeUnpackBoth();
return dxy_;
}
/// dz with respect to the PV[ipv]
virtual float dz(size_t ipv = 0) const {
maybeUnpackBoth();
return dz_ + (*pvRefProd_)[pvRefKey_].position().z() - (*pvRefProd_)[ipv].position().z();
}
/// dz with respect to the PV ref
virtual float dzAssociatedPV() const {
maybeUnpackBoth();
return dz_;
}
/// dxy with respect to another point
virtual float dxy(const Point &p) const;
/// dz with respect to another point
virtual float dz(const Point &p) const;
/// uncertainty on dz
float dzError() const override {
maybeUnpackCovariance();
return sqrt((*m_.load())(4, 4));
}
/// uncertainty on dxy
float dxyError() const override {
maybeUnpackCovariance();
return sqrt((*m_.load())(3, 3));
}
/// Return reference to a pseudo track made with candidate kinematics,
/// parameterized error for eta,phi,pt and full IP covariance
virtual const reco::Track &pseudoTrack() const {
if (!track_)
unpackTrk();
return *track_;
}
/// Return reference to a pseudo track made with candidate kinematics,
/// parameterized error for eta,phi,pt and full IP covariance
/// and the coviriance matrix is forced to be positive definite according to BPH recommandations
virtual const reco::Track pseudoPosDefTrack() const;
/// return a pointer to the track if present. otherwise, return a null pointer
const reco::Track *bestTrack() const override {
if (packedHits_ != 0 || packedLayers_ != 0) {
maybeUnpackTrack();
return track_.load();
} else
return nullptr;
}
/// Return true if a bestTrack can be extracted from this Candidate
bool hasTrackDetails() const { return (packedHits_ != 0 || packedLayers_ != 0); }
/// Return true if the original candidate had a track associated
/// even if the PackedCandidate has no track
bool fromTrackCandidate() const { return (packedDz_ != 0 || (packedDxy_ != 0 && packedDxy_ != 32768)); }
/// true if the track had the highPurity quality bit
bool trackHighPurity() const { return (qualityFlags_ & trackHighPurityMask) >> trackHighPurityShift; }
/// set to true if the track had the highPurity quality bit
void setTrackHighPurity(bool highPurity) {
qualityFlags_ =
(qualityFlags_ & ~trackHighPurityMask) | ((highPurity << trackHighPurityShift) & trackHighPurityMask);
}
/// Enumerator specifying the
enum LostInnerHits {
validHitInFirstPixelBarrelLayer = -1,
noLostInnerHits = 0, // it could still not have a hit in the first layer,
// e.g. if it crosses an inactive sensor
oneLostInnerHit = 1,
moreLostInnerHits = 2
};
LostInnerHits lostInnerHits() const {
return LostInnerHits(int16_t((qualityFlags_ & lostInnerHitsMask) >> lostInnerHitsShift) - 1);
}
void setLostInnerHits(LostInnerHits hits) {
int lost = hits;
if (lost > 2)
lost = 2; // protection against misuse
lost++; // shift so it's 0 .. 3 instead of (-1) .. 2
qualityFlags_ = (qualityFlags_ & ~lostInnerHitsMask) | ((lost << lostInnerHitsShift) & lostInnerHitsMask);
}
/// Set first hit from HitPattern
void setFirstHit(uint16_t pattern) { firstHit_ = pattern; }
/// Return first hit from HitPattern for tracks with high level details
uint16_t firstHit() const { return firstHit_; }
/// Set/get track algo
void setTrkAlgo(uint8_t algo, uint8_t original) {
trkAlgoPacked_ = algo | ((algo == original ? 0 : original) << 8);
}
uint8_t trkAlgo() const { return trkAlgoPacked_ & 0xff; }
uint8_t trkOriginalAlgo() const {
return (trkAlgoPacked_ & 0xff00) == 0 ? trkAlgo() : ((trkAlgoPacked_ >> 8) & 0xff);
}
void setMuonID(bool isStandAlone, bool isGlobal) {
int16_t muonFlags = isStandAlone | (2 * isGlobal);
qualityFlags_ = (qualityFlags_ & ~muonFlagsMask) | ((muonFlags << muonFlagsShift) & muonFlagsMask);
}
void setGoodEgamma(bool isGoodEgamma = true) {
int16_t egFlags = (isGoodEgamma << egammaFlagsShift) & egammaFlagsMask;
qualityFlags_ = (qualityFlags_ & ~egammaFlagsMask) | egFlags;
}
/// PDG identifier
int pdgId() const override { return pdgId_; }
// set PDG identifier
void setPdgId(int pdgId) override { pdgId_ = pdgId; }
/// status word
int status() const override { return qualityFlags_; } /*FIXME*/
/// set status word
void setStatus(int status) override {} /*FIXME*/
/// long lived flag
static const unsigned int longLivedTag = 0; /*FIXME*/
/// set long lived flag
void setLongLived() override {} /*FIXME*/
/// is long lived?
bool longLived() const override;
/// do mass constraint flag
static const unsigned int massConstraintTag = 0; /*FIXME*/
/// set mass constraint flag
void setMassConstraint() override {} /*FIXME*/
/// do mass constraint?
bool massConstraint() const override;
/// returns a clone of the Candidate object
PackedCandidate *clone() const override { return new PackedCandidate(*this); }
/// chi-squares
double vertexChi2() const override;
/** Number of degrees of freedom
* Meant to be Double32_t for soft-assignment fitters:
* tracks may contribute to the vertex with fractional weights.
* The ndof is then = to the sum of the track weights.
* see e.g. CMS NOTE-2006/032, CMS NOTE-2004/002
*/
double vertexNdof() const override;
/// chi-squared divided by n.d.o.f.
double vertexNormalizedChi2() const override;
/// (i, j)-th element of error matrix, i, j = 0, ... 2
double vertexCovariance(int i, int j) const override;
/// return SMatrix
CovarianceMatrix vertexCovariance() const override {
CovarianceMatrix m;
fillVertexCovariance(m);
return m;
}
/// fill SMatrix
void fillVertexCovariance(CovarianceMatrix &v) const override;
/// returns true if this candidate has a reference to a master clone.
/// This only happens if the concrete Candidate type is ShallowCloneCandidate
bool hasMasterClone() const override;
/// returns ptr to master clone, if existing.
/// Throws an exception unless the concrete Candidate type is
/// ShallowCloneCandidate
const reco::CandidateBaseRef &masterClone() const override;
/// returns true if this candidate has a ptr to a master clone.
/// This only happens if the concrete Candidate type is
/// ShallowClonePtrCandidate
bool hasMasterClonePtr() const override;
/// returns ptr to master clone, if existing.
/// Throws an exception unless the concrete Candidate type is
/// ShallowClonePtrCandidate
const reco::CandidatePtr &masterClonePtr() const override;
/// cast master clone reference to a concrete type
template <typename Ref>
Ref masterRef() const {
return masterClone().template castTo<Ref>();
}
bool isElectron() const override { return false; }
bool isMuon() const override { return false; }
bool isStandAloneMuon() const override { return ((qualityFlags_ & muonFlagsMask) >> muonFlagsShift) & 1; }
bool isGlobalMuon() const override { return ((qualityFlags_ & muonFlagsMask) >> muonFlagsShift) & 2; }
bool isTrackerMuon() const override { return false; }
bool isCaloMuon() const override { return false; }
bool isPhoton() const override { return false; }
bool isConvertedPhoton() const override { return false; }
bool isJet() const override { return false; }
bool isGoodEgamma() const { return (qualityFlags_ & egammaFlagsMask) != 0; }
// puppiweights
void setPuppiWeight(float p,
float p_nolep = 0.0); /// Set both weights at once (with
/// option for only full PUPPI)
float puppiWeight() const; /// Weight from full PUPPI
float puppiWeightNoLep() const; /// Weight from PUPPI removing leptons
// for the neutral fractions
void setRawCaloFraction(float p); /// Set the raw ECAL+HCAL energy over candidate
/// energy for isolated charged hadrons
float rawCaloFraction() const {
return (rawCaloFraction_ / 100.);
} /// Raw ECAL+HCAL energy over candidate energy for isolated charged hadrons
void setRawHcalFraction(float p); /// Set the fraction of Hcal needed isolated charged hadrons
float rawHcalFraction() const {
return (rawHcalFraction_ / 100.);
} /// Fraction of Hcal for isolated charged hadrons
void setCaloFraction(float p); /// Set the fraction of ECAL+HCAL energy over candidate energy
float caloFraction() const {
return (caloFraction_ / 100.);
} /// Fraction of ECAL+HCAL energy over candidate energy
void setHcalFraction(float p); /// Set the fraction of Hcal needed for HF,
/// neutral hadrons, and charged particles
float hcalFraction() const {
return (hcalFraction_ / 100.);
} /// Fraction of Hcal for HF, neutral hadrons, and charged particles
// isolated charged hadrons
void setIsIsolatedChargedHadron(bool p); /// Set isolation (as in particle flow, i.e. at calorimeter
/// surface rather than at PV) flat for charged hadrons
bool isIsolatedChargedHadron() const {
return isIsolatedChargedHadron_;
} /// Flag isolation (as in particle flow, i.e. at calorimeter surface rather
/// than at PV) flag for charged hadrons
struct PackedCovariance {
PackedCovariance()
: dxydxy(0), dxydz(0), dzdz(0), dlambdadz(0), dphidxy(0), dptdpt(0), detadeta(0), dphidphi(0) {}
// 3D IP covariance
uint16_t dxydxy;
uint16_t dxydz;
uint16_t dzdz;
// other IP relevant elements
uint16_t dlambdadz;
uint16_t dphidxy;
// other diag elements
uint16_t dptdpt;
uint16_t detadeta;
uint16_t dphidphi;
};
/// time (wrt nominal zero of the collision)
virtual float time() const { return vertexRef()->t() + dtimeAssociatedPV(); }
/// dtime with respect to the PV[ipv]
virtual float dtime(size_t ipv = 0) const {
return dtimeAssociatedPV() + (*pvRefProd_)[pvRefKey_].t() - (*pvRefProd_)[ipv].t();
}
/// dtime with respect to the PV ref
virtual float dtimeAssociatedPV() const {
if (packedTime_ == 0)
return 0.f;
if (packedTimeError_ > 0)
return unpackTimeWithError(packedTime_, packedTimeError_);
else
return unpackTimeNoError(packedTime_);
}
/// time measurement uncertainty (-1 if not available)
virtual float timeError() const { return unpackTimeError(packedTimeError_); }
/// set time measurement
void setDTimeAssociatedPV(float aTime, float aTimeError = 0);
/// set time measurement
void setTime(float aTime, float aTimeError = 0) { setDTimeAssociatedPV(aTime - vertexRef()->t(), aTimeError); }
private:
void unpackCovarianceElement(reco::TrackBase::CovarianceMatrix &m, uint16_t packed, int i, int j) const {
m(i, j) = covarianceParameterization().unpack(
packed, covarianceSchema_, i, j, pt(), eta(), numberOfHits(), numberOfPixelHits());
}
uint16_t packCovarianceElement(const reco::TrackBase::CovarianceMatrix &m, int i, int j) const {
return covarianceParameterization().pack(
m(i, j), covarianceSchema_, i, j, pt(), eta(), numberOfHits(), numberOfPixelHits());
}
protected:
friend class ::testPackedCandidate;
static constexpr float kMinDEtaToStore_ = 0.001;
static constexpr float kMinDTrkPtToStore_ = 0.001;
uint16_t packedPt_, packedEta_, packedPhi_, packedM_;
uint16_t packedDxy_, packedDz_, packedDPhi_, packedDEta_, packedDTrkPt_;
PackedCovariance packedCovariance_;
void pack(bool unpackAfterwards = true);
void unpack() const;
void packVtx(bool unpackAfterwards = true);
void unpackVtx() const;
void packCovariance(const reco::TrackBase::CovarianceMatrix &m, bool unpackAfterwards = true);
void unpackCovariance() const;
void maybeUnpackBoth() const {
if (!p4c_)
unpack();
if (!vertex_)
unpackVtx();
}
void maybeUnpackTrack() const {
if (!track_)
unpackTrk();
}
void maybeUnpackCovariance() const {
if (!m_)
unpackCovariance();
}
void packBoth() {
pack(false);
packVtx(false);
delete p4_.exchange(nullptr);
delete p4c_.exchange(nullptr);
delete vertex_.exchange(nullptr);
unpack();
unpackVtx();
} // do it this way, so that we don't loose precision on the angles before
// computing dxy,dz
void unpackTrk() const;
uint8_t packedPuppiweight_;
int8_t packedPuppiweightNoLepDiff_; // storing the DIFFERENCE of (all - "no
// lep") for compression optimization
uint8_t rawCaloFraction_;
int8_t rawHcalFraction_;
uint8_t caloFraction_;
int8_t hcalFraction_;
int16_t packedTime_;
uint8_t packedTimeError_;
bool isIsolatedChargedHadron_;
/// the four vector
mutable std::atomic<PolarLorentzVector *> p4_;
mutable std::atomic<LorentzVector *> p4c_;
/// vertex position
mutable std::atomic<Point *> vertex_;
CMS_THREAD_GUARD(vertex_) mutable float dxy_, dz_, dphi_, deta_, dtrkpt_;
/// reco::Track
mutable std::atomic<reco::Track *> track_;
/// PDG identifier
int pdgId_;
uint16_t qualityFlags_;
/// Use these to build a Ref to primary vertex
reco::VertexRefProd pvRefProd_;
reco::VertexRef::key_type pvRefKey_;
/// IP covariance
mutable std::atomic<reco::TrackBase::CovarianceMatrix *> m_;
uint8_t packedHits_,
packedLayers_; // packedLayers_ -> layers with valid hits; packedHits_ ->
// extra hits beyond the one-per-layer implied by
// packedLayers_
/// track quality information
uint8_t normalizedChi2_;
uint16_t covarianceVersion_;
uint16_t covarianceSchema_;
CMS_THREAD_SAFE static CovarianceParameterization covarianceParameterization_;
// static std::atomic<CovarianceParameterization*>
// covarianceParameterization_;
static std::once_flag covariance_load_flag;
const CovarianceParameterization &covarianceParameterization() const {
if (!hasTrackDetails())
throw edm::Exception(edm::errors::InvalidReference,
"Trying to access covariance matrix for a "
"PackedCandidate for which it's not available. "
"Check hasTrackDetails() before!\n");
std::call_once(
covariance_load_flag, [](int v) { covarianceParameterization_.load(v); }, covarianceVersion_);
if (covarianceParameterization_.loadedVersion() != covarianceVersion_) {
throw edm::Exception(edm::errors::UnimplementedFeature)
<< "Attempting to load multiple covariance version in same process. "
"This is not supported.";
}
return covarianceParameterization_;
}
/// details (hit pattern) of the first hit on track
uint16_t firstHit_;
/// track algorithm details
uint16_t trkAlgoPacked_ = 0;
/// check overlap with another Candidate
bool overlap(const reco::Candidate &) const override;
template <typename, typename, typename>
friend struct component;
friend class ::OverlapChecker;
friend class ShallowCloneCandidate;
friend class ShallowClonePtrCandidate;
enum qualityFlagsShiftsAndMasks {
assignmentQualityMask = 0x7,
assignmentQualityShift = 0,
trackHighPurityMask = 0x8,
trackHighPurityShift = 3,
lostInnerHitsMask = 0x30,
lostInnerHitsShift = 4,
muonFlagsMask = 0x0600,
muonFlagsShift = 9,
egammaFlagsMask = 0x0800,
egammaFlagsShift = 11
};
/// static to allow unit testing
static uint8_t packTimeError(float timeError);
static float unpackTimeError(uint8_t timeError);
static float unpackTimeNoError(int16_t time);
static int16_t packTimeNoError(float time);
static float unpackTimeWithError(int16_t time, uint8_t timeError);
static int16_t packTimeWithError(float time, float timeError);
static constexpr float MIN_TIMEERROR = 0.002f; // 2 ps, smallest storable non-zero uncertainty
static constexpr float MIN_TIME_NOERROR = 0.0002f; // 0.2 ps, smallest non-zero time that can be stored by
// packTimeNoError
static constexpr int EXPO_TIMEERROR = 5; // power of 2 used in encoding timeError
static constexpr int EXPO_TIME_NOERROR = 6; // power of 2 used in encoding time without timeError
static constexpr int EXPO_TIME_WITHERROR = -6; // power of 2 used in encoding time with timeError
};
typedef std::vector<pat::PackedCandidate> PackedCandidateCollection;
typedef edm::Ref<pat::PackedCandidateCollection> PackedCandidateRef;
typedef edm::RefVector<pat::PackedCandidateCollection> PackedCandidateRefVector;
} // namespace pat
#endif
|