-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmt2_17.h
1751 lines (1733 loc) · 94.3 KB
/
mt2_17.h
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
//////////////////////////////////////////////////////////
// This class has been automatically generated on
// Wed Nov 21 06:40:53 2018 by ROOT version 6.10/09
// from TTree mt2/A Baby Ntuple
// found on file: /nfs-6/userdata/dpgilber/mt2babies/data_2017_leploose/data_Run2017F.root
//////////////////////////////////////////////////////////
#ifndef mt2_17_h
#define mt2_17_h
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
// Header file for the classes stored in the TTree if any.
class mt2_17 {
public :
TTree *fChain; //!pointer to the analyzed TTree or TChain
Int_t fCurrent; //!current Tree number in a TChain
// Fixed size dimensions of array or collections stored in the TTree if any.
// Declaration of leaf types
Int_t run;
Int_t lumi;
ULong64_t evt;
Int_t isData;
Int_t isGolden;
Float_t evt_scale1fb;
Float_t evt_xsec;
Float_t evt_kfactor;
Float_t evt_filter;
ULong64_t evt_nEvts;
Int_t evt_id;
Float_t genWeight;
Float_t puWeight;
Int_t nVert;
Int_t nTrueInt;
Float_t rho;
Int_t nJet30;
Int_t nJet30JECup;
Int_t nJet30JECdn;
Int_t nJet40;
Int_t nBJet20;
Int_t nBJet20csv;
Int_t nBJet20mva;
Int_t nBJet20JECup;
Int_t nBJet20JECdn;
Int_t nBJet25;
Int_t nBJet30;
Int_t nBJet30csv;
Int_t nBJet30mva;
Int_t nBJet40;
Int_t nJet30FailId;
Int_t nJet100FailId;
Int_t nJet20BadFastsim;
Int_t nJet200MuFrac50DphiMet;
Int_t nMuons10;
Int_t nBadMuons20;
Int_t nElectrons10;
Int_t nLepLowMT;
Int_t nTaus20;
Int_t nGammas20;
Int_t nPFCHCand3;
Float_t deltaPhiMin;
Float_t deltaPhiMin_genmet;
Float_t diffMetMht;
Float_t diffMetMht_genmet;
Float_t deltaPhiMinJECup;
Float_t deltaPhiMinJECdn;
Float_t diffMetMhtJECup;
Float_t diffMetMhtJECdn;
Float_t minMTBMet;
Float_t zll_minMTBMet;
Float_t gamma_minMTBMet;
Float_t ht;
Float_t htJECup;
Float_t htJECdn;
Float_t mt2;
Float_t mt2JECup;
Float_t mt2JECdn;
Float_t mt2_gen;
Float_t mt2_genmet;
Float_t jet1_pt;
Float_t jet2_pt;
Float_t jet1_ptJECup;
Float_t jet2_ptJECup;
Float_t jet1_ptJECdn;
Float_t jet2_ptJECdn;
Int_t jet_failFSveto;
Float_t gamma_jet1_pt;
Float_t gamma_jet2_pt;
Float_t pseudoJet1_pt;
Float_t pseudoJet1_eta;
Float_t pseudoJet1_phi;
Float_t pseudoJet1_mass;
Float_t pseudoJet2_pt;
Float_t pseudoJet2_eta;
Float_t pseudoJet2_phi;
Float_t pseudoJet2_mass;
Float_t pseudoJet1JECup_pt;
Float_t pseudoJet1JECup_eta;
Float_t pseudoJet1JECup_phi;
Float_t pseudoJet1JECup_mass;
Float_t pseudoJet2JECup_pt;
Float_t pseudoJet2JECup_eta;
Float_t pseudoJet2JECup_phi;
Float_t pseudoJet2JECup_mass;
Float_t pseudoJet1JECdn_pt;
Float_t pseudoJet1JECdn_eta;
Float_t pseudoJet1JECdn_phi;
Float_t pseudoJet1JECdn_mass;
Float_t pseudoJet2JECdn_pt;
Float_t pseudoJet2JECdn_eta;
Float_t pseudoJet2JECdn_phi;
Float_t pseudoJet2JECdn_mass;
Float_t zll_pseudoJet1_pt;
Float_t zll_pseudoJet1_eta;
Float_t zll_pseudoJet1_phi;
Float_t zll_pseudoJet1_mass;
Float_t zll_pseudoJet2_pt;
Float_t zll_pseudoJet2_eta;
Float_t zll_pseudoJet2_phi;
Float_t zll_pseudoJet2_mass;
Float_t zll_pseudoJet1JECup_pt;
Float_t zll_pseudoJet1JECup_eta;
Float_t zll_pseudoJet1JECup_phi;
Float_t zll_pseudoJet1JECup_mass;
Float_t zll_pseudoJet2JECup_pt;
Float_t zll_pseudoJet2JECup_eta;
Float_t zll_pseudoJet2JECup_phi;
Float_t zll_pseudoJet2JECup_mass;
Float_t zll_pseudoJet1JECdn_pt;
Float_t zll_pseudoJet1JECdn_eta;
Float_t zll_pseudoJet1JECdn_phi;
Float_t zll_pseudoJet1JECdn_mass;
Float_t zll_pseudoJet2JECdn_pt;
Float_t zll_pseudoJet2JECdn_eta;
Float_t zll_pseudoJet2JECdn_phi;
Float_t zll_pseudoJet2JECdn_mass;
Float_t gamma_pseudoJet1_pt;
Float_t gamma_pseudoJet1_eta;
Float_t gamma_pseudoJet1_phi;
Float_t gamma_pseudoJet1_mass;
Float_t gamma_pseudoJet2_pt;
Float_t gamma_pseudoJet2_eta;
Float_t gamma_pseudoJet2_phi;
Float_t gamma_pseudoJet2_mass;
Float_t zllmt_pseudoJet1_pt;
Float_t zllmt_pseudoJet1_eta;
Float_t zllmt_pseudoJet1_phi;
Float_t zllmt_pseudoJet1_mass;
Float_t zllmt_pseudoJet2_pt;
Float_t zllmt_pseudoJet2_eta;
Float_t zllmt_pseudoJet2_phi;
Float_t zllmt_pseudoJet2_mass;
Float_t rl_pseudoJet1_pt;
Float_t rl_pseudoJet1_eta;
Float_t rl_pseudoJet1_phi;
Float_t rl_pseudoJet1_mass;
Float_t rl_pseudoJet2_pt;
Float_t rl_pseudoJet2_eta;
Float_t rl_pseudoJet2_phi;
Float_t rl_pseudoJet2_mass;
Float_t gen_pseudoJet1_pt;
Float_t gen_pseudoJet1_eta;
Float_t gen_pseudoJet1_phi;
Float_t gen_pseudoJet1_mass;
Float_t gen_pseudoJet2_pt;
Float_t gen_pseudoJet2_eta;
Float_t gen_pseudoJet2_phi;
Float_t gen_pseudoJet2_mass;
Float_t mht_pt;
Float_t mht_phi;
Float_t mht_ptJECup;
Float_t mht_phiJECup;
Float_t mht_ptJECdn;
Float_t mht_phiJECdn;
Float_t met_pt;
Float_t met_phi;
Float_t met_old2017_pt;
Float_t met_old2017_phi;
Float_t met_ptJECup;
Float_t met_phiJECup;
Float_t met_ptJECdn;
Float_t met_phiJECdn;
Float_t met_rawPt;
Float_t met_rawPhi;
Float_t met_caloPt;
Float_t met_caloPhi;
Float_t met_trkPt;
Float_t met_trkPhi;
Float_t met_genPt;
Float_t met_genPhi;
Float_t met_miniaodPt;
Float_t met_miniaodPhi;
Int_t Flag_EcalDeadCellTriggerPrimitiveFilter;
Int_t Flag_trkPOG_manystripclus53X;
Int_t Flag_ecalLaserCorrFilter;
Int_t Flag_trkPOG_toomanystripclus53X;
Int_t Flag_hcalLaserEventFilter;
Int_t Flag_trkPOG_logErrorTooManyClusters;
Int_t Flag_trkPOGFilters;
Int_t Flag_trackingFailureFilter;
Int_t Flag_CSCTightHalo2015Filter;
Int_t Flag_CSCTightHaloFilter;
Int_t Flag_globalTightHalo2016Filter;
Int_t Flag_globalSuperTightHalo2016Filter;
Int_t Flag_HBHENoiseFilter;
Int_t Flag_HBHENoiseIsoFilter;
Int_t Flag_goodVertices;
Int_t Flag_eeBadScFilter;
Int_t Flag_ecalBadCalibFilter;
Int_t Flag_badMuonFilter;
Int_t Flag_badMuonFilterV2;
Int_t Flag_badMuons;
Int_t Flag_duplicateMuons;
Int_t Flag_noBadMuons;
Int_t Flag_badChargedCandidateFilter;
Int_t Flag_badChargedHadronFilterV2;
Int_t Flag_METFilters;
Int_t HLT_PFHT1050;
Int_t HLT_PFHT900;
Int_t HLT_PFHT500_PFMET100_PFMHT100;
Int_t HLT_PFHT700_PFMET85_PFMHT85;
Int_t HLT_PFHT800_PFMET75_PFMHT75;
Int_t HLT_PFMET170;
Int_t HLT_PFHT300_PFMET100;
Int_t HLT_PFHT300_PFMET110;
Int_t HLT_PFHT350_PFMET100;
Int_t HLT_PFHT350_PFMET120;
Int_t HLT_PFMETNoMu90_PFMHTNoMu90;
Int_t HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90;
Int_t HLT_PFMETNoMu100_PFMHTNoMu100;
Int_t HLT_PFMETNoMu110_PFMHTNoMu110;
Int_t HLT_PFMETNoMu120_PFMHTNoMu120;
Int_t HLT_PFMETNoMu130_PFMHTNoMu130;
Int_t HLT_PFMETNoMu140_PFMHTNoMu140;
Int_t HLT_PFMETNoMu120_PFMHTNoMu120_PFHT60;
Int_t HLT_PFMET90_PFMHT90;
Int_t HLT_PFMET100_PFMHT100;
Int_t HLT_PFMET110_PFMHT110;
Int_t HLT_PFMET120_PFMHT120;
Int_t HLT_PFMET130_PFMHT130;
Int_t HLT_PFMET140_PFMHT140;
Int_t HLT_PFMET100_PFMHT100_PFHT60;
Int_t HLT_PFMET120_PFMHT120_PFHT60;
Int_t HLT_PFJet450;
Int_t HLT_PFJet500;
Int_t HLT_ECALHT800;
Int_t HLT_SingleMu;
Int_t HLT_SingleMu_NonIso;
Int_t HLT_SingleEl;
Int_t HLT_SingleEl_NonIso;
Int_t HLT_DoubleEl;
Int_t HLT_DoubleEl33;
Int_t HLT_MuX_Ele12;
Int_t HLT_Mu8_EleX;
Int_t HLT_Mu12_EleX;
Int_t HLT_Mu30_Ele30_NonIso;
Int_t HLT_Mu33_Ele33_NonIso;
Int_t HLT_Mu37_Ele27_NonIso;
Int_t HLT_Mu27_Ele37_NonIso;
Int_t HLT_DoubleMu;
Int_t HLT_DoubleMu_NonIso;
Int_t HLT_Photon120;
Int_t HLT_Photon200;
Int_t HLT_Photon175_Prescale;
Int_t HLT_Photon165_HE10;
Int_t HLT_Photon250_NoHE;
Int_t HLT_PFHT180_Prescale;
Int_t HLT_PFHT250_Prescale;
Int_t HLT_PFHT370_Prescale;
Int_t HLT_PFHT430_Prescale;
Int_t HLT_PFHT510_Prescale;
Int_t HLT_PFHT590_Prescale;
Int_t HLT_PFHT680_Prescale;
Int_t HLT_PFHT780_Prescale;
Int_t HLT_PFHT890_Prescale;
Int_t HLT_PFHT125_Prescale;
Int_t HLT_PFHT200_Prescale;
Int_t HLT_PFHT300_Prescale;
Int_t HLT_PFHT350_Prescale;
Int_t HLT_PFHT475_Prescale;
Int_t HLT_PFHT600_Prescale;
Int_t HLT_DiCentralPFJet70_PFMET120;
Int_t HLT_DiCentralPFJet55_PFMET110;
Int_t nlep;
Float_t lep_pt[5]; //[nlep]
Float_t lep_eta[5]; //[nlep]
Float_t lep_phi[5]; //[nlep]
Float_t lep_mass[5]; //[nlep]
Int_t lep_charge[5]; //[nlep]
Int_t lep_pdgId[5]; //[nlep]
Float_t lep_dxy[5]; //[nlep]
Float_t lep_dz[5]; //[nlep]
Int_t lep_tightId[5]; //[nlep]
Int_t lep_heepId[5]; //[nlep]
Float_t lep_highPtFit_pt[5]; //[nlep]
Float_t lep_highPtFit_eta[5]; //[nlep]
Int_t lep_isPF[5]; //[nlep]
// Int_t HLT_PFHT125_Prescale;
// Int_t HLT_PFHT200_Prescale;
// Int_t HLT_PFHT300_Prescale;
// Int_t HLT_PFHT350_Prescale;
// Int_t HLT_PFHT475_Prescale;
// Int_t HLT_PFHT600_Prescale;
Float_t lep_highPtFit_phi[5]; //[nlep]
Float_t lep_relIso03[5]; //[nlep]
Float_t lep_relIso04[5]; //[nlep]
Float_t lep_miniRelIso[5]; //[nlep]
Int_t lep_mcMatchId[5]; //[nlep]
Int_t lep_lostHits[5]; //[nlep]
Int_t lep_convVeto[5]; //[nlep]
Int_t lep_tightCharge[5]; //[nlep]
Int_t nisoTrack;
Float_t isoTrack_pt[10]; //[nisoTrack]
Float_t isoTrack_eta[10]; //[nisoTrack]
Float_t isoTrack_phi[10]; //[nisoTrack]
Float_t isoTrack_mass[10]; //[nisoTrack]
Float_t isoTrack_absIso[10]; //[nisoTrack]
Float_t isoTrack_dz[10]; //[nisoTrack]
Int_t isoTrack_pdgId[10]; //[nisoTrack]
Int_t isoTrack_mcMatchId[10]; //[nisoTrack]
Int_t nhighPtPFcands;
Float_t highPtPFcands_pt[9]; //[nhighPtPFcands]
Float_t highPtPFcands_eta[9]; //[nhighPtPFcands]
Float_t highPtPFcands_phi[9]; //[nhighPtPFcands]
Float_t highPtPFcands_mass[9]; //[nhighPtPFcands]
Float_t highPtPFcands_absIso[9]; //[nhighPtPFcands]
Float_t highPtPFcands_dz[9]; //[nhighPtPFcands]
Int_t highPtPFcands_pdgId[9]; //[nhighPtPFcands]
Int_t highPtPFcands_mcMatchId[9]; //[nhighPtPFcands]
Int_t nPFLep5LowMT;
Int_t nPFHad10LowMT;
Int_t ntau;
Float_t tau_pt[5]; //[ntau]
Float_t tau_eta[5]; //[ntau]
Float_t tau_phi[5]; //[ntau]
Float_t tau_mass[5]; //[ntau]
Int_t tau_charge[5]; //[ntau]
Float_t tau_dxy[5]; //[ntau]
Float_t tau_dz[5]; //[ntau]
Int_t tau_idCI3hit[5]; //[ntau]
Float_t tau_isoCI3hit[5]; //[ntau]
Int_t tau_mcMatchId[5]; //[ntau]
Int_t ngamma;
Float_t gamma_pt[7]; //[ngamma]
Float_t gamma_eta[7]; //[ngamma]
Float_t gamma_phi[7]; //[ngamma]
Float_t gamma_mass[7]; //[ngamma]
Int_t gamma_mcMatchId[7]; //[ngamma]
Float_t gamma_genIso04[7]; //[ngamma]
Float_t gamma_drMinParton[7]; //[ngamma]
Float_t gamma_chHadIso[7]; //[ngamma]
Float_t gamma_neuHadIso[7]; //[ngamma]
Float_t gamma_phIso[7]; //[ngamma]
Float_t gamma_sigmaIetaIeta[7]; //[ngamma]
Float_t gamma_r9[7]; //[ngamma]
Float_t gamma_hOverE[7]; //[ngamma]
Float_t gamma_hOverE015[7]; //[ngamma]
Int_t gamma_idCutBased[7]; //[ngamma]
Float_t gamma_mt2;
Int_t gamma_nJet30;
Int_t gamma_nJet40;
Int_t gamma_nJet30FailId;
Int_t gamma_nJet100FailId;
Int_t gamma_nBJet20;
Int_t gamma_nBJet20csv;
Int_t gamma_nBJet20mva;
Int_t gamma_nBJet25;
Int_t gamma_nBJet30;
Int_t gamma_nBJet40;
Float_t gamma_ht;
Float_t gamma_deltaPhiMin;
Float_t gamma_diffMetMht;
Float_t gamma_mht_pt;
Float_t gamma_mht_phi;
Float_t gamma_met_pt;
Float_t gamma_met_phi;
Int_t npfPhoton;
Float_t pfPhoton_pt[1]; //[npfPhoton]
Float_t pfPhoton_eta[1]; //[npfPhoton]
Float_t pfPhoton_phi[1]; //[npfPhoton]
Float_t zll_mt2;
Float_t zll_deltaPhiMin;
Float_t zll_diffMetMht;
Float_t zll_met_pt;
Float_t zll_met_phi;
Float_t zll_mht_pt;
Float_t zll_mht_phi;
Float_t zll_mass;
Float_t zll_pt;
Float_t zll_eta;
Float_t zll_phi;
Float_t zll_ht;
Float_t zll_mt2JECup;
Float_t zll_deltaPhiMinJECup;
Float_t zll_diffMetMhtJECup;
Float_t zll_met_ptJECup;
Float_t zll_met_phiJECup;
Float_t zll_mht_ptJECup;
Float_t zll_mht_phiJECup;
Float_t zll_htJECup;
Float_t zll_mt2JECdn;
Float_t zll_deltaPhiMinJECdn;
Float_t zll_diffMetMhtJECdn;
Float_t zll_met_ptJECdn;
Float_t zll_met_phiJECdn;
Float_t zll_mht_ptJECdn;
Float_t zll_mht_phiJECdn;
Float_t zll_htJECdn;
Float_t zllmt_mt2;
Float_t zllmt_deltaPhiMin;
Float_t zllmt_diffMetMht;
Float_t zllmt_met_pt;
Float_t zllmt_met_phi;
Float_t zllmt_mht_pt;
Float_t zllmt_mht_phi;
Float_t zllmt_ht;
Float_t zllmt_mt;
Float_t rl_mt2;
Float_t rl_deltaPhiMin;
Float_t rl_diffMetMht;
Float_t rl_met_pt;
Float_t rl_met_phi;
Float_t rl_mht_pt;
Float_t rl_mht_phi;
Float_t rl_mass;
Float_t rl_pt;
Float_t rl_eta;
Float_t rl_phi;
Float_t rl_ht;
Int_t njet;
Float_t jet_pt[50]; //[njet]
Float_t jet_eta[50]; //[njet]
Float_t jet_phi[50]; //[njet]
Float_t jet_mass[50]; //[njet]
Float_t jet_btagCSV[50]; //[njet]
Float_t jet_btagMVA[50]; //[njet]
Float_t jet_btagDeepCSV[50]; //[njet]
Float_t jet_chf[50]; //[njet]
Float_t jet_nhf[50]; //[njet]
Float_t jet_cemf[50]; //[njet]
Float_t jet_nemf[50]; //[njet]
Float_t jet_muf[50]; //[njet]
Float_t jet_rawPt[50]; //[njet]
Float_t jet_mcPt[50]; //[njet]
Int_t jet_mcFlavour[50]; //[njet]
Int_t jet_hadronFlavour[50]; //[njet]
Float_t jet_qgl[50]; //[njet]
Float_t jet_area[50]; //[njet]
Int_t jet_id[50]; //[njet]
Int_t jet_puId[50]; //[njet]
Int_t good_jet_idxs[18]; //[nJet30]
Int_t good_bjet_idxs[9]; //[nBJet20]
Int_t jet_closest_met_idx;
Float_t jet_closest_met_dphi;
Float_t weight_lepsf;
Float_t weight_lepsf_UP;
Float_t weight_lepsf_DN;
Float_t weight_lepsf_0l;
Float_t weight_lepsf_0l_UP;
Float_t weight_lepsf_0l_DN;
Float_t weight_btagsf;
Float_t weight_btagsf_heavy_UP;
Float_t weight_btagsf_light_UP;
Float_t weight_btagsf_heavy_DN;
Float_t weight_btagsf_light_DN;
Float_t weight_sigtrigsf;
Float_t weight_dileptrigsf;
Float_t weight_phottrigsf;
Float_t weight_pu;
Float_t weight_isr;
Float_t weight_isr_UP;
Float_t weight_isr_DN;
Float_t weight_scales_UP;
Float_t weight_scales_DN;
Float_t weight_pdfs_UP;
Float_t weight_pdfs_DN;
Float_t weight_toppt;
Float_t genRecoil_pt;
Float_t genTop_pt;
Float_t genTbar_pt;
Int_t genProd_pdgId;
Float_t weight_pol_L;
Float_t weight_pol_R;
Int_t nisrMatch;
Int_t ntracks;
Int_t nshorttracks;
Int_t nshorttracks_P;
Int_t nshorttracks_M;
Int_t nshorttracks_L;
Int_t nshorttrackcandidates;
Int_t nshorttrackcandidates_P;
Int_t nshorttrackcandidates_M;
Int_t nshorttrackcandidates_L;
Float_t track_pt[28]; //[ntracks]
Float_t track_ptErr[28]; //[ntracks]
Float_t track_eta[28]; //[ntracks]
Float_t track_phi[28]; //[ntracks]
Int_t track_charge[28]; //[ntracks]
Float_t track_dedxStrip[28]; //[ntracks]
Float_t track_dedxPixel[28]; //[ntracks]
Float_t track_nChi2[28]; //[ntracks]
Float_t track_ipSigXY[28]; //[ntracks]
Float_t track_dxy[28]; //[ntracks]
Float_t track_dxyErr[28]; //[ntracks]
Float_t track_dz[28]; //[ntracks]
Float_t track_dzErr[28]; //[ntracks]
Int_t track_isHighPurity[28]; //[ntracks]
Int_t track_recoveto[28]; //[ntracks]
Int_t track_DeadECAL[28]; //[ntracks]
Int_t track_DeadHCAL[28]; //[ntracks]
Int_t track_isshort[28]; //[ntracks]
Int_t track_iscandidate[28]; //[ntracks]
Int_t track_ispixelonly[28]; //[ntracks]
Int_t track_ismedium[28]; //[ntracks]
Int_t track_islong[28]; //[ntracks]
Int_t track_ispixelonlycandidate[28]; //[ntracks]
Int_t track_ismediumcandidate[28]; //[ntracks]
Int_t track_islongcandidate[28]; //[ntracks]
Int_t track_HitSignature[28]; //[ntracks]
Int_t track_nPixelHits[28]; //[ntracks]
Int_t track_nLostOuterHits[28]; //[ntracks]
Int_t track_nLostInnerPixelHits[28]; //[ntracks]
Int_t track_nLayersWithMeasurement[28]; //[ntracks]
Int_t track_nPixelLayersWithMeasurement[28]; //[ntracks]
Int_t track_nearestPF_id[28]; //[ntracks]
Float_t track_nearestPF_DR[28]; //[ntracks]
Float_t track_nearestPF_pt[28]; //[ntracks]
Float_t track_jetDR[28]; //[ntracks]
Float_t track_jetPt[28]; //[ntracks]
Float_t track_jetEta[28]; //[ntracks]
Float_t track_jetPhi[28]; //[ntracks]
Float_t track_chHIso0p3[28]; //[ntracks]
Float_t track_chHminiIso[28]; //[ntracks]
Float_t track_neuHIso0p3[28]; //[ntracks]
Float_t track_neuHminiIso[28]; //[ntracks]
Float_t track_phIso0p3[28]; //[ntracks]
Float_t track_phminiIso0p3[28]; //[ntracks]
Int_t track_isLepOverlap[28]; //[ntracks]
Float_t track_neuIso0p05[28]; //[ntracks]
Float_t track_neuRelIso0p05[28]; //[ntracks]
Float_t track_iso[28]; //[ntracks]
Float_t track_reliso[28]; //[ntracks]
Float_t track_isonomin[28]; //[ntracks]
Float_t track_relisonomin[28]; //[ntracks]
Float_t track_iso_uncorrected[28]; //[ntracks]
Float_t track_reliso_uncorrected[28]; //[ntracks]
Float_t track_iso_correction[28]; //[ntracks]
Float_t track_reliso_correction[28]; //[ntracks]
Float_t track_miniiso[28]; //[ntracks]
Float_t track_minireliso[28]; //[ntracks]
Float_t track_miniisonomin[28]; //[ntracks]
Float_t track_minirelisonomin[28]; //[ntracks]
Float_t track_miniiso_uncorrected[28]; //[ntracks]
Float_t track_minireliso_uncorrected[28]; //[ntracks]
Float_t track_miniiso_correction[28]; //[ntracks]
Float_t track_minireliso_correction[28]; //[ntracks]
Int_t track_isChargino[28]; //[ntracks]
Int_t track_genPdgId[28]; //[ntracks]
Float_t track_genMatchDR[28]; //[ntracks]
Int_t track_nCharginos;
// List of branches
TBranch *b_run; //!
TBranch *b_lumi; //!
TBranch *b_evt; //!
TBranch *b_isData; //!
TBranch *b_isGolden; //!
TBranch *b_evt_scale1fb; //!
TBranch *b_evt_xsec; //!
TBranch *b_evt_kfactor; //!
TBranch *b_evt_filter; //!
TBranch *b_evt_nEvts; //!
TBranch *b_evt_id; //!
TBranch *b_genWeight; //!
TBranch *b_puWeight; //!
TBranch *b_nVert; //!
TBranch *b_nTrueInt; //!
TBranch *b_rho; //!
TBranch *b_nJet30; //!
TBranch *b_nJet30JECup; //!
TBranch *b_nJet30JECdn; //!
TBranch *b_nJet40; //!
TBranch *b_nBJet20; //!
TBranch *b_nBJet20csv; //!
TBranch *b_nBJet20mva; //!
TBranch *b_nBJet20JECup; //!
TBranch *b_nBJet20JECdn; //!
TBranch *b_nBJet25; //!
TBranch *b_nBJet30; //!
TBranch *b_nBJet30csv; //!
TBranch *b_nBJet30mva; //!
TBranch *b_nBJet40; //!
TBranch *b_nJet30FailId; //!
TBranch *b_nJet100FailId; //!
TBranch *b_nJet20BadFastsim; //!
TBranch *b_nJet200MuFrac50DphiMet; //!
TBranch *b_nMuons10; //!
TBranch *b_nBadMuons20; //!
TBranch *b_nElectrons10; //!
TBranch *b_nLepLowMT; //!
TBranch *b_nTaus20; //!
TBranch *b_nGammas20; //!
TBranch *b_nPFCHCand3; //!
TBranch *b_deltaPhiMin; //!
TBranch *b_deltaPhiMin_genmet; //!
TBranch *b_diffMetMht; //!
TBranch *b_diffMetMht_genmet; //!
TBranch *b_deltaPhiMinJECup; //!
TBranch *b_deltaPhiMinJECdn; //!
TBranch *b_diffMetMhtJECup; //!
TBranch *b_diffMetMhtJECdn; //!
TBranch *b_minMTBMet; //!
TBranch *b_zll_minMTBMet; //!
TBranch *b_gamma_minMTBMet; //!
TBranch *b_ht; //!
TBranch *b_htJECup; //!
TBranch *b_htJECdn; //!
TBranch *b_mt2; //!
TBranch *b_mt2JECup; //!
TBranch *b_mt2JECdn; //!
TBranch *b_mt2_gen; //!
TBranch *b_mt2_genmet; //!
TBranch *b_jet1_pt; //!
TBranch *b_jet2_pt; //!
TBranch *b_jet1_ptJECup; //!
TBranch *b_jet2_ptJECup; //!
TBranch *b_jet1_ptJECdn; //!
TBranch *b_jet2_ptJECdn; //!
TBranch *b_jet_failFSveto; //!
TBranch *b_gamma_jet1_pt; //!
TBranch *b_gamma_jet2_pt; //!
TBranch *b_pseudoJet1_pt; //!
TBranch *b_pseudoJet1_eta; //!
TBranch *b_pseudoJet1_phi; //!
TBranch *b_pseudoJet1_mass; //!
TBranch *b_pseudoJet2_pt; //!
TBranch *b_pseudoJet2_eta; //!
TBranch *b_pseudoJet2_phi; //!
TBranch *b_pseudoJet2_mass; //!
TBranch *b_pseudoJet1JECup_pt; //!
TBranch *b_pseudoJet1JECup_eta; //!
TBranch *b_pseudoJet1JECup_phi; //!
TBranch *b_pseudoJet1JECup_mass; //!
TBranch *b_pseudoJet2JECup_pt; //!
TBranch *b_pseudoJet2JECup_eta; //!
TBranch *b_pseudoJet2JECup_phi; //!
TBranch *b_pseudoJet2JECup_mass; //!
TBranch *b_pseudoJet1JECdn_pt; //!
TBranch *b_pseudoJet1JECdn_eta; //!
TBranch *b_pseudoJet1JECdn_phi; //!
TBranch *b_pseudoJet1JECdn_mass; //!
TBranch *b_pseudoJet2JECdn_pt; //!
TBranch *b_pseudoJet2JECdn_eta; //!
TBranch *b_pseudoJet2JECdn_phi; //!
TBranch *b_pseudoJet2JECdn_mass; //!
TBranch *b_zll_pseudoJet1_pt; //!
TBranch *b_zll_pseudoJet1_eta; //!
TBranch *b_zll_pseudoJet1_phi; //!
TBranch *b_zll_pseudoJet1_mass; //!
TBranch *b_zll_pseudoJet2_pt; //!
TBranch *b_zll_pseudoJet2_eta; //!
TBranch *b_zll_pseudoJet2_phi; //!
TBranch *b_zll_pseudoJet2_mass; //!
TBranch *b_zll_pseudoJet1JECup_pt; //!
TBranch *b_zll_pseudoJet1JECup_eta; //!
TBranch *b_zll_pseudoJet1JECup_phi; //!
TBranch *b_zll_pseudoJet1JECup_mass; //!
TBranch *b_zll_pseudoJet2JECup_pt; //!
TBranch *b_zll_pseudoJet2JECup_eta; //!
TBranch *b_zll_pseudoJet2JECup_phi; //!
TBranch *b_zll_pseudoJet2JECup_mass; //!
TBranch *b_zll_pseudoJet1JECdn_pt; //!
TBranch *b_zll_pseudoJet1JECdn_eta; //!
TBranch *b_zll_pseudoJet1JECdn_phi; //!
TBranch *b_zll_pseudoJet1JECdn_mass; //!
TBranch *b_zll_pseudoJet2JECdn_pt; //!
TBranch *b_zll_pseudoJet2JECdn_eta; //!
TBranch *b_zll_pseudoJet2JECdn_phi; //!
TBranch *b_zll_pseudoJet2JECdn_mass; //!
TBranch *b_gamma_pseudoJet1_pt; //!
TBranch *b_gamma_pseudoJet1_eta; //!
TBranch *b_gamma_pseudoJet1_phi; //!
TBranch *b_gamma_pseudoJet1_mass; //!
TBranch *b_gamma_pseudoJet2_pt; //!
TBranch *b_gamma_pseudoJet2_eta; //!
TBranch *b_gamma_pseudoJet2_phi; //!
TBranch *b_gamma_pseudoJet2_mass; //!
TBranch *b_zllmt_pseudoJet1_pt; //!
TBranch *b_zllmt_pseudoJet1_eta; //!
TBranch *b_zllmt_pseudoJet1_phi; //!
TBranch *b_zllmt_pseudoJet1_mass; //!
TBranch *b_zllmt_pseudoJet2_pt; //!
TBranch *b_zllmt_pseudoJet2_eta; //!
TBranch *b_zllmt_pseudoJet2_phi; //!
TBranch *b_zllmt_pseudoJet2_mass; //!
TBranch *b_rl_pseudoJet1_pt; //!
TBranch *b_rl_pseudoJet1_eta; //!
TBranch *b_rl_pseudoJet1_phi; //!
TBranch *b_rl_pseudoJet1_mass; //!
TBranch *b_rl_pseudoJet2_pt; //!
TBranch *b_rl_pseudoJet2_eta; //!
TBranch *b_rl_pseudoJet2_phi; //!
TBranch *b_rl_pseudoJet2_mass; //!
TBranch *b_gen_pseudoJet1_pt; //!
TBranch *b_gen_pseudoJet1_eta; //!
TBranch *b_gen_pseudoJet1_phi; //!
TBranch *b_gen_pseudoJet1_mass; //!
TBranch *b_gen_pseudoJet2_pt; //!
TBranch *b_gen_pseudoJet2_eta; //!
TBranch *b_gen_pseudoJet2_phi; //!
TBranch *b_gen_pseudoJet2_mass; //!
TBranch *b_mht_pt; //!
TBranch *b_mht_phi; //!
TBranch *b_mht_ptJECup; //!
TBranch *b_mht_phiJECup; //!
TBranch *b_mht_ptJECdn; //!
TBranch *b_mht_phiJECdn; //!
TBranch *b_met_pt; //!
TBranch *b_met_phi; //!
TBranch *b_met_old2017_pt; //!
TBranch *b_met_old2017_phi; //!
TBranch *b_met_ptJECup; //!
TBranch *b_met_phiJECup; //!
TBranch *b_met_ptJECdn; //!
TBranch *b_met_phiJECdn; //!
TBranch *b_met_rawPt; //!
TBranch *b_met_rawPhi; //!
TBranch *b_met_caloPt; //!
TBranch *b_met_caloPhi; //!
TBranch *b_met_trkPt; //!
TBranch *b_met_trkPhi; //!
TBranch *b_met_genPt; //!
TBranch *b_met_genPhi; //!
TBranch *b_met_miniaodPt; //!
TBranch *b_met_miniaodPhi; //!
TBranch *b_Flag_EcalDeadCellTriggerPrimitiveFilter; //!
TBranch *b_Flag_trkPOG_manystripclus53X; //!
TBranch *b_Flag_ecalLaserCorrFilter; //!
TBranch *b_Flag_trkPOG_toomanystripclus53X; //!
TBranch *b_Flag_hcalLaserEventFilter; //!
TBranch *b_Flag_trkPOG_logErrorTooManyClusters; //!
TBranch *b_Flag_trkPOGFilters; //!
TBranch *b_Flag_trackingFailureFilter; //!
TBranch *b_Flag_CSCTightHalo2015Filter; //!
TBranch *b_Flag_CSCTightHaloFilter; //!
TBranch *b_Flag_globalTightHalo2016Filter; //!
TBranch *b_Flag_globalSuperTightHalo2016Filter; //!
TBranch *b_Flag_HBHENoiseFilter; //!
TBranch *b_Flag_HBHENoiseIsoFilter; //!
TBranch *b_Flag_goodVertices; //!
TBranch *b_Flag_eeBadScFilter; //!
TBranch *b_Flag_ecalBadCalibFilter; //!
TBranch *b_Flag_badMuonFilter; //!
TBranch *b_Flag_badMuonFilterV2; //!
TBranch *b_Flag_badMuons; //!
TBranch *b_Flag_duplicateMuons; //!
TBranch *b_Flag_noBadMuons; //!
TBranch *b_Flag_badChargedCandidateFilter; //!
TBranch *b_Flag_badChargedHadronFilterV2; //!
TBranch *b_Flag_METFilters; //!
TBranch *b_HLT_PFHT1050; //!
TBranch *b_HLT_PFHT900; //!
TBranch *b_HLT_PFHT500_PFMET100_PFMHT100; //!
TBranch *b_HLT_PFHT700_PFMET85_PFMHT85; //!
TBranch *b_HLT_PFHT800_PFMET75_PFMHT75; //!
TBranch *b_HLT_PFMET170; //!
TBranch *b_HLT_PFHT300_PFMET100; //!
TBranch *b_HLT_PFHT300_PFMET110; //!
TBranch *b_HLT_PFHT350_PFMET100; //!
TBranch *b_HLT_PFHT350_PFMET120; //!
TBranch *b_HLT_PFMETNoMu90_PFMHTNoMu90; //!
TBranch *b_HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90; //!
TBranch *b_HLT_PFMETNoMu100_PFMHTNoMu100; //!
TBranch *b_HLT_PFMETNoMu110_PFMHTNoMu110; //!
TBranch *b_HLT_PFMETNoMu120_PFMHTNoMu120; //!
TBranch *b_HLT_PFMETNoMu130_PFMHTNoMu130; //!
TBranch *b_HLT_PFMETNoMu140_PFMHTNoMu140; //!
TBranch *b_HLT_PFMETNoMu120_PFMHTNoMu120_PFHT60; //!
TBranch *b_HLT_PFMET90_PFMHT90; //!
TBranch *b_HLT_PFMET100_PFMHT100; //!
TBranch *b_HLT_PFMET110_PFMHT110; //!
TBranch *b_HLT_PFMET120_PFMHT120; //!
TBranch *b_HLT_PFMET130_PFMHT130; //!
TBranch *b_HLT_PFMET140_PFMHT140; //!
TBranch *b_HLT_PFMET100_PFMHT100_PFHT60; //!
TBranch *b_HLT_PFMET120_PFMHT120_PFHT60; //!
TBranch *b_HLT_PFJet450; //!
TBranch *b_HLT_PFJet500; //!
TBranch *b_HLT_ECALHT800; //!
TBranch *b_HLT_SingleMu; //!
TBranch *b_HLT_SingleMu_NonIso; //!
TBranch *b_HLT_SingleEl; //!
TBranch *b_HLT_SingleEl_NonIso; //!
TBranch *b_HLT_DoubleEl; //!
TBranch *b_HLT_DoubleEl33; //!
TBranch *b_HLT_MuX_Ele12; //!
TBranch *b_HLT_Mu8_EleX; //!
TBranch *b_HLT_Mu12_EleX; //!
TBranch *b_HLT_Mu30_Ele30_NonIso; //!
TBranch *b_HLT_Mu33_Ele33_NonIso; //!
TBranch *b_HLT_Mu37_Ele27_NonIso; //!
TBranch *b_HLT_Mu27_Ele37_NonIso; //!
TBranch *b_HLT_DoubleMu; //!
TBranch *b_HLT_DoubleMu_NonIso; //!
TBranch *b_HLT_Photon120; //!
TBranch *b_HLT_Photon200; //!
TBranch *b_HLT_Photon175_Prescale; //!
TBranch *b_HLT_Photon165_HE10; //!
TBranch *b_HLT_Photon250_NoHE; //!
TBranch *b_HLT_PFHT180_Prescale; //!
TBranch *b_HLT_PFHT250_Prescale; //!
TBranch *b_HLT_PFHT370_Prescale; //!
TBranch *b_HLT_PFHT430_Prescale; //!
TBranch *b_HLT_PFHT510_Prescale; //!
TBranch *b_HLT_PFHT590_Prescale; //!
TBranch *b_HLT_PFHT680_Prescale; //!
TBranch *b_HLT_PFHT780_Prescale; //!
TBranch *b_HLT_PFHT890_Prescale; //!
TBranch *b_HLT_PFHT125_Prescale; //!
TBranch *b_HLT_PFHT200_Prescale; //!
TBranch *b_HLT_PFHT300_Prescale; //!
TBranch *b_HLT_PFHT350_Prescale; //!
TBranch *b_HLT_PFHT475_Prescale; //!
TBranch *b_HLT_PFHT600_Prescale; //!
TBranch *b_HLT_DiCentralPFJet70_PFMET120; //!
TBranch *b_HLT_DiCentralPFJet55_PFMET110; //!
TBranch *b_nlep; //!
TBranch *b_lep_pt; //!
TBranch *b_lep_eta; //!
TBranch *b_lep_phi; //!
TBranch *b_lep_mass; //!
TBranch *b_lep_charge; //!
TBranch *b_lep_pdgId; //!
TBranch *b_lep_dxy; //!
TBranch *b_lep_dz; //!
TBranch *b_lep_tightId; //!
TBranch *b_lep_heepId; //!
TBranch *b_lep_highPtFit_pt; //!
TBranch *b_lep_highPtFit_eta; //!
TBranch *b_lep_isPF; //!
// TBranch *b_HLT_PFHT125_Prescale; //!
// TBranch *b_HLT_PFHT200_Prescale; //!
// TBranch *b_HLT_PFHT300_Prescale; //!
// TBranch *b_HLT_PFHT350_Prescale; //!
// TBranch *b_HLT_PFHT475_Prescale; //!
// TBranch *b_HLT_PFHT600_Prescale; //!
// TBranch *b_HLT_PFHT125_Prescale; //!
// TBranch *b_HLT_PFHT200_Prescale; //!
// TBranch *b_HLT_PFHT300_Prescale; //!
// TBranch *b_HLT_PFHT350_Prescale; //!
// TBranch *b_HLT_PFHT475_Prescale; //!
// TBranch *b_HLT_PFHT600_Prescale; //!
TBranch *b_lep_highPtFit_phi; //!
TBranch *b_lep_relIso03; //!
TBranch *b_lep_relIso04; //!
TBranch *b_lep_miniRelIso; //!
TBranch *b_lep_mcMatchId; //!
TBranch *b_lep_lostHits; //!
TBranch *b_lep_convVeto; //!
TBranch *b_lep_tightCharge; //!
TBranch *b_nisoTrack; //!
TBranch *b_isoTrack_pt; //!
TBranch *b_isoTrack_eta; //!
TBranch *b_isoTrack_phi; //!
TBranch *b_isoTrack_mass; //!
TBranch *b_isoTrack_absIso; //!
TBranch *b_isoTrack_dz; //!
TBranch *b_isoTrack_pdgId; //!
TBranch *b_isoTrack_mcMatchId; //!
TBranch *b_nhighPtPFcands; //!
TBranch *b_highPtPFcands_pt; //!
TBranch *b_highPtPFcands_eta; //!
TBranch *b_highPtPFcands_phi; //!
TBranch *b_highPtPFcands_mass; //!
TBranch *b_highPtPFcands_absIso; //!
TBranch *b_highPtPFcands_dz; //!
TBranch *b_highPtPFcands_pdgId; //!
TBranch *b_highPtPFcands_mcMatchId; //!
TBranch *b_nPFLep5LowMT; //!
TBranch *b_nPFHad10LowMT; //!
TBranch *b_ntau; //!
TBranch *b_tau_pt; //!
TBranch *b_tau_eta; //!
TBranch *b_tau_phi; //!
TBranch *b_tau_mass; //!
TBranch *b_tau_charge; //!
TBranch *b_tau_dxy; //!
TBranch *b_tau_dz; //!
TBranch *b_tau_idCI3hit; //!
TBranch *b_tau_isoCI3hit; //!
TBranch *b_tau_mcMatchId; //!
TBranch *b_ngamma; //!
TBranch *b_gamma_pt; //!
TBranch *b_gamma_eta; //!
TBranch *b_gamma_phi; //!
TBranch *b_gamma_mass; //!
TBranch *b_gamma_mcMatchId; //!
TBranch *b_gamma_genIso04; //!
TBranch *b_gamma_drMinParton; //!
TBranch *b_gamma_chHadIso; //!
TBranch *b_gamma_neuHadIso; //!
TBranch *b_gamma_phIso; //!
TBranch *b_gamma_sigmaIetaIeta; //!
TBranch *b_gamma_r9; //!
TBranch *b_gamma_hOverE; //!
TBranch *b_gamma_hOverE015; //!
TBranch *b_gamma_idCutBased; //!
TBranch *b_gamma_mt2; //!
TBranch *b_gamma_nJet30; //!
TBranch *b_gamma_nJet40; //!
TBranch *b_gamma_nJet30FailId; //!
TBranch *b_gamma_nJet100FailId; //!
TBranch *b_gamma_nBJet20; //!
TBranch *b_gamma_nBJet20csv; //!
TBranch *b_gamma_nBJet20mva; //!
TBranch *b_gamma_nBJet25; //!
TBranch *b_gamma_nBJet30; //!
TBranch *b_gamma_nBJet40; //!
TBranch *b_gamma_ht; //!
TBranch *b_gamma_deltaPhiMin; //!
TBranch *b_gamma_diffMetMht; //!
TBranch *b_gamma_mht_pt; //!
TBranch *b_gamma_mht_phi; //!
TBranch *b_gamma_met_pt; //!
TBranch *b_gamma_met_phi; //!
TBranch *b_npfPhoton; //!
TBranch *b_pfPhoton_pt; //!
TBranch *b_pfPhoton_eta; //!
TBranch *b_pfPhoton_phi; //!
TBranch *b_zll_mt2; //!
TBranch *b_zll_deltaPhiMin; //!
TBranch *b_zll_diffMetMht; //!
TBranch *b_zll_met_pt; //!
TBranch *b_zll_met_phi; //!
TBranch *b_zll_mht_pt; //!
TBranch *b_zll_mht_phi; //!
TBranch *b_zll_mass; //!
TBranch *b_zll_pt; //!
TBranch *b_zll_eta; //!
TBranch *b_zll_phi; //!
TBranch *b_zll_ht; //!
TBranch *b_zll_mt2JECup; //!
TBranch *b_zll_deltaPhiMinJECup; //!
TBranch *b_zll_diffMetMhtJECup; //!
TBranch *b_zll_met_ptJECup; //!
TBranch *b_zll_met_phiJECup; //!
TBranch *b_zll_mht_ptJECup; //!
TBranch *b_zll_mht_phiJECup; //!
TBranch *b_zll_htJECup; //!
TBranch *b_zll_mt2JECdn; //!
TBranch *b_zll_deltaPhiMinJECdn; //!
TBranch *b_zll_diffMetMhtJECdn; //!
TBranch *b_zll_met_ptJECdn; //!
TBranch *b_zll_met_phiJECdn; //!
TBranch *b_zll_mht_ptJECdn; //!
TBranch *b_zll_mht_phiJECdn; //!
TBranch *b_zll_htJECdn; //!
TBranch *b_zllmt_mt2; //!
TBranch *b_zllmt_deltaPhiMin; //!
TBranch *b_zllmt_diffMetMht; //!
TBranch *b_zllmt_met_pt; //!
TBranch *b_zllmt_met_phi; //!
TBranch *b_zllmt_mht_pt; //!
TBranch *b_zllmt_mht_phi; //!
TBranch *b_zllmt_ht; //!
TBranch *b_zllmt_mt; //!
TBranch *b_rl_mt2; //!
TBranch *b_rl_deltaPhiMin; //!
TBranch *b_rl_diffMetMht; //!
TBranch *b_rl_met_pt; //!
TBranch *b_rl_met_phi; //!
TBranch *b_rl_mht_pt; //!
TBranch *b_rl_mht_phi; //!
TBranch *b_rl_mass; //!
TBranch *b_rl_pt; //!
TBranch *b_rl_eta; //!
TBranch *b_rl_phi; //!
TBranch *b_rl_ht; //!
TBranch *b_njet; //!
TBranch *b_jet_pt; //!
TBranch *b_jet_eta; //!
TBranch *b_jet_phi; //!
TBranch *b_jet_mass; //!
TBranch *b_jet_btagCSV; //!
TBranch *b_jet_btagMVA; //!
TBranch *b_jet_btagDeepCSV; //!
TBranch *b_jet_chf; //!
TBranch *b_jet_nhf; //!
TBranch *b_jet_cemf; //!
TBranch *b_jet_nemf; //!
TBranch *b_jet_muf; //!
TBranch *b_jet_rawPt; //!
TBranch *b_jet_mcPt; //!
TBranch *b_jet_mcFlavour; //!
TBranch *b_jet_hadronFlavour; //!