-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRA2bNtupleV20.h
2281 lines (2259 loc) · 157 KB
/
RA2bNtupleV20.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
// Fri Jan 27 14:42:00 2023 by ROOT version 6.15/01
// from TTree PreSelection/PreSelection
// found on file: /Users/whitbeck/Downloads/Summer20UL18_TTJets_Inclusive_10_278_RA2AnalysisTree.root
//////////////////////////////////////////////////////////
#ifndef RA2bNtupleV20_h
#define RA2bNtupleV20_h
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
// Header file for the classes stored in the TTree if any.
#include "Math/GenVector/PtEtaPhiE4D.h"
#include "vector"
//#include "TLorentzVector.h"
#include <map>
class RA2bNtupleV20 {
public :
TTree *fChain; //!pointer to the analyzed TTree or TChain
Int_t fCurrent; //!current Tree number in a TChain
//std::map<string,vector<Math::PtEtaPhiE4D> > branch_map_vector_tlorentzvector;
std::map<string,UInt_t* > branch_map_UInt_t;
std::map<string,ULong64_t* > branch_map_ULong64_t;
std::map<string,Int_t* > branch_map_Int_t;
std::map<string,Bool_t* > branch_map_Bool_t;
std::map<string,Float_t* > branch_map_Float_t;
std::map<string,vector<int>* > branch_map_vector_int;
std::map<string,vector<float>* > branch_map_vector_float;
std::map<string,vector<bool>* > branch_map_vector_bool;
// Fixed size dimensions of array or collections stored in the TTree if any.
static constexpr Int_t kMaxElectrons = 3;
static constexpr Int_t kMaxGenElectrons = 2;
static constexpr Int_t kMaxGenJets = 24;
static constexpr Int_t kMaxGenJetsAK15 = 19;
static constexpr Int_t kMaxGenJetsAK8 = 45;
static constexpr Int_t kMaxGenMuons = 2;
static constexpr Int_t kMaxGenParticles = 12;
static constexpr Int_t kMaxGenTaus = 2;
static constexpr Int_t kMaxJets = 38;
static constexpr Int_t kMaxJetsAK15 = 12;
static constexpr Int_t kMaxJetsAK15_subjets = 10;
static constexpr Int_t kMaxJetsAK8 = 22;
static constexpr Int_t kMaxJetsAK8_subjets = 36;
static constexpr Int_t kMaxJetsConstituents = 527;
static constexpr Int_t kMaxMuons = 4;
static constexpr Int_t kMaxPhotons = 3;
static constexpr Int_t kMaxTAPElectronTracks = 5;
static constexpr Int_t kMaxTAPMuonTracks = 4;
static constexpr Int_t kMaxTAPPionTracks = 36;
// Declaration of leaf types
UInt_t RunNum;
UInt_t LumiBlockNum;
ULong64_t EvtNum;
Int_t BadChargedCandidateFilter;
Bool_t BadPFMuonDzFilter;
Int_t BadPFMuonFilter;
Int_t BTagsDeepCSV;
Int_t BTagsDeepCSVJECdown;
Int_t BTagsDeepCSVJECup;
Int_t BTagsDeepCSVJERdown;
Int_t BTagsDeepCSVJERup;
Float_t CaloMET;
Float_t CaloMETPhi;
Float_t CrossSection;
Int_t CSCTightHaloFilter;
Float_t DeltaPhi1;
Float_t DeltaPhi1_AK8;
Float_t DeltaPhi1JECdown;
Float_t DeltaPhi1JECup;
Float_t DeltaPhi1JERdown;
Float_t DeltaPhi1JERup;
Float_t DeltaPhi2;
Float_t DeltaPhi2_AK8;
Float_t DeltaPhi2JECdown;
Float_t DeltaPhi2JECup;
Float_t DeltaPhi2JERdown;
Float_t DeltaPhi2JERup;
Float_t DeltaPhi3;
Float_t DeltaPhi3JECdown;
Float_t DeltaPhi3JECup;
Float_t DeltaPhi3JERdown;
Float_t DeltaPhi3JERup;
Float_t DeltaPhi4;
Float_t DeltaPhi4JECdown;
Float_t DeltaPhi4JECup;
Float_t DeltaPhi4JERdown;
Float_t DeltaPhi4JERup;
Float_t DeltaPhiMin_AK8;
Int_t ecalBadCalibFilter;
Int_t EcalDeadCellBoundaryEnergyFilter;
Int_t EcalDeadCellTriggerPrimitiveFilter;
Int_t eeBadScFilter;
Int_t Electrons_;
Float_t Electrons_fCoordinates_fPt[kMaxElectrons]; //[Electrons_]
Float_t Electrons_fCoordinates_fEta[kMaxElectrons]; //[Electrons_]
Float_t Electrons_fCoordinates_fPhi[kMaxElectrons]; //[Electrons_]
Float_t Electrons_fCoordinates_fE[kMaxElectrons]; //[Electrons_]
vector<int> *Electrons_charge;
vector<float> *Electrons_iso;
vector<bool> *Electrons_mediumID;
vector<float> *Electrons_MTW;
vector<bool> *Electrons_passIso;
vector<bool> *Electrons_tightID;
Float_t fixedGridRhoFastjetAll;
Int_t GenElectrons_;
Float_t GenElectrons_fCoordinates_fPt[kMaxGenElectrons]; //[GenElectrons_]
Float_t GenElectrons_fCoordinates_fEta[kMaxGenElectrons]; //[GenElectrons_]
Float_t GenElectrons_fCoordinates_fPhi[kMaxGenElectrons]; //[GenElectrons_]
Float_t GenElectrons_fCoordinates_fE[kMaxGenElectrons]; //[GenElectrons_]
Float_t GenHT;
Int_t GenJets_;
Float_t GenJets_fCoordinates_fPt[kMaxGenJets]; //[GenJets_]
Float_t GenJets_fCoordinates_fEta[kMaxGenJets]; //[GenJets_]
Float_t GenJets_fCoordinates_fPhi[kMaxGenJets]; //[GenJets_]
Float_t GenJets_fCoordinates_fE[kMaxGenJets]; //[GenJets_]
Int_t GenJetsAK15_;
Float_t GenJetsAK15_fCoordinates_fPt[kMaxGenJetsAK15]; //[GenJetsAK15_]
Float_t GenJetsAK15_fCoordinates_fEta[kMaxGenJetsAK15]; //[GenJetsAK15_]
Float_t GenJetsAK15_fCoordinates_fPhi[kMaxGenJetsAK15]; //[GenJetsAK15_]
Float_t GenJetsAK15_fCoordinates_fE[kMaxGenJetsAK15]; //[GenJetsAK15_]
Int_t GenJetsAK8_;
Float_t GenJetsAK8_fCoordinates_fPt[kMaxGenJetsAK8]; //[GenJetsAK8_]
Float_t GenJetsAK8_fCoordinates_fEta[kMaxGenJetsAK8]; //[GenJetsAK8_]
Float_t GenJetsAK8_fCoordinates_fPhi[kMaxGenJetsAK8]; //[GenJetsAK8_]
Float_t GenJetsAK8_fCoordinates_fE[kMaxGenJetsAK8]; //[GenJetsAK8_]
vector<int> *GenJetsAK8_multiplicity;
vector<float> *GenJetsAK8_softDropMass;
Float_t GenMET;
Float_t GenMETPhi;
Float_t GenMHT;
Float_t GenMHTPhi;
Float_t GenMT2_AK8;
Int_t GenMuons_;
Float_t GenMuons_fCoordinates_fPt[kMaxGenMuons]; //[GenMuons_]
Float_t GenMuons_fCoordinates_fEta[kMaxGenMuons]; //[GenMuons_]
Float_t GenMuons_fCoordinates_fPhi[kMaxGenMuons]; //[GenMuons_]
Float_t GenMuons_fCoordinates_fE[kMaxGenMuons]; //[GenMuons_]
Int_t GenParticles_;
Float_t GenParticles_fCoordinates_fPt[kMaxGenParticles]; //[GenParticles_]
Float_t GenParticles_fCoordinates_fEta[kMaxGenParticles]; //[GenParticles_]
Float_t GenParticles_fCoordinates_fPhi[kMaxGenParticles]; //[GenParticles_]
Float_t GenParticles_fCoordinates_fE[kMaxGenParticles]; //[GenParticles_]
vector<int> *GenParticles_Charge;
vector<int> *GenParticles_ParentId;
vector<int> *GenParticles_ParentIdx;
vector<int> *GenParticles_PdgId;
vector<int> *GenParticles_Status;
Int_t GenTaus_;
Float_t GenTaus_fCoordinates_fPt[kMaxGenTaus]; //[GenTaus_]
Float_t GenTaus_fCoordinates_fEta[kMaxGenTaus]; //[GenTaus_]
Float_t GenTaus_fCoordinates_fPhi[kMaxGenTaus]; //[GenTaus_]
Float_t GenTaus_fCoordinates_fE[kMaxGenTaus]; //[GenTaus_]
vector<bool> *GenTaus_had;
Int_t globalSuperTightHalo2016Filter;
Int_t globalTightHalo2016Filter;
Bool_t hasGenPromptPhoton;
Int_t HBHEIsoNoiseFilter;
Int_t HBHENoiseFilter;
Int_t hfNoisyHitsFilter;
Float_t HT;
Float_t HT5;
Float_t HT5JECdown;
Float_t HT5JECup;
Float_t HT5JERdown;
Float_t HT5JERup;
Float_t HTJECdown;
Float_t HTJECup;
Float_t HTJERdown;
Float_t HTJERup;
Int_t isoElectronTracks;
Int_t isoMuonTracks;
Int_t isoPionTracks;
Bool_t JetID;
Bool_t JetIDAK15;
Bool_t JetIDAK8;
Bool_t JetIDAK8JECdown;
Bool_t JetIDAK8JECup;
Bool_t JetIDAK8JERdown;
Bool_t JetIDAK8JERup;
Bool_t JetIDJECdown;
Bool_t JetIDJECup;
Bool_t JetIDJERdown;
Bool_t JetIDJERup;
Int_t Jets_;
Float_t Jets_fCoordinates_fPt[kMaxJets]; //[Jets_]
Float_t Jets_fCoordinates_fEta[kMaxJets]; //[Jets_]
Float_t Jets_fCoordinates_fPhi[kMaxJets]; //[Jets_]
Float_t Jets_fCoordinates_fE[kMaxJets]; //[Jets_]
vector<float> *Jets_axismajor;
vector<float> *Jets_axisminor;
vector<float> *Jets_bDiscriminatorCSV;
vector<float> *Jets_bJetTagDeepCSVBvsAll;
vector<float> *Jets_bJetTagDeepCSVprobb;
vector<float> *Jets_bJetTagDeepCSVprobbb;
vector<float> *Jets_bJetTagDeepCSVprobc;
vector<float> *Jets_bJetTagDeepCSVprobudsg;
vector<float> *Jets_bJetTagDeepFlavourprobb;
vector<float> *Jets_bJetTagDeepFlavourprobbb;
vector<float> *Jets_bJetTagDeepFlavourprobc;
vector<float> *Jets_bJetTagDeepFlavourprobg;
vector<float> *Jets_bJetTagDeepFlavourproblepb;
vector<float> *Jets_bJetTagDeepFlavourprobuds;
vector<float> *Jets_chargedEmEnergyFraction;
vector<float> *Jets_chargedHadronEnergyFraction;
vector<int> *Jets_chargedHadronMultiplicity;
vector<int> *Jets_chargedMultiplicity;
vector<float> *Jets_electronEnergyFraction;
vector<int> *Jets_electronMultiplicity;
vector<int> *Jets_hadronFlavor;
vector<float> *Jets_hfEMEnergyFraction;
vector<float> *Jets_hfHadronEnergyFraction;
vector<bool> *Jets_HTMask;
vector<bool> *Jets_ID;
vector<float> *Jets_jecFactor;
vector<float> *Jets_jecUnc;
vector<float> *Jets_jerFactor;
vector<float> *Jets_jerFactorDown;
vector<float> *Jets_jerFactorUp;
vector<bool> *Jets_LeptonMask;
vector<bool> *Jets_MHTMask;
vector<int> *Jets_multiplicity;
vector<float> *Jets_muonEnergyFraction;
vector<int> *Jets_muonMultiplicity;
vector<float> *Jets_neutralEmEnergyFraction;
vector<float> *Jets_neutralHadronEnergyFraction;
vector<int> *Jets_neutralHadronMultiplicity;
vector<int> *Jets_neutralMultiplicity;
vector<int> *Jets_origIndex;
vector<int> *Jets_partonFlavor;
vector<float> *Jets_photonEnergyFraction;
vector<int> *Jets_photonMultiplicity;
vector<float> *Jets_pileupId;
vector<float> *Jets_ptD;
vector<float> *Jets_qgLikelihood;
Int_t JetsAK15_;
Float_t JetsAK15_fCoordinates_fPt[kMaxJetsAK15]; //[JetsAK15_]
Float_t JetsAK15_fCoordinates_fEta[kMaxJetsAK15]; //[JetsAK15_]
Float_t JetsAK15_fCoordinates_fPhi[kMaxJetsAK15]; //[JetsAK15_]
Float_t JetsAK15_fCoordinates_fE[kMaxJetsAK15]; //[JetsAK15_]
vector<float> *JetsAK15_axismajor;
vector<float> *JetsAK15_axisminor;
vector<float> *JetsAK15_chargedEmEnergyFraction;
vector<float> *JetsAK15_chargedHadronEnergyFraction;
vector<int> *JetsAK15_chargedHadronMultiplicity;
vector<int> *JetsAK15_chargedMultiplicity;
vector<int> *JetsAK15_constituentsIndex;
vector<int> *JetsAK15_constituentsIndexCounts;
vector<float> *JetsAK15_DeepMassDecorrelTagbbvsLight;
vector<float> *JetsAK15_DeepMassDecorrelTagHbbvsQCD;
vector<float> *JetsAK15_DeepMassDecorrelTagTvsQCD;
vector<float> *JetsAK15_DeepMassDecorrelTagWvsQCD;
vector<float> *JetsAK15_DeepMassDecorrelTagZbbvsQCD;
vector<float> *JetsAK15_DeepMassDecorrelTagZHbbvsQCD;
vector<float> *JetsAK15_DeepMassDecorrelTagZvsQCD;
vector<float> *JetsAK15_DeepTagHbbvsQCD;
vector<float> *JetsAK15_DeepTagTvsQCD;
vector<float> *JetsAK15_DeepTagWvsQCD;
vector<float> *JetsAK15_DeepTagZbbvsQCD;
vector<float> *JetsAK15_DeepTagZvsQCD;
vector<float> *JetsAK15_doubleBDiscriminator;
vector<float> *JetsAK15_ecfC2b1;
vector<float> *JetsAK15_ecfC2b2;
vector<float> *JetsAK15_ecfD2b1;
vector<float> *JetsAK15_ecfD2b2;
vector<float> *JetsAK15_ecfM2b1;
vector<float> *JetsAK15_ecfM2b2;
vector<float> *JetsAK15_ecfN2b1;
vector<float> *JetsAK15_ecfN2b2;
vector<float> *JetsAK15_electronEnergyFraction;
vector<int> *JetsAK15_electronMultiplicity;
vector<float> *JetsAK15_girth;
vector<int> *JetsAK15_hadronFlavor;
vector<float> *JetsAK15_hfEMEnergyFraction;
vector<float> *JetsAK15_hfHadronEnergyFraction;
vector<bool> *JetsAK15_ID;
vector<float> *JetsAK15_jecFactor;
vector<int> *JetsAK15_multiplicity;
vector<float> *JetsAK15_muonEnergyFraction;
vector<int> *JetsAK15_muonMultiplicity;
vector<float> *JetsAK15_neutralEmEnergyFraction;
vector<float> *JetsAK15_neutralHadronEnergyFraction;
vector<float> *JetsAK15_neutralHadronMultiplicity;
vector<float> *JetsAK15_neutralMultiplicity;
vector<float> *JetsAK15_NsubjettinessTau1;
vector<float> *JetsAK15_NsubjettinessTau2;
vector<float> *JetsAK15_NsubjettinessTau3;
vector<float> *JetsAK15_NsubjettinessTau4;
vector<int> *JetsAK15_NumBhadrons;
vector<int> *JetsAK15_NumChadrons;
vector<int> *JetsAK15_partonFlavor;
vector<float> *JetsAK15_pfMassIndependentDeepDoubleBvLJetTagsProbHbb;
vector<float> *JetsAK15_photonEnergyFraction;
vector<float> *JetsAK15_photonMultiplicity;
vector<float> *JetsAK15_ptD;
vector<float> *JetsAK15_softDropMass;
vector<float> *JetsAK15_softDropMassBeta1;
Int_t JetsAK15_subjets_;
Float_t JetsAK15_subjets_fCoordinates_fPt[kMaxJetsAK15_subjets]; //[JetsAK15_subjets_]
Float_t JetsAK15_subjets_fCoordinates_fEta[kMaxJetsAK15_subjets]; //[JetsAK15_subjets_]
Float_t JetsAK15_subjets_fCoordinates_fPhi[kMaxJetsAK15_subjets]; //[JetsAK15_subjets_]
Float_t JetsAK15_subjets_fCoordinates_fE[kMaxJetsAK15_subjets]; //[JetsAK15_subjets_]
vector<int> *JetsAK15_subjetsCounts;
Int_t JetsAK8_;
//vector<Math::PtEtaPhiE4D> JetsAK8;
Float_t JetsAK8_fCoordinates_fPt[kMaxJetsAK8]; //[JetsAK8_]
Float_t JetsAK8_fCoordinates_fEta[kMaxJetsAK8]; //[JetsAK8_]
Float_t JetsAK8_fCoordinates_fPhi[kMaxJetsAK8]; //[JetsAK8_]
Float_t JetsAK8_fCoordinates_fE[kMaxJetsAK8]; //[JetsAK8_]
vector<float> *JetsAK8_axismajor;
vector<float> *JetsAK8_axisminor;
vector<float> *JetsAK8_chargedEmEnergyFraction;
vector<float> *JetsAK8_chargedHadronEnergyFraction;
vector<int> *JetsAK8_chargedHadronMultiplicity;
vector<int> *JetsAK8_chargedMultiplicity;
vector<int> *JetsAK8_constituentsIndex;
vector<int> *JetsAK8_constituentsIndexCounts;
vector<float> *JetsAK8_DeepMassDecorrelTagbbvsLight;
vector<float> *JetsAK8_DeepMassDecorrelTagHbbvsQCD;
vector<float> *JetsAK8_DeepMassDecorrelTagTvsQCD;
vector<float> *JetsAK8_DeepMassDecorrelTagWvsQCD;
vector<float> *JetsAK8_DeepMassDecorrelTagZbbvsQCD;
vector<float> *JetsAK8_DeepMassDecorrelTagZHbbvsQCD;
vector<float> *JetsAK8_DeepMassDecorrelTagZvsQCD;
vector<float> *JetsAK8_DeepTagHbbvsQCD;
vector<float> *JetsAK8_DeepTagTvsQCD;
vector<float> *JetsAK8_DeepTagWvsQCD;
vector<float> *JetsAK8_DeepTagZbbvsQCD;
vector<float> *JetsAK8_DeepTagZvsQCD;
vector<float> *JetsAK8_doubleBDiscriminator;
vector<float> *JetsAK8_ecfN2b1;
vector<float> *JetsAK8_ecfN2b2;
vector<float> *JetsAK8_ecfN3b1;
vector<float> *JetsAK8_ecfN3b2;
vector<float> *JetsAK8_electronEnergyFraction;
vector<int> *JetsAK8_electronMultiplicity;
vector<float> *JetsAK8_girth;
vector<int> *JetsAK8_hadronFlavor;
vector<float> *JetsAK8_hfEMEnergyFraction;
vector<float> *JetsAK8_hfHadronEnergyFraction;
vector<bool> *JetsAK8_ID;
vector<float> *JetsAK8_jecFactor;
vector<float> *JetsAK8_jecUnc;
vector<float> *JetsAK8_jerFactor;
vector<float> *JetsAK8_jerFactorDown;
vector<float> *JetsAK8_jerFactorUp;
vector<int> *JetsAK8_multiplicity;
vector<float> *JetsAK8_muonEnergyFraction;
vector<int> *JetsAK8_muonMultiplicity;
vector<float> *JetsAK8_neutralEmEnergyFraction;
vector<float> *JetsAK8_neutralHadronEnergyFraction;
vector<float> *JetsAK8_neutralHadronMultiplicity;
vector<float> *JetsAK8_neutralMultiplicity;
vector<float> *JetsAK8_NsubjettinessTau1;
vector<float> *JetsAK8_NsubjettinessTau2;
vector<float> *JetsAK8_NsubjettinessTau3;
vector<int> *JetsAK8_NumBhadrons;
vector<int> *JetsAK8_NumChadrons;
vector<int> *JetsAK8_origIndex;
vector<int> *JetsAK8_partonFlavor;
vector<float> *JetsAK8_pfMassIndependentDeepDoubleBvLJetTagsProbHbb;
vector<float> *JetsAK8_photonEnergyFraction;
vector<float> *JetsAK8_photonMultiplicity;
vector<float> *JetsAK8_ptD;
vector<float> *JetsAK8_softDropMass;
Int_t JetsAK8_subjets_;
Float_t JetsAK8_subjets_fCoordinates_fPt[kMaxJetsAK8_subjets]; //[JetsAK8_subjets_]
Float_t JetsAK8_subjets_fCoordinates_fEta[kMaxJetsAK8_subjets]; //[JetsAK8_subjets_]
Float_t JetsAK8_subjets_fCoordinates_fPhi[kMaxJetsAK8_subjets]; //[JetsAK8_subjets_]
Float_t JetsAK8_subjets_fCoordinates_fE[kMaxJetsAK8_subjets]; //[JetsAK8_subjets_]
vector<int> *JetsAK8_subjetsCounts;
vector<float> *JetsAK8_subjets_axismajor;
vector<float> *JetsAK8_subjets_axisminor;
vector<float> *JetsAK8_subjets_jecFactor;
vector<int> *JetsAK8_subjets_multiplicity;
vector<float> *JetsAK8_subjets_ptD;
vector<float> *JetsAK8JECdown_jerFactor;
vector<int> *JetsAK8JECdown_origIndex;
vector<float> *JetsAK8JECup_jerFactor;
vector<int> *JetsAK8JECup_origIndex;
vector<int> *JetsAK8JERdown_origIndex;
vector<int> *JetsAK8JERup_origIndex;
Int_t JetsConstituents_;
Float_t JetsConstituents_fCoordinates_fPt[kMaxJetsConstituents]; //[JetsConstituents_]
Float_t JetsConstituents_fCoordinates_fEta[kMaxJetsConstituents]; //[JetsConstituents_]
Float_t JetsConstituents_fCoordinates_fPhi[kMaxJetsConstituents]; //[JetsConstituents_]
Float_t JetsConstituents_fCoordinates_fE[kMaxJetsConstituents]; //[JetsConstituents_]
vector<float> *JetsConstituents_dxy;
vector<float> *JetsConstituents_dxysig;
vector<float> *JetsConstituents_dz;
vector<float> *JetsConstituents_dzsig;
vector<int> *JetsConstituents_PdgId;
vector<float> *JetsConstituents_PuppiWeight;
vector<float> *JetsJECdown_jerFactor;
vector<int> *JetsJECdown_origIndex;
vector<float> *JetsJECup_jerFactor;
vector<int> *JetsJECup_origIndex;
vector<int> *JetsJERdown_origIndex;
vector<int> *JetsJERup_origIndex;
Float_t madHT;
Float_t MET;
vector<float> *METDown;
Float_t METPhi;
vector<float> *METPhiDown;
vector<float> *METPhiUp;
Float_t METSignificance;
vector<float> *METUp;
Float_t MHT;
Float_t MHTJECdown;
Float_t MHTJECup;
Float_t MHTJERdown;
Float_t MHTJERup;
Float_t MHTPhi;
Float_t MHTPhiJECdown;
Float_t MHTPhiJECup;
Float_t MHTPhiJERdown;
Float_t MHTPhiJERup;
Float_t MJJ_AK8;
Float_t Mmc_AK8;
Float_t MT_AK8;
Int_t Muons_;
Float_t Muons_fCoordinates_fPt[kMaxMuons]; //[Muons_]
Float_t Muons_fCoordinates_fEta[kMaxMuons]; //[Muons_]
Float_t Muons_fCoordinates_fPhi[kMaxMuons]; //[Muons_]
Float_t Muons_fCoordinates_fE[kMaxMuons]; //[Muons_]
vector<int> *Muons_charge;
vector<float> *Muons_iso;
vector<bool> *Muons_mediumID;
vector<float> *Muons_MTW;
vector<bool> *Muons_passIso;
vector<bool> *Muons_tightID;
Int_t nAllVertices;
Int_t NElectrons;
Int_t NJets;
Int_t NJetsISR;
Int_t NJetsISRJECdown;
Int_t NJetsISRJECup;
Int_t NJetsISRJERdown;
Int_t NJetsISRJERup;
Int_t NJetsJECdown;
Int_t NJetsJECup;
Int_t NJetsJERdown;
Int_t NJetsJERup;
Int_t NMuons;
Float_t NonPrefiringProb;
Float_t NonPrefiringProbDown;
Float_t NonPrefiringProbECAL;
Float_t NonPrefiringProbECALDown;
Float_t NonPrefiringProbECALUp;
Float_t NonPrefiringProbMuon;
Float_t NonPrefiringProbMuonDown;
Float_t NonPrefiringProbMuonUp;
Float_t NonPrefiringProbUp;
Float_t NumEvents;
Int_t NumInteractions;
Int_t NVtx;
vector<float> *PDFweights;
Float_t PFCaloMETRatio;
Int_t Photons_;
Float_t Photons_fCoordinates_fPt[kMaxPhotons]; //[Photons_]
Float_t Photons_fCoordinates_fEta[kMaxPhotons]; //[Photons_]
Float_t Photons_fCoordinates_fPhi[kMaxPhotons]; //[Photons_]
Float_t Photons_fCoordinates_fE[kMaxPhotons]; //[Photons_]
vector<bool> *Photons_electronFakes;
vector<bool> *Photons_fullID;
vector<float> *Photons_genMatched;
vector<float> *Photons_hadTowOverEM;
vector<bool> *Photons_hasPixelSeed;
vector<float> *Photons_isEB;
vector<bool> *Photons_nonPrompt;
vector<float> *Photons_passElectronVeto;
vector<float> *Photons_pfChargedIso;
vector<float> *Photons_pfChargedIsoRhoCorr;
vector<float> *Photons_pfGammaIso;
vector<float> *Photons_pfGammaIsoRhoCorr;
vector<float> *Photons_pfNeutralIso;
vector<float> *Photons_pfNeutralIsoRhoCorr;
vector<float> *Photons_sigmaIetaIeta;
Int_t PrimaryVertexFilter;
vector<float> *PSweights;
Float_t puSysDown;
Float_t puSysUp;
Float_t puWeight;
vector<float> *ScaleWeights;
vector<float> *SignalParameters;
Int_t TAPElectronTracks_;
Float_t TAPElectronTracks_fCoordinates_fPt[kMaxTAPElectronTracks]; //[TAPElectronTracks_]
Float_t TAPElectronTracks_fCoordinates_fEta[kMaxTAPElectronTracks]; //[TAPElectronTracks_]
Float_t TAPElectronTracks_fCoordinates_fPhi[kMaxTAPElectronTracks]; //[TAPElectronTracks_]
Float_t TAPElectronTracks_fCoordinates_fE[kMaxTAPElectronTracks]; //[TAPElectronTracks_]
vector<float> *TAPElectronTracks_dxypv;
vector<bool> *TAPElectronTracks_leptonMatch;
vector<float> *TAPElectronTracks_mT;
vector<float> *TAPElectronTracks_pfRelIso03chg;
vector<float> *TAPElectronTracks_trkiso;
Int_t TAPMuonTracks_;
Float_t TAPMuonTracks_fCoordinates_fPt[kMaxTAPMuonTracks]; //[TAPMuonTracks_]
Float_t TAPMuonTracks_fCoordinates_fEta[kMaxTAPMuonTracks]; //[TAPMuonTracks_]
Float_t TAPMuonTracks_fCoordinates_fPhi[kMaxTAPMuonTracks]; //[TAPMuonTracks_]
Float_t TAPMuonTracks_fCoordinates_fE[kMaxTAPMuonTracks]; //[TAPMuonTracks_]
vector<float> *TAPMuonTracks_dxypv;
vector<bool> *TAPMuonTracks_leptonMatch;
vector<float> *TAPMuonTracks_mT;
vector<float> *TAPMuonTracks_pfRelIso03chg;
vector<float> *TAPMuonTracks_trkiso;
Int_t TAPPionTracks_;
Float_t TAPPionTracks_fCoordinates_fPt[kMaxTAPPionTracks]; //[TAPPionTracks_]
Float_t TAPPionTracks_fCoordinates_fEta[kMaxTAPPionTracks]; //[TAPPionTracks_]
Float_t TAPPionTracks_fCoordinates_fPhi[kMaxTAPPionTracks]; //[TAPPionTracks_]
Float_t TAPPionTracks_fCoordinates_fE[kMaxTAPPionTracks]; //[TAPPionTracks_]
vector<float> *TAPPionTracks_dxypv;
vector<bool> *TAPPionTracks_leptonMatch;
vector<float> *TAPPionTracks_mT;
vector<float> *TAPPionTracks_pfRelIso03chg;
vector<float> *TAPPionTracks_trkiso;
vector<int> *TriggerPass;
vector<int> *TriggerPrescales;
vector<int> *TriggerVersion;
Float_t TrueNumInteractions;
Float_t Weight;
// List of branches
TBranch *b_RunNum; //!
TBranch *b_LumiBlockNum; //!
TBranch *b_EvtNum; //!
TBranch *b_BadChargedCandidateFilter; //!
TBranch *b_BadPFMuonDzFilter; //!
TBranch *b_BadPFMuonFilter; //!
TBranch *b_BTagsDeepCSV; //!
TBranch *b_BTagsDeepCSVJECdown; //!
TBranch *b_BTagsDeepCSVJECup; //!
TBranch *b_BTagsDeepCSVJERdown; //!
TBranch *b_BTagsDeepCSVJERup; //!
TBranch *b_CaloMET; //!
TBranch *b_CaloMETPhi; //!
TBranch *b_CrossSection; //!
TBranch *b_CSCTightHaloFilter; //!
TBranch *b_DeltaPhi1; //!
TBranch *b_DeltaPhi1_AK8; //!
TBranch *b_DeltaPhi1JECdown; //!
TBranch *b_DeltaPhi1JECup; //!
TBranch *b_DeltaPhi1JERdown; //!
TBranch *b_DeltaPhi1JERup; //!
TBranch *b_DeltaPhi2; //!
TBranch *b_DeltaPhi2_AK8; //!
TBranch *b_DeltaPhi2JECdown; //!
TBranch *b_DeltaPhi2JECup; //!
TBranch *b_DeltaPhi2JERdown; //!
TBranch *b_DeltaPhi2JERup; //!
TBranch *b_DeltaPhi3; //!
TBranch *b_DeltaPhi3JECdown; //!
TBranch *b_DeltaPhi3JECup; //!
TBranch *b_DeltaPhi3JERdown; //!
TBranch *b_DeltaPhi3JERup; //!
TBranch *b_DeltaPhi4; //!
TBranch *b_DeltaPhi4JECdown; //!
TBranch *b_DeltaPhi4JECup; //!
TBranch *b_DeltaPhi4JERdown; //!
TBranch *b_DeltaPhi4JERup; //!
TBranch *b_DeltaPhiMin_AK8; //!
TBranch *b_ecalBadCalibFilter; //!
TBranch *b_EcalDeadCellBoundaryEnergyFilter; //!
TBranch *b_EcalDeadCellTriggerPrimitiveFilter; //!
TBranch *b_eeBadScFilter; //!
TBranch *b_Electrons_; //!
TBranch *b_Electrons_fCoordinates_fPt; //!
TBranch *b_Electrons_fCoordinates_fEta; //!
TBranch *b_Electrons_fCoordinates_fPhi; //!
TBranch *b_Electrons_fCoordinates_fE; //!
TBranch *b_Electrons_charge; //!
TBranch *b_Electrons_iso; //!
TBranch *b_Electrons_mediumID; //!
TBranch *b_Electrons_MTW; //!
TBranch *b_Electrons_passIso; //!
TBranch *b_Electrons_tightID; //!
TBranch *b_fixedGridRhoFastjetAll; //!
TBranch *b_GenElectrons_; //!
TBranch *b_GenElectrons_fCoordinates_fPt; //!
TBranch *b_GenElectrons_fCoordinates_fEta; //!
TBranch *b_GenElectrons_fCoordinates_fPhi; //!
TBranch *b_GenElectrons_fCoordinates_fE; //!
TBranch *b_GenHT; //!
TBranch *b_GenJets_; //!
TBranch *b_GenJets_fCoordinates_fPt; //!
TBranch *b_GenJets_fCoordinates_fEta; //!
TBranch *b_GenJets_fCoordinates_fPhi; //!
TBranch *b_GenJets_fCoordinates_fE; //!
TBranch *b_GenJetsAK15_; //!
TBranch *b_GenJetsAK15_fCoordinates_fPt; //!
TBranch *b_GenJetsAK15_fCoordinates_fEta; //!
TBranch *b_GenJetsAK15_fCoordinates_fPhi; //!
TBranch *b_GenJetsAK15_fCoordinates_fE; //!
TBranch *b_GenJetsAK8_; //!
TBranch *b_GenJetsAK8_fCoordinates_fPt; //!
TBranch *b_GenJetsAK8_fCoordinates_fEta; //!
TBranch *b_GenJetsAK8_fCoordinates_fPhi; //!
TBranch *b_GenJetsAK8_fCoordinates_fE; //!
TBranch *b_GenJetsAK8_multiplicity; //!
TBranch *b_GenJetsAK8_softDropMass; //!
TBranch *b_GenMET; //!
TBranch *b_GenMETPhi; //!
TBranch *b_GenMHT; //!
TBranch *b_GenMHTPhi; //!
TBranch *b_GenMT2_AK8; //!
TBranch *b_GenMuons_; //!
TBranch *b_GenMuons_fCoordinates_fPt; //!
TBranch *b_GenMuons_fCoordinates_fEta; //!
TBranch *b_GenMuons_fCoordinates_fPhi; //!
TBranch *b_GenMuons_fCoordinates_fE; //!
TBranch *b_GenParticles_; //!
TBranch *b_GenParticles_fCoordinates_fPt; //!
TBranch *b_GenParticles_fCoordinates_fEta; //!
TBranch *b_GenParticles_fCoordinates_fPhi; //!
TBranch *b_GenParticles_fCoordinates_fE; //!
TBranch *b_GenParticles_Charge; //!
TBranch *b_GenParticles_ParentId; //!
TBranch *b_GenParticles_ParentIdx; //!
TBranch *b_GenParticles_PdgId; //!
TBranch *b_GenParticles_Status; //!
TBranch *b_GenTaus_; //!
TBranch *b_GenTaus_fCoordinates_fPt; //!
TBranch *b_GenTaus_fCoordinates_fEta; //!
TBranch *b_GenTaus_fCoordinates_fPhi; //!
TBranch *b_GenTaus_fCoordinates_fE; //!
TBranch *b_GenTaus_had; //!
TBranch *b_globalSuperTightHalo2016Filter; //!
TBranch *b_globalTightHalo2016Filter; //!
TBranch *b_hasGenPromptPhoton; //!
TBranch *b_HBHEIsoNoiseFilter; //!
TBranch *b_HBHENoiseFilter; //!
TBranch *b_hfNoisyHitsFilter; //!
TBranch *b_HT; //!
TBranch *b_HT5; //!
TBranch *b_HT5JECdown; //!
TBranch *b_HT5JECup; //!
TBranch *b_HT5JERdown; //!
TBranch *b_HT5JERup; //!
TBranch *b_HTJECdown; //!
TBranch *b_HTJECup; //!
TBranch *b_HTJERdown; //!
TBranch *b_HTJERup; //!
TBranch *b_isoElectronTracks; //!
TBranch *b_isoMuonTracks; //!
TBranch *b_isoPionTracks; //!
TBranch *b_JetID; //!
TBranch *b_JetIDAK15; //!
TBranch *b_JetIDAK8; //!
TBranch *b_JetIDAK8JECdown; //!
TBranch *b_JetIDAK8JECup; //!
TBranch *b_JetIDAK8JERdown; //!
TBranch *b_JetIDAK8JERup; //!
TBranch *b_JetIDJECdown; //!
TBranch *b_JetIDJECup; //!
TBranch *b_JetIDJERdown; //!
TBranch *b_JetIDJERup; //!
TBranch *b_Jets_; //!
TBranch *b_Jets_fCoordinates_fPt; //!
TBranch *b_Jets_fCoordinates_fEta; //!
TBranch *b_Jets_fCoordinates_fPhi; //!
TBranch *b_Jets_fCoordinates_fE; //!
TBranch *b_Jets_axismajor; //!
TBranch *b_Jets_axisminor; //!
TBranch *b_Jets_bDiscriminatorCSV; //!
TBranch *b_Jets_bJetTagDeepCSVBvsAll; //!
TBranch *b_Jets_bJetTagDeepCSVprobb; //!
TBranch *b_Jets_bJetTagDeepCSVprobbb; //!
TBranch *b_Jets_bJetTagDeepCSVprobc; //!
TBranch *b_Jets_bJetTagDeepCSVprobudsg; //!
TBranch *b_Jets_bJetTagDeepFlavourprobb; //!
TBranch *b_Jets_bJetTagDeepFlavourprobbb; //!
TBranch *b_Jets_bJetTagDeepFlavourprobc; //!
TBranch *b_Jets_bJetTagDeepFlavourprobg; //!
TBranch *b_Jets_bJetTagDeepFlavourproblepb; //!
TBranch *b_Jets_bJetTagDeepFlavourprobuds; //!
TBranch *b_Jets_chargedEmEnergyFraction; //!
TBranch *b_Jets_chargedHadronEnergyFraction; //!
TBranch *b_Jets_chargedHadronMultiplicity; //!
TBranch *b_Jets_chargedMultiplicity; //!
TBranch *b_Jets_electronEnergyFraction; //!
TBranch *b_Jets_electronMultiplicity; //!
TBranch *b_Jets_hadronFlavor; //!
TBranch *b_Jets_hfEMEnergyFraction; //!
TBranch *b_Jets_hfHadronEnergyFraction; //!
TBranch *b_Jets_HTMask; //!
TBranch *b_Jets_ID; //!
TBranch *b_Jets_jecFactor; //!
TBranch *b_Jets_jecUnc; //!
TBranch *b_Jets_jerFactor; //!
TBranch *b_Jets_jerFactorDown; //!
TBranch *b_Jets_jerFactorUp; //!
TBranch *b_Jets_LeptonMask; //!
TBranch *b_Jets_MHTMask; //!
TBranch *b_Jets_multiplicity; //!
TBranch *b_Jets_muonEnergyFraction; //!
TBranch *b_Jets_muonMultiplicity; //!
TBranch *b_Jets_neutralEmEnergyFraction; //!
TBranch *b_Jets_neutralHadronEnergyFraction; //!
TBranch *b_Jets_neutralHadronMultiplicity; //!
TBranch *b_Jets_neutralMultiplicity; //!
TBranch *b_Jets_origIndex; //!
TBranch *b_Jets_partonFlavor; //!
TBranch *b_Jets_photonEnergyFraction; //!
TBranch *b_Jets_photonMultiplicity; //!
TBranch *b_Jets_pileupId; //!
TBranch *b_Jets_ptD; //!
TBranch *b_Jets_qgLikelihood; //!
TBranch *b_JetsAK15_; //!
TBranch *b_JetsAK15_fCoordinates_fPt; //!
TBranch *b_JetsAK15_fCoordinates_fEta; //!
TBranch *b_JetsAK15_fCoordinates_fPhi; //!
TBranch *b_JetsAK15_fCoordinates_fE; //!
TBranch *b_JetsAK15_axismajor; //!
TBranch *b_JetsAK15_axisminor; //!
TBranch *b_JetsAK15_chargedEmEnergyFraction; //!
TBranch *b_JetsAK15_chargedHadronEnergyFraction; //!
TBranch *b_JetsAK15_chargedHadronMultiplicity; //!
TBranch *b_JetsAK15_chargedMultiplicity; //!
TBranch *b_JetsAK15_constituentsIndex; //!
TBranch *b_JetsAK15_constituentsIndexCounts; //!
TBranch *b_JetsAK15_DeepMassDecorrelTagbbvsLight; //!
TBranch *b_JetsAK15_DeepMassDecorrelTagHbbvsQCD; //!
TBranch *b_JetsAK15_DeepMassDecorrelTagTvsQCD; //!
TBranch *b_JetsAK15_DeepMassDecorrelTagWvsQCD; //!
TBranch *b_JetsAK15_DeepMassDecorrelTagZbbvsQCD; //!
TBranch *b_JetsAK15_DeepMassDecorrelTagZHbbvsQCD; //!
TBranch *b_JetsAK15_DeepMassDecorrelTagZvsQCD; //!
TBranch *b_JetsAK15_DeepTagHbbvsQCD; //!
TBranch *b_JetsAK15_DeepTagTvsQCD; //!
TBranch *b_JetsAK15_DeepTagWvsQCD; //!
TBranch *b_JetsAK15_DeepTagZbbvsQCD; //!
TBranch *b_JetsAK15_DeepTagZvsQCD; //!
TBranch *b_JetsAK15_doubleBDiscriminator; //!
TBranch *b_JetsAK15_ecfC2b1; //!
TBranch *b_JetsAK15_ecfC2b2; //!
TBranch *b_JetsAK15_ecfD2b1; //!
TBranch *b_JetsAK15_ecfD2b2; //!
TBranch *b_JetsAK15_ecfM2b1; //!
TBranch *b_JetsAK15_ecfM2b2; //!
TBranch *b_JetsAK15_ecfN2b1; //!
TBranch *b_JetsAK15_ecfN2b2; //!
TBranch *b_JetsAK15_electronEnergyFraction; //!
TBranch *b_JetsAK15_electronMultiplicity; //!
TBranch *b_JetsAK15_girth; //!
TBranch *b_JetsAK15_hadronFlavor; //!
TBranch *b_JetsAK15_hfEMEnergyFraction; //!
TBranch *b_JetsAK15_hfHadronEnergyFraction; //!
TBranch *b_JetsAK15_ID; //!
TBranch *b_JetsAK15_jecFactor; //!
TBranch *b_JetsAK15_multiplicity; //!
TBranch *b_JetsAK15_muonEnergyFraction; //!
TBranch *b_JetsAK15_muonMultiplicity; //!
TBranch *b_JetsAK15_neutralEmEnergyFraction; //!
TBranch *b_JetsAK15_neutralHadronEnergyFraction; //!
TBranch *b_JetsAK15_neutralHadronMultiplicity; //!
TBranch *b_JetsAK15_neutralMultiplicity; //!
TBranch *b_JetsAK15_NsubjettinessTau1; //!
TBranch *b_JetsAK15_NsubjettinessTau2; //!
TBranch *b_JetsAK15_NsubjettinessTau3; //!
TBranch *b_JetsAK15_NsubjettinessTau4; //!
TBranch *b_JetsAK15_NumBhadrons; //!
TBranch *b_JetsAK15_NumChadrons; //!
TBranch *b_JetsAK15_partonFlavor; //!
TBranch *b_JetsAK15_pfMassIndependentDeepDoubleBvLJetTagsProbHbb; //!
TBranch *b_JetsAK15_photonEnergyFraction; //!
TBranch *b_JetsAK15_photonMultiplicity; //!
TBranch *b_JetsAK15_ptD; //!
TBranch *b_JetsAK15_softDropMass; //!
TBranch *b_JetsAK15_softDropMassBeta1; //!
TBranch *b_JetsAK15_subjets_; //!
TBranch *b_JetsAK15_subjets_fCoordinates_fPt; //!
TBranch *b_JetsAK15_subjets_fCoordinates_fEta; //!
TBranch *b_JetsAK15_subjets_fCoordinates_fPhi; //!
TBranch *b_JetsAK15_subjets_fCoordinates_fE; //!
TBranch *b_JetsAK15_subjetsCounts; //!
TBranch *b_JetsAK8_; //!
TBranch *b_JetsAK8_fCoordinates_fPt; //!
TBranch *b_JetsAK8_fCoordinates_fEta; //!
TBranch *b_JetsAK8_fCoordinates_fPhi; //!
TBranch *b_JetsAK8_fCoordinates_fE; //!
TBranch *b_JetsAK8_axismajor; //!
TBranch *b_JetsAK8_axisminor; //!
TBranch *b_JetsAK8_chargedEmEnergyFraction; //!
TBranch *b_JetsAK8_chargedHadronEnergyFraction; //!
TBranch *b_JetsAK8_chargedHadronMultiplicity; //!
TBranch *b_JetsAK8_chargedMultiplicity; //!
TBranch *b_JetsAK8_constituentsIndex; //!
TBranch *b_JetsAK8_constituentsIndexCounts; //!
TBranch *b_JetsAK8_DeepMassDecorrelTagbbvsLight; //!
TBranch *b_JetsAK8_DeepMassDecorrelTagHbbvsQCD; //!
TBranch *b_JetsAK8_DeepMassDecorrelTagTvsQCD; //!
TBranch *b_JetsAK8_DeepMassDecorrelTagWvsQCD; //!
TBranch *b_JetsAK8_DeepMassDecorrelTagZbbvsQCD; //!
TBranch *b_JetsAK8_DeepMassDecorrelTagZHbbvsQCD; //!
TBranch *b_JetsAK8_DeepMassDecorrelTagZvsQCD; //!
TBranch *b_JetsAK8_DeepTagHbbvsQCD; //!
TBranch *b_JetsAK8_DeepTagTvsQCD; //!
TBranch *b_JetsAK8_DeepTagWvsQCD; //!
TBranch *b_JetsAK8_DeepTagZbbvsQCD; //!
TBranch *b_JetsAK8_DeepTagZvsQCD; //!
TBranch *b_JetsAK8_doubleBDiscriminator; //!
TBranch *b_JetsAK8_ecfN2b1; //!
TBranch *b_JetsAK8_ecfN2b2; //!
TBranch *b_JetsAK8_ecfN3b1; //!
TBranch *b_JetsAK8_ecfN3b2; //!
TBranch *b_JetsAK8_electronEnergyFraction; //!
TBranch *b_JetsAK8_electronMultiplicity; //!
TBranch *b_JetsAK8_girth; //!
TBranch *b_JetsAK8_hadronFlavor; //!
TBranch *b_JetsAK8_hfEMEnergyFraction; //!
TBranch *b_JetsAK8_hfHadronEnergyFraction; //!
TBranch *b_JetsAK8_ID; //!
TBranch *b_JetsAK8_jecFactor; //!
TBranch *b_JetsAK8_jecUnc; //!
TBranch *b_JetsAK8_jerFactor; //!
TBranch *b_JetsAK8_jerFactorDown; //!
TBranch *b_JetsAK8_jerFactorUp; //!
TBranch *b_JetsAK8_multiplicity; //!
TBranch *b_JetsAK8_muonEnergyFraction; //!
TBranch *b_JetsAK8_muonMultiplicity; //!
TBranch *b_JetsAK8_neutralEmEnergyFraction; //!
TBranch *b_JetsAK8_neutralHadronEnergyFraction; //!
TBranch *b_JetsAK8_neutralHadronMultiplicity; //!
TBranch *b_JetsAK8_neutralMultiplicity; //!
TBranch *b_JetsAK8_NsubjettinessTau1; //!
TBranch *b_JetsAK8_NsubjettinessTau2; //!
TBranch *b_JetsAK8_NsubjettinessTau3; //!
TBranch *b_JetsAK8_NumBhadrons; //!
TBranch *b_JetsAK8_NumChadrons; //!
TBranch *b_JetsAK8_origIndex; //!
TBranch *b_JetsAK8_partonFlavor; //!
TBranch *b_JetsAK8_pfMassIndependentDeepDoubleBvLJetTagsProbHbb; //!
TBranch *b_JetsAK8_photonEnergyFraction; //!
TBranch *b_JetsAK8_photonMultiplicity; //!
TBranch *b_JetsAK8_ptD; //!
TBranch *b_JetsAK8_softDropMass; //!
TBranch *b_JetsAK8_subjets_; //!
TBranch *b_JetsAK8_subjets_fCoordinates_fPt; //!
TBranch *b_JetsAK8_subjets_fCoordinates_fEta; //!
TBranch *b_JetsAK8_subjets_fCoordinates_fPhi; //!
TBranch *b_JetsAK8_subjets_fCoordinates_fE; //!
TBranch *b_JetsAK8_subjetsCounts; //!
TBranch *b_JetsAK8_subjets_axismajor; //!
TBranch *b_JetsAK8_subjets_axisminor; //!
TBranch *b_JetsAK8_subjets_jecFactor; //!
TBranch *b_JetsAK8_subjets_multiplicity; //!
TBranch *b_JetsAK8_subjets_ptD; //!
TBranch *b_JetsAK8JECdown_jerFactor; //!
TBranch *b_JetsAK8JECdown_origIndex; //!
TBranch *b_JetsAK8JECup_jerFactor; //!
TBranch *b_JetsAK8JECup_origIndex; //!
TBranch *b_JetsAK8JERdown_origIndex; //!
TBranch *b_JetsAK8JERup_origIndex; //!
TBranch *b_JetsConstituents_; //!
TBranch *b_JetsConstituents_fCoordinates_fPt; //!
TBranch *b_JetsConstituents_fCoordinates_fEta; //!
TBranch *b_JetsConstituents_fCoordinates_fPhi; //!
TBranch *b_JetsConstituents_fCoordinates_fE; //!
TBranch *b_JetsConstituents_dxy; //!
TBranch *b_JetsConstituents_dxysig; //!
TBranch *b_JetsConstituents_dz; //!
TBranch *b_JetsConstituents_dzsig; //!
TBranch *b_JetsConstituents_PdgId; //!
TBranch *b_JetsConstituents_PuppiWeight; //!
TBranch *b_JetsJECdown_jerFactor; //!
TBranch *b_JetsJECdown_origIndex; //!
TBranch *b_JetsJECup_jerFactor; //!
TBranch *b_JetsJECup_origIndex; //!
TBranch *b_JetsJERdown_origIndex; //!
TBranch *b_JetsJERup_origIndex; //!
TBranch *b_madHT; //!
TBranch *b_MET; //!
TBranch *b_METDown; //!
TBranch *b_METPhi; //!
TBranch *b_METPhiDown; //!
TBranch *b_METPhiUp; //!
TBranch *b_METSignificance; //!
TBranch *b_METUp; //!
TBranch *b_MHT; //!
TBranch *b_MHTJECdown; //!
TBranch *b_MHTJECup; //!
TBranch *b_MHTJERdown; //!
TBranch *b_MHTJERup; //!
TBranch *b_MHTPhi; //!
TBranch *b_MHTPhiJECdown; //!
TBranch *b_MHTPhiJECup; //!
TBranch *b_MHTPhiJERdown; //!
TBranch *b_MHTPhiJERup; //!
TBranch *b_MJJ_AK8; //!
TBranch *b_Mmc_AK8; //!
TBranch *b_MT_AK8; //!
TBranch *b_Muons_; //!
TBranch *b_Muons_fCoordinates_fPt; //!
TBranch *b_Muons_fCoordinates_fEta; //!
TBranch *b_Muons_fCoordinates_fPhi; //!
TBranch *b_Muons_fCoordinates_fE; //!
TBranch *b_Muons_charge; //!
TBranch *b_Muons_iso; //!
TBranch *b_Muons_mediumID; //!
TBranch *b_Muons_MTW; //!
TBranch *b_Muons_passIso; //!
TBranch *b_Muons_tightID; //!
TBranch *b_nAllVertices; //!
TBranch *b_NElectrons; //!
TBranch *b_NJets; //!
TBranch *b_NJetsISR; //!
TBranch *b_NJetsISRJECdown; //!
TBranch *b_NJetsISRJECup; //!
TBranch *b_NJetsISRJERdown; //!
TBranch *b_NJetsISRJERup; //!
TBranch *b_NJetsJECdown; //!
TBranch *b_NJetsJECup; //!
TBranch *b_NJetsJERdown; //!
TBranch *b_NJetsJERup; //!
TBranch *b_NMuons; //!
TBranch *b_NonPrefiringProb; //!
TBranch *b_NonPrefiringProbDown; //!
TBranch *b_NonPrefiringProbECAL; //!
TBranch *b_NonPrefiringProbECALDown; //!
TBranch *b_NonPrefiringProbECALUp; //!
TBranch *b_NonPrefiringProbMuon; //!
TBranch *b_NonPrefiringProbMuonDown; //!
TBranch *b_NonPrefiringProbMuonUp; //!
TBranch *b_NonPrefiringProbUp; //!
TBranch *b_NumEvents; //!
TBranch *b_NumInteractions; //!
TBranch *b_NVtx; //!
TBranch *b_PDFweights; //!
TBranch *b_PFCaloMETRatio; //!
TBranch *b_Photons_; //!
TBranch *b_Photons_fCoordinates_fPt; //!
TBranch *b_Photons_fCoordinates_fEta; //!
TBranch *b_Photons_fCoordinates_fPhi; //!
TBranch *b_Photons_fCoordinates_fE; //!
TBranch *b_Photons_electronFakes; //!
TBranch *b_Photons_fullID; //!
TBranch *b_Photons_genMatched; //!
TBranch *b_Photons_hadTowOverEM; //!
TBranch *b_Photons_hasPixelSeed; //!
TBranch *b_Photons_isEB; //!
TBranch *b_Photons_nonPrompt; //!
TBranch *b_Photons_passElectronVeto; //!
TBranch *b_Photons_pfChargedIso; //!
TBranch *b_Photons_pfChargedIsoRhoCorr; //!
TBranch *b_Photons_pfGammaIso; //!
TBranch *b_Photons_pfGammaIsoRhoCorr; //!
TBranch *b_Photons_pfNeutralIso; //!
TBranch *b_Photons_pfNeutralIsoRhoCorr; //!
TBranch *b_Photons_sigmaIetaIeta; //!
TBranch *b_PrimaryVertexFilter; //!
TBranch *b_PSweights; //!
TBranch *b_puSysDown; //!
TBranch *b_puSysUp; //!
TBranch *b_puWeight; //!
TBranch *b_ScaleWeights; //!
TBranch *b_SignalParameters; //!
TBranch *b_TAPElectronTracks_; //!
TBranch *b_TAPElectronTracks_fCoordinates_fPt; //!
TBranch *b_TAPElectronTracks_fCoordinates_fEta; //!
TBranch *b_TAPElectronTracks_fCoordinates_fPhi; //!
TBranch *b_TAPElectronTracks_fCoordinates_fE; //!
TBranch *b_TAPElectronTracks_dxypv; //!
TBranch *b_TAPElectronTracks_leptonMatch; //!
TBranch *b_TAPElectronTracks_mT; //!
TBranch *b_TAPElectronTracks_pfRelIso03chg; //!
TBranch *b_TAPElectronTracks_trkiso; //!
TBranch *b_TAPMuonTracks_; //!
TBranch *b_TAPMuonTracks_fCoordinates_fPt; //!
TBranch *b_TAPMuonTracks_fCoordinates_fEta; //!
TBranch *b_TAPMuonTracks_fCoordinates_fPhi; //!
TBranch *b_TAPMuonTracks_fCoordinates_fE; //!
TBranch *b_TAPMuonTracks_dxypv; //!
TBranch *b_TAPMuonTracks_leptonMatch; //!
TBranch *b_TAPMuonTracks_mT; //!
TBranch *b_TAPMuonTracks_pfRelIso03chg; //!
TBranch *b_TAPMuonTracks_trkiso; //!
TBranch *b_TAPPionTracks_; //!
TBranch *b_TAPPionTracks_fCoordinates_fPt; //!
TBranch *b_TAPPionTracks_fCoordinates_fEta; //!
TBranch *b_TAPPionTracks_fCoordinates_fPhi; //!
TBranch *b_TAPPionTracks_fCoordinates_fE; //!
TBranch *b_TAPPionTracks_dxypv; //!
TBranch *b_TAPPionTracks_leptonMatch; //!
TBranch *b_TAPPionTracks_mT; //!
TBranch *b_TAPPionTracks_pfRelIso03chg; //!
TBranch *b_TAPPionTracks_trkiso; //!
TBranch *b_TriggerPass; //!
TBranch *b_TriggerPrescales; //!
TBranch *b_TriggerVersion; //!
TBranch *b_TrueNumInteractions; //!
TBranch *b_Weight; //!
RA2bNtupleV20(TTree *tree=0);
virtual ~RA2bNtupleV20();
virtual Int_t Cut(Long64_t entry);