-
Notifications
You must be signed in to change notification settings - Fork 1
/
autumnclass.h
1298 lines (1279 loc) · 64.5 KB
/
autumnclass.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
// Mon Dec 19 14:05:39 2022 by ROOT version 6.26/06
// from TTree tree/PreSelection
// found on file: /Users/jsewell/Documents/ROOT_documents/EW_SUSY/Signal_1000_100_Autumn18Fast_TChiWH.root
//////////////////////////////////////////////////////////
#ifndef autumnclass_h
#define autumnclass_h
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
// Header file for the classes stored in the TTree if any.
#include "vector"
#include "vector"
#include "vector"
#include "vector"
#include "vector"
class autumnclass {
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
UInt_t RunNum;
UInt_t LumiBlockNum;
ULong64_t EvtNum;
Int_t BTags;
Int_t BTagsclean;
Int_t BTagsDeepCSV;
Int_t BTagsDeepCSVclean;
Int_t BTagsDeepCSVJECdown;
Int_t BTagsDeepCSVJECup;
Int_t BTagsDeepCSVJERdown;
Int_t BTagsDeepCSVJERup;
Int_t BTagsJECdown;
Int_t BTagsJECup;
Int_t BTagsJERdown;
Int_t BTagsJERup;
Double_t CaloMET;
Double_t CaloMETPhi;
Double_t CrossSection;
Double_t DeltaPhi1;
Double_t DeltaPhi1_AK8;
Double_t DeltaPhi1clean;
Double_t DeltaPhi1JECdown;
Double_t DeltaPhi1JECup;
Double_t DeltaPhi1JERdown;
Double_t DeltaPhi1JERup;
Double_t DeltaPhi2;
Double_t DeltaPhi2_AK8;
Double_t DeltaPhi2clean;
Double_t DeltaPhi2JECdown;
Double_t DeltaPhi2JECup;
Double_t DeltaPhi2JERdown;
Double_t DeltaPhi2JERup;
Double_t DeltaPhi3;
Double_t DeltaPhi3clean;
Double_t DeltaPhi3JECdown;
Double_t DeltaPhi3JECup;
Double_t DeltaPhi3JERdown;
Double_t DeltaPhi3JERup;
Double_t DeltaPhi4;
Double_t DeltaPhi4clean;
Double_t DeltaPhi4JECdown;
Double_t DeltaPhi4JECup;
Double_t DeltaPhi4JERdown;
Double_t DeltaPhi4JERup;
Double_t DeltaPhiMin_AK8;
vector<TLorentzVector> *Electrons;
vector<int> *Electrons_charge;
vector<double> *Electrons_iso;
vector<bool> *Electrons_mediumID;
vector<double> *Electrons_MTW;
vector<bool> *Electrons_passIso;
vector<bool> *Electrons_tightID;
Double_t fixedGridRhoFastjetAll;
vector<TLorentzVector> *GenElectrons;
Double_t GenHT;
vector<TLorentzVector> *GenJets;
vector<TLorentzVector> *GenJetsAK8;
vector<int> *GenJetsAK8_multiplicity;
vector<double> *GenJetsAK8_softDropMass;
Double_t GenMET;
Double_t GenMETPhi;
Double_t GenMHT;
Double_t GenMHTPhi;
vector<TLorentzVector> *GenMuons;
vector<TLorentzVector> *GenParticles;
vector<int> *GenParticles_ParentId;
vector<int> *GenParticles_ParentIdx;
vector<int> *GenParticles_PdgId;
vector<int> *GenParticles_Status;
vector<TLorentzVector> *GenTaus;
vector<bool> *GenTaus_had;
Bool_t hasGenPromptPhoton;
Double_t HT;
Double_t HT5;
Double_t HT5clean;
Double_t HT5JECdown;
Double_t HT5JECup;
Double_t HT5JERdown;
Double_t HT5JERup;
Double_t HTclean;
Double_t HTJECdown;
Double_t HTJECup;
Double_t HTJERdown;
Double_t HTJERup;
Int_t isoElectronTracks;
Int_t isoElectronTracksclean;
Int_t isoMuonTracks;
Int_t isoMuonTracksclean;
Int_t isoPionTracks;
Int_t isoPionTracksclean;
Bool_t JetID;
Bool_t JetIDAK8;
Bool_t JetIDAK8Clean;
Bool_t JetIDAK8JECdown;
Bool_t JetIDAK8JECup;
Bool_t JetIDAK8JERdown;
Bool_t JetIDAK8JERup;
Bool_t JetIDclean;
Bool_t JetIDJECdown;
Bool_t JetIDJECup;
Bool_t JetIDJERdown;
Bool_t JetIDJERup;
vector<TLorentzVector> *Jets;
vector<double> *Jets_axismajor;
vector<double> *Jets_axisminor;
vector<double> *Jets_bDiscriminatorCSV;
vector<double> *Jets_bJetTagDeepCSVBvsAll;
vector<double> *Jets_chargedEmEnergyFraction;
vector<double> *Jets_chargedHadronEnergyFraction;
vector<int> *Jets_chargedHadronMultiplicity;
vector<int> *Jets_chargedMultiplicity;
vector<double> *Jets_electronEnergyFraction;
vector<int> *Jets_electronMultiplicity;
vector<int> *Jets_hadronFlavor;
vector<double> *Jets_hfEMEnergyFraction;
vector<double> *Jets_hfHadronEnergyFraction;
vector<bool> *Jets_HTMask;
vector<bool> *Jets_ID;
vector<double> *Jets_jecFactor;
vector<double> *Jets_jecUnc;
vector<double> *Jets_jerFactor;
vector<double> *Jets_jerFactorDown;
vector<double> *Jets_jerFactorUp;
vector<bool> *Jets_LeptonMask;
vector<bool> *Jets_MHTMask;
vector<int> *Jets_multiplicity;
vector<double> *Jets_muonEnergyFraction;
vector<int> *Jets_muonMultiplicity;
vector<double> *Jets_neutralEmEnergyFraction;
vector<double> *Jets_neutralHadronEnergyFraction;
vector<int> *Jets_neutralHadronMultiplicity;
vector<int> *Jets_neutralMultiplicity;
vector<int> *Jets_origIndex;
vector<int> *Jets_partonFlavor;
vector<double> *Jets_photonEnergyFraction;
vector<int> *Jets_photonMultiplicity;
vector<double> *Jets_ptD;
vector<double> *Jets_qgLikelihood;
vector<TLorentzVector> *JetsAK8;
vector<double> *JetsAK8_axismajor;
vector<double> *JetsAK8_axisminor;
vector<double> *JetsAK8_chargedEmEnergyFraction;
vector<double> *JetsAK8_chargedHadronEnergyFraction;
vector<int> *JetsAK8_chargedHadronMultiplicity;
vector<int> *JetsAK8_chargedMultiplicity;
vector<double> *JetsAK8_DeepMassDecorrelTagbbvsLight;
vector<double> *JetsAK8_DeepMassDecorrelTagHbbvsQCD;
vector<double> *JetsAK8_DeepMassDecorrelTagTvsQCD;
vector<double> *JetsAK8_DeepMassDecorrelTagWvsQCD;
vector<double> *JetsAK8_DeepMassDecorrelTagZbbvsQCD;
vector<double> *JetsAK8_DeepMassDecorrelTagZHbbvsQCD;
vector<double> *JetsAK8_DeepMassDecorrelTagZvsQCD;
vector<double> *JetsAK8_DeepTagHbbvsQCD;
vector<double> *JetsAK8_DeepTagTvsQCD;
vector<double> *JetsAK8_DeepTagWvsQCD;
vector<double> *JetsAK8_DeepTagZbbvsQCD;
vector<double> *JetsAK8_DeepTagZvsQCD;
vector<double> *JetsAK8_doubleBDiscriminator;
vector<double> *JetsAK8_ecfN2b1;
vector<double> *JetsAK8_ecfN2b2;
vector<double> *JetsAK8_ecfN3b1;
vector<double> *JetsAK8_ecfN3b2;
vector<double> *JetsAK8_electronEnergyFraction;
vector<int> *JetsAK8_electronMultiplicity;
vector<double> *JetsAK8_girth;
vector<double> *JetsAK8_hfEMEnergyFraction;
vector<double> *JetsAK8_hfHadronEnergyFraction;
vector<bool> *JetsAK8_ID;
vector<bool> *JetsAK8_isHV;
vector<double> *JetsAK8_jecFactor;
vector<double> *JetsAK8_jecUnc;
vector<double> *JetsAK8_jerFactor;
vector<double> *JetsAK8_jerFactorDown;
vector<double> *JetsAK8_jerFactorUp;
vector<int> *JetsAK8_multiplicity;
vector<double> *JetsAK8_muonEnergyFraction;
vector<int> *JetsAK8_muonMultiplicity;
vector<double> *JetsAK8_neutralEmEnergyFraction;
vector<double> *JetsAK8_neutralHadronEnergyFraction;
vector<double> *JetsAK8_neutralHadronMultiplicity;
vector<double> *JetsAK8_neutralMultiplicity;
vector<double> *JetsAK8_NsubjettinessTau1;
vector<double> *JetsAK8_NsubjettinessTau2;
vector<double> *JetsAK8_NsubjettinessTau3;
vector<int> *JetsAK8_NumBhadrons;
vector<int> *JetsAK8_NumChadrons;
vector<int> *JetsAK8_origIndex;
vector<double> *JetsAK8_pfMassIndependentDeepDoubleBvLJetTagsProbHbb;
vector<double> *JetsAK8_photonEnergyFraction;
vector<double> *JetsAK8_photonMultiplicity;
vector<double> *JetsAK8_ptD;
vector<double> *JetsAK8_softDropMass;
vector<vector<TLorentzVector> > *JetsAK8_subjets;
vector<vector<double> > *JetsAK8_subjets_axismajor;
vector<vector<double> > *JetsAK8_subjets_axisminor;
vector<vector<double> > *JetsAK8_subjets_bDiscriminatorCSV;
vector<vector<double> > *JetsAK8_subjets_jecFactor;
vector<vector<int> > *JetsAK8_subjets_multiplicity;
vector<vector<double> > *JetsAK8_subjets_ptD;
vector<TLorentzVector> *JetsAK8Clean;
vector<double> *JetsAK8Clean_doubleBDiscriminator;
vector<bool> *JetsAK8Clean_ID;
vector<double> *JetsAK8Clean_softDropMass;
vector<vector<TLorentzVector> > *JetsAK8Clean_subjets;
vector<double> *JetsAK8JECdown_jerFactor;
vector<int> *JetsAK8JECdown_origIndex;
vector<double> *JetsAK8JECup_jerFactor;
vector<int> *JetsAK8JECup_origIndex;
vector<int> *JetsAK8JERdown_origIndex;
vector<int> *JetsAK8JERup_origIndex;
vector<TLorentzVector> *Jetsclean;
vector<double> *Jetsclean_bDiscriminatorCSV;
vector<double> *Jetsclean_bJetTagDeepCSVBvsAll;
vector<int> *Jetsclean_hadronFlavor;
vector<bool> *Jetsclean_HTMask;
vector<bool> *Jetsclean_ID;
vector<int> *Jetsclean_partonFlavor;
vector<double> *JetsJECdown_jerFactor;
vector<int> *JetsJECdown_origIndex;
vector<double> *JetsJECup_jerFactor;
vector<int> *JetsJECup_origIndex;
vector<int> *JetsJERdown_origIndex;
vector<int> *JetsJERup_origIndex;
Double_t madHT;
Int_t madMinDeltaRStatus;
Double_t madMinPhotonDeltaR;
Double_t MET;
Double_t METclean;
vector<double> *METDown;
Double_t METPhi;
Double_t METPhiclean;
vector<double> *METPhiDown;
vector<double> *METPhiUp;
Double_t METSignificance;
vector<double> *METUp;
Double_t MHT;
Double_t MHTclean;
Double_t MHTJECdown;
Double_t MHTJECup;
Double_t MHTJERdown;
Double_t MHTJERup;
Double_t MHTPhi;
Double_t MHTPhiclean;
Double_t MHTPhiJECdown;
Double_t MHTPhiJECup;
Double_t MHTPhiJERdown;
Double_t MHTPhiJERup;
Double_t MJJ_AK8;
Double_t Mmc_AK8;
Double_t MT_AK8;
vector<TLorentzVector> *Muons;
vector<int> *Muons_charge;
vector<double> *Muons_iso;
vector<bool> *Muons_mediumID;
vector<double> *Muons_MTW;
vector<bool> *Muons_passIso;
vector<bool> *Muons_tightID;
Int_t nAllVertices;
Int_t NElectrons;
Int_t NJets;
Int_t NJetsclean;
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;
Double_t NumEvents;
Int_t NumInteractions;
Int_t NVtx;
vector<float> *PDFweights;
Double_t PFCaloMETRatio;
vector<TLorentzVector> *Photons;
vector<bool> *Photons_electronFakes;
vector<bool> *Photons_fullID;
vector<double> *Photons_genMatched;
vector<double> *Photons_hadTowOverEM;
vector<bool> *Photons_hasPixelSeed;
vector<double> *Photons_isEB;
vector<bool> *Photons_nonPrompt;
vector<double> *Photons_passElectronVeto;
vector<double> *Photons_pfChargedIso;
vector<double> *Photons_pfChargedIsoRhoCorr;
vector<double> *Photons_pfGammaIso;
vector<double> *Photons_pfGammaIsoRhoCorr;
vector<double> *Photons_pfNeutralIso;
vector<double> *Photons_pfNeutralIsoRhoCorr;
vector<double> *Photons_sigmaIetaIeta;
vector<float> *PSweights;
Double_t puSysDown;
Double_t puSysUp;
Double_t puWeight;
vector<float> *ScaleWeights;
vector<double> *SignalParameters;
Double_t SusyLSPMass;
Double_t SusyMotherMass;
vector<TLorentzVector> *TAPElectronTracks;
vector<double> *TAPElectronTracks_dxypv;
vector<bool> *TAPElectronTracks_leptonMatch;
vector<double> *TAPElectronTracks_mT;
vector<double> *TAPElectronTracks_pfRelIso03chg;
vector<double> *TAPElectronTracks_trkiso;
vector<TLorentzVector> *TAPMuonTracks;
vector<double> *TAPMuonTracks_dxypv;
vector<bool> *TAPMuonTracks_leptonMatch;
vector<double> *TAPMuonTracks_mT;
vector<double> *TAPMuonTracks_pfRelIso03chg;
vector<double> *TAPMuonTracks_trkiso;
vector<TLorentzVector> *TAPPionTracks;
vector<double> *TAPPionTracks_dxypv;
vector<bool> *TAPPionTracks_leptonMatch;
vector<double> *TAPPionTracks_mT;
vector<double> *TAPPionTracks_pfRelIso03chg;
vector<double> *TAPPionTracks_trkiso;
vector<int> *TriggerPass;
vector<int> *TriggerPrescales;
vector<int> *TriggerVersion;
Double_t TrueNumInteractions;
Double_t Weight;
vector<TLorentzVector> *ZCandidates;
// List of branches
TBranch *b_RunNum; //!
TBranch *b_LumiBlockNum; //!
TBranch *b_EvtNum; //!
TBranch *b_BTags; //!
TBranch *b_BTagsclean; //!
TBranch *b_BTagsDeepCSV; //!
TBranch *b_BTagsDeepCSVclean; //!
TBranch *b_BTagsDeepCSVJECdown; //!
TBranch *b_BTagsDeepCSVJECup; //!
TBranch *b_BTagsDeepCSVJERdown; //!
TBranch *b_BTagsDeepCSVJERup; //!
TBranch *b_BTagsJECdown; //!
TBranch *b_BTagsJECup; //!
TBranch *b_BTagsJERdown; //!
TBranch *b_BTagsJERup; //!
TBranch *b_CaloMET; //!
TBranch *b_CaloMETPhi; //!
TBranch *b_CrossSection; //!
TBranch *b_DeltaPhi1; //!
TBranch *b_DeltaPhi1_AK8; //!
TBranch *b_DeltaPhi1clean; //!
TBranch *b_DeltaPhi1JECdown; //!
TBranch *b_DeltaPhi1JECup; //!
TBranch *b_DeltaPhi1JERdown; //!
TBranch *b_DeltaPhi1JERup; //!
TBranch *b_DeltaPhi2; //!
TBranch *b_DeltaPhi2_AK8; //!
TBranch *b_DeltaPhi2clean; //!
TBranch *b_DeltaPhi2JECdown; //!
TBranch *b_DeltaPhi2JECup; //!
TBranch *b_DeltaPhi2JERdown; //!
TBranch *b_DeltaPhi2JERup; //!
TBranch *b_DeltaPhi3; //!
TBranch *b_DeltaPhi3clean; //!
TBranch *b_DeltaPhi3JECdown; //!
TBranch *b_DeltaPhi3JECup; //!
TBranch *b_DeltaPhi3JERdown; //!
TBranch *b_DeltaPhi3JERup; //!
TBranch *b_DeltaPhi4; //!
TBranch *b_DeltaPhi4clean; //!
TBranch *b_DeltaPhi4JECdown; //!
TBranch *b_DeltaPhi4JECup; //!
TBranch *b_DeltaPhi4JERdown; //!
TBranch *b_DeltaPhi4JERup; //!
TBranch *b_DeltaPhiMin_AK8; //!
TBranch *b_Electrons; //!
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_GenHT; //!
TBranch *b_GenJets; //!
TBranch *b_GenJetsAK8; //!
TBranch *b_GenJetsAK8_multiplicity; //!
TBranch *b_GenJetsAK8_softDropMass; //!
TBranch *b_GenMET; //!
TBranch *b_GenMETPhi; //!
TBranch *b_GenMHT; //!
TBranch *b_GenMHTPhi; //!
TBranch *b_GenMuons; //!
TBranch *b_GenParticles; //!
TBranch *b_GenParticles_ParentId; //!
TBranch *b_GenParticles_ParentIdx; //!
TBranch *b_GenParticles_PdgId; //!
TBranch *b_GenParticles_Status; //!
TBranch *b_GenTaus; //!
TBranch *b_GenTaus_had; //!
TBranch *b_hasGenPromptPhoton; //!
TBranch *b_HT; //!
TBranch *b_HT5; //!
TBranch *b_HT5clean; //!
TBranch *b_HT5JECdown; //!
TBranch *b_HT5JECup; //!
TBranch *b_HT5JERdown; //!
TBranch *b_HT5JERup; //!
TBranch *b_HTclean; //!
TBranch *b_HTJECdown; //!
TBranch *b_HTJECup; //!
TBranch *b_HTJERdown; //!
TBranch *b_HTJERup; //!
TBranch *b_isoElectronTracks; //!
TBranch *b_isoElectronTracksclean; //!
TBranch *b_isoMuonTracks; //!
TBranch *b_isoMuonTracksclean; //!
TBranch *b_isoPionTracks; //!
TBranch *b_isoPionTracksclean; //!
TBranch *b_JetID; //!
TBranch *b_JetIDAK8; //!
TBranch *b_JetIDAK8Clean; //!
TBranch *b_JetIDAK8JECdown; //!
TBranch *b_JetIDAK8JECup; //!
TBranch *b_JetIDAK8JERdown; //!
TBranch *b_JetIDAK8JERup; //!
TBranch *b_JetIDclean; //!
TBranch *b_JetIDJECdown; //!
TBranch *b_JetIDJECup; //!
TBranch *b_JetIDJERdown; //!
TBranch *b_JetIDJERup; //!
TBranch *b_Jets; //!
TBranch *b_Jets_axismajor; //!
TBranch *b_Jets_axisminor; //!
TBranch *b_Jets_bDiscriminatorCSV; //!
TBranch *b_Jets_bJetTagDeepCSVBvsAll; //!
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_ptD; //!
TBranch *b_Jets_qgLikelihood; //!
TBranch *b_JetsAK8; //!
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_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_hfEMEnergyFraction; //!
TBranch *b_JetsAK8_hfHadronEnergyFraction; //!
TBranch *b_JetsAK8_ID; //!
TBranch *b_JetsAK8_isHV; //!
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_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_axismajor; //!
TBranch *b_JetsAK8_subjets_axisminor; //!
TBranch *b_JetsAK8_subjets_bDiscriminatorCSV; //!
TBranch *b_JetsAK8_subjets_jecFactor; //!
TBranch *b_JetsAK8_subjets_multiplicity; //!
TBranch *b_JetsAK8_subjets_ptD; //!
TBranch *b_JetsAK8Clean; //!
TBranch *b_JetsAK8Clean_doubleBDiscriminator; //!
TBranch *b_JetsAK8Clean_ID; //!
TBranch *b_JetsAK8Clean_softDropMass; //!
TBranch *b_JetsAK8Clean_subjets; //!
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_Jetsclean; //!
TBranch *b_Jetsclean_bDiscriminatorCSV; //!
TBranch *b_Jetsclean_bJetTagDeepCSVBvsAll; //!
TBranch *b_Jetsclean_hadronFlavor; //!
TBranch *b_Jetsclean_HTMask; //!
TBranch *b_Jetsclean_ID; //!
TBranch *b_Jetsclean_partonFlavor; //!
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_madMinDeltaRStatus; //!
TBranch *b_madMinPhotonDeltaR; //!
TBranch *b_MET; //!
TBranch *b_METclean; //!
TBranch *b_METDown; //!
TBranch *b_METPhi; //!
TBranch *b_METPhiclean; //!
TBranch *b_METPhiDown; //!
TBranch *b_METPhiUp; //!
TBranch *b_METSignificance; //!
TBranch *b_METUp; //!
TBranch *b_MHT; //!
TBranch *b_MHTclean; //!
TBranch *b_MHTJECdown; //!
TBranch *b_MHTJECup; //!
TBranch *b_MHTJERdown; //!
TBranch *b_MHTJERup; //!
TBranch *b_MHTPhi; //!
TBranch *b_MHTPhiclean; //!
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_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_NJetsclean; //!
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_NumEvents; //!
TBranch *b_NumInteractions; //!
TBranch *b_NVtx; //!
TBranch *b_PDFweights; //!
TBranch *b_PFCaloMETRatio; //!
TBranch *b_Photons; //!
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_PSweights; //!
TBranch *b_puSysDown; //!
TBranch *b_puSysUp; //!
TBranch *b_puWeight; //!
TBranch *b_ScaleWeights; //!
TBranch *b_SignalParameters; //!
TBranch *b_SusyLSPMass; //!
TBranch *b_SusyMotherMass; //!
TBranch *b_TAPElectronTracks; //!
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_dxypv; //!
TBranch *b_TAPMuonTracks_leptonMatch; //!
TBranch *b_TAPMuonTracks_mT; //!
TBranch *b_TAPMuonTracks_pfRelIso03chg; //!
TBranch *b_TAPMuonTracks_trkiso; //!
TBranch *b_TAPPionTracks; //!
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; //!
TBranch *b_ZCandidates; //!
autumnclass(TTree *tree=0);
virtual ~autumnclass();
virtual Int_t Cut(Long64_t entry);
virtual Int_t GetEntry(Long64_t entry);
virtual Long64_t LoadTree(Long64_t entry);
virtual void Init(TTree *tree);
virtual void Loop();
virtual Bool_t Notify();
virtual void Show(Long64_t entry = -1);
};
#endif
#ifdef autumnclass_cxx
autumnclass::autumnclass(TTree *tree) : fChain(0)
{
// if parameter tree is not specified (or zero), connect the file
// used to generate this class and read the Tree.
if (tree == 0) {
TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject("/Users/jsewell/Documents/ROOT_documents/EW_SUSY/Signal_1000_100_Autumn18Fast_TChiWH.root");
if (!f || !f->IsOpen()) {
f = new TFile("/Users/jsewell/Documents/ROOT_documents/EW_SUSY/Signal_1000_100_Autumn18Fast_TChiWH.root");
}
f->GetObject("tree",tree);
}
Init(tree);
}
autumnclass::~autumnclass()
{
if (!fChain) return;
delete fChain->GetCurrentFile();
}
Int_t autumnclass::GetEntry(Long64_t entry)
{
// Read contents of entry.
if (!fChain) return 0;
return fChain->GetEntry(entry);
}
Long64_t autumnclass::LoadTree(Long64_t entry)
{
// Set the environment to read one entry
if (!fChain) return -5;
Long64_t centry = fChain->LoadTree(entry);
if (centry < 0) return centry;
if (fChain->GetTreeNumber() != fCurrent) {
fCurrent = fChain->GetTreeNumber();
Notify();
}
return centry;
}
void autumnclass::Init(TTree *tree)
{
// The Init() function is called when the selector needs to initialize
// a new tree or chain. Typically here the branch addresses and branch
// pointers of the tree will be set.
// It is normally not necessary to make changes to the generated
// code, but the routine can be extended by the user if needed.
// Init() will be called many times when running on PROOF
// (once per file to be processed).
// Set object pointer
Electrons = 0;
Electrons_charge = 0;
Electrons_iso = 0;
Electrons_mediumID = 0;
Electrons_MTW = 0;
Electrons_passIso = 0;
Electrons_tightID = 0;
GenElectrons = 0;
GenJets = 0;
GenJetsAK8 = 0;
GenJetsAK8_multiplicity = 0;
GenJetsAK8_softDropMass = 0;
GenMuons = 0;
GenParticles = 0;
GenParticles_ParentId = 0;
GenParticles_ParentIdx = 0;
GenParticles_PdgId = 0;
GenParticles_Status = 0;
GenTaus = 0;
GenTaus_had = 0;
Jets = 0;
Jets_axismajor = 0;
Jets_axisminor = 0;
Jets_bDiscriminatorCSV = 0;
Jets_bJetTagDeepCSVBvsAll = 0;
Jets_chargedEmEnergyFraction = 0;
Jets_chargedHadronEnergyFraction = 0;
Jets_chargedHadronMultiplicity = 0;
Jets_chargedMultiplicity = 0;
Jets_electronEnergyFraction = 0;
Jets_electronMultiplicity = 0;
Jets_hadronFlavor = 0;
Jets_hfEMEnergyFraction = 0;
Jets_hfHadronEnergyFraction = 0;
Jets_HTMask = 0;
Jets_ID = 0;
Jets_jecFactor = 0;
Jets_jecUnc = 0;
Jets_jerFactor = 0;
Jets_jerFactorDown = 0;
Jets_jerFactorUp = 0;
Jets_LeptonMask = 0;
Jets_MHTMask = 0;
Jets_multiplicity = 0;
Jets_muonEnergyFraction = 0;
Jets_muonMultiplicity = 0;
Jets_neutralEmEnergyFraction = 0;
Jets_neutralHadronEnergyFraction = 0;
Jets_neutralHadronMultiplicity = 0;
Jets_neutralMultiplicity = 0;
Jets_origIndex = 0;
Jets_partonFlavor = 0;
Jets_photonEnergyFraction = 0;
Jets_photonMultiplicity = 0;
Jets_ptD = 0;
Jets_qgLikelihood = 0;
JetsAK8 = 0;
JetsAK8_axismajor = 0;
JetsAK8_axisminor = 0;
JetsAK8_chargedEmEnergyFraction = 0;
JetsAK8_chargedHadronEnergyFraction = 0;
JetsAK8_chargedHadronMultiplicity = 0;
JetsAK8_chargedMultiplicity = 0;
JetsAK8_DeepMassDecorrelTagbbvsLight = 0;
JetsAK8_DeepMassDecorrelTagHbbvsQCD = 0;
JetsAK8_DeepMassDecorrelTagTvsQCD = 0;
JetsAK8_DeepMassDecorrelTagWvsQCD = 0;
JetsAK8_DeepMassDecorrelTagZbbvsQCD = 0;
JetsAK8_DeepMassDecorrelTagZHbbvsQCD = 0;
JetsAK8_DeepMassDecorrelTagZvsQCD = 0;
JetsAK8_DeepTagHbbvsQCD = 0;
JetsAK8_DeepTagTvsQCD = 0;
JetsAK8_DeepTagWvsQCD = 0;
JetsAK8_DeepTagZbbvsQCD = 0;
JetsAK8_DeepTagZvsQCD = 0;
JetsAK8_doubleBDiscriminator = 0;
JetsAK8_ecfN2b1 = 0;
JetsAK8_ecfN2b2 = 0;
JetsAK8_ecfN3b1 = 0;
JetsAK8_ecfN3b2 = 0;
JetsAK8_electronEnergyFraction = 0;
JetsAK8_electronMultiplicity = 0;
JetsAK8_girth = 0;
JetsAK8_hfEMEnergyFraction = 0;
JetsAK8_hfHadronEnergyFraction = 0;
JetsAK8_ID = 0;
JetsAK8_isHV = 0;
JetsAK8_jecFactor = 0;
JetsAK8_jecUnc = 0;
JetsAK8_jerFactor = 0;
JetsAK8_jerFactorDown = 0;
JetsAK8_jerFactorUp = 0;
JetsAK8_multiplicity = 0;
JetsAK8_muonEnergyFraction = 0;
JetsAK8_muonMultiplicity = 0;
JetsAK8_neutralEmEnergyFraction = 0;
JetsAK8_neutralHadronEnergyFraction = 0;
JetsAK8_neutralHadronMultiplicity = 0;
JetsAK8_neutralMultiplicity = 0;
JetsAK8_NsubjettinessTau1 = 0;
JetsAK8_NsubjettinessTau2 = 0;
JetsAK8_NsubjettinessTau3 = 0;
JetsAK8_NumBhadrons = 0;
JetsAK8_NumChadrons = 0;
JetsAK8_origIndex = 0;
JetsAK8_pfMassIndependentDeepDoubleBvLJetTagsProbHbb = 0;
JetsAK8_photonEnergyFraction = 0;
JetsAK8_photonMultiplicity = 0;
JetsAK8_ptD = 0;
JetsAK8_softDropMass = 0;
JetsAK8_subjets = 0;
JetsAK8_subjets_axismajor = 0;
JetsAK8_subjets_axisminor = 0;
JetsAK8_subjets_bDiscriminatorCSV = 0;
JetsAK8_subjets_jecFactor = 0;
JetsAK8_subjets_multiplicity = 0;
JetsAK8_subjets_ptD = 0;
JetsAK8Clean = 0;
JetsAK8Clean_doubleBDiscriminator = 0;
JetsAK8Clean_ID = 0;
JetsAK8Clean_softDropMass = 0;
JetsAK8Clean_subjets = 0;
JetsAK8JECdown_jerFactor = 0;
JetsAK8JECdown_origIndex = 0;
JetsAK8JECup_jerFactor = 0;
JetsAK8JECup_origIndex = 0;
JetsAK8JERdown_origIndex = 0;
JetsAK8JERup_origIndex = 0;
Jetsclean = 0;
Jetsclean_bDiscriminatorCSV = 0;
Jetsclean_bJetTagDeepCSVBvsAll = 0;
Jetsclean_hadronFlavor = 0;
Jetsclean_HTMask = 0;
Jetsclean_ID = 0;
Jetsclean_partonFlavor = 0;
JetsJECdown_jerFactor = 0;
JetsJECdown_origIndex = 0;
JetsJECup_jerFactor = 0;
JetsJECup_origIndex = 0;
JetsJERdown_origIndex = 0;
JetsJERup_origIndex = 0;
METDown = 0;
METPhiDown = 0;
METPhiUp = 0;
METUp = 0;
Muons = 0;
Muons_charge = 0;
Muons_iso = 0;
Muons_mediumID = 0;
Muons_MTW = 0;
Muons_passIso = 0;
Muons_tightID = 0;
PDFweights = 0;
Photons = 0;
Photons_electronFakes = 0;
Photons_fullID = 0;
Photons_genMatched = 0;
Photons_hadTowOverEM = 0;
Photons_hasPixelSeed = 0;
Photons_isEB = 0;
Photons_nonPrompt = 0;
Photons_passElectronVeto = 0;
Photons_pfChargedIso = 0;
Photons_pfChargedIsoRhoCorr = 0;
Photons_pfGammaIso = 0;
Photons_pfGammaIsoRhoCorr = 0;
Photons_pfNeutralIso = 0;
Photons_pfNeutralIsoRhoCorr = 0;
Photons_sigmaIetaIeta = 0;
PSweights = 0;
ScaleWeights = 0;
SignalParameters = 0;
TAPElectronTracks = 0;
TAPElectronTracks_dxypv = 0;
TAPElectronTracks_leptonMatch = 0;
TAPElectronTracks_mT = 0;
TAPElectronTracks_pfRelIso03chg = 0;
TAPElectronTracks_trkiso = 0;
TAPMuonTracks = 0;
TAPMuonTracks_dxypv = 0;
TAPMuonTracks_leptonMatch = 0;
TAPMuonTracks_mT = 0;
TAPMuonTracks_pfRelIso03chg = 0;
TAPMuonTracks_trkiso = 0;
TAPPionTracks = 0;
TAPPionTracks_dxypv = 0;
TAPPionTracks_leptonMatch = 0;
TAPPionTracks_mT = 0;
TAPPionTracks_pfRelIso03chg = 0;
TAPPionTracks_trkiso = 0;
TriggerPass = 0;
TriggerPrescales = 0;
TriggerVersion = 0;
ZCandidates = 0;
// Set branch addresses and branch pointers
if (!tree) return;
fChain = tree;
fCurrent = -1;
fChain->SetMakeClass(1);
fChain->SetBranchAddress("RunNum", &RunNum, &b_RunNum);
fChain->SetBranchAddress("LumiBlockNum", &LumiBlockNum, &b_LumiBlockNum);
fChain->SetBranchAddress("EvtNum", &EvtNum, &b_EvtNum);
fChain->SetBranchAddress("BTags", &BTags, &b_BTags);
fChain->SetBranchAddress("BTagsclean", &BTagsclean, &b_BTagsclean);
fChain->SetBranchAddress("BTagsDeepCSV", &BTagsDeepCSV, &b_BTagsDeepCSV);
fChain->SetBranchAddress("BTagsDeepCSVclean", &BTagsDeepCSVclean, &b_BTagsDeepCSVclean);
fChain->SetBranchAddress("BTagsDeepCSVJECdown", &BTagsDeepCSVJECdown, &b_BTagsDeepCSVJECdown);
fChain->SetBranchAddress("BTagsDeepCSVJECup", &BTagsDeepCSVJECup, &b_BTagsDeepCSVJECup);
fChain->SetBranchAddress("BTagsDeepCSVJERdown", &BTagsDeepCSVJERdown, &b_BTagsDeepCSVJERdown);
fChain->SetBranchAddress("BTagsDeepCSVJERup", &BTagsDeepCSVJERup, &b_BTagsDeepCSVJERup);
fChain->SetBranchAddress("BTagsJECdown", &BTagsJECdown, &b_BTagsJECdown);
fChain->SetBranchAddress("BTagsJECup", &BTagsJECup, &b_BTagsJECup);
fChain->SetBranchAddress("BTagsJERdown", &BTagsJERdown, &b_BTagsJERdown);
fChain->SetBranchAddress("BTagsJERup", &BTagsJERup, &b_BTagsJERup);
fChain->SetBranchAddress("CaloMET", &CaloMET, &b_CaloMET);
fChain->SetBranchAddress("CaloMETPhi", &CaloMETPhi, &b_CaloMETPhi);
fChain->SetBranchAddress("CrossSection", &CrossSection, &b_CrossSection);
fChain->SetBranchAddress("DeltaPhi1", &DeltaPhi1, &b_DeltaPhi1);
fChain->SetBranchAddress("DeltaPhi1_AK8", &DeltaPhi1_AK8, &b_DeltaPhi1_AK8);
fChain->SetBranchAddress("DeltaPhi1clean", &DeltaPhi1clean, &b_DeltaPhi1clean);
fChain->SetBranchAddress("DeltaPhi1JECdown", &DeltaPhi1JECdown, &b_DeltaPhi1JECdown);
fChain->SetBranchAddress("DeltaPhi1JECup", &DeltaPhi1JECup, &b_DeltaPhi1JECup);
fChain->SetBranchAddress("DeltaPhi1JERdown", &DeltaPhi1JERdown, &b_DeltaPhi1JERdown);
fChain->SetBranchAddress("DeltaPhi1JERup", &DeltaPhi1JERup, &b_DeltaPhi1JERup);
fChain->SetBranchAddress("DeltaPhi2", &DeltaPhi2, &b_DeltaPhi2);
fChain->SetBranchAddress("DeltaPhi2_AK8", &DeltaPhi2_AK8, &b_DeltaPhi2_AK8);
fChain->SetBranchAddress("DeltaPhi2clean", &DeltaPhi2clean, &b_DeltaPhi2clean);
fChain->SetBranchAddress("DeltaPhi2JECdown", &DeltaPhi2JECdown, &b_DeltaPhi2JECdown);
fChain->SetBranchAddress("DeltaPhi2JECup", &DeltaPhi2JECup, &b_DeltaPhi2JECup);
fChain->SetBranchAddress("DeltaPhi2JERdown", &DeltaPhi2JERdown, &b_DeltaPhi2JERdown);
fChain->SetBranchAddress("DeltaPhi2JERup", &DeltaPhi2JERup, &b_DeltaPhi2JERup);
fChain->SetBranchAddress("DeltaPhi3", &DeltaPhi3, &b_DeltaPhi3);
fChain->SetBranchAddress("DeltaPhi3clean", &DeltaPhi3clean, &b_DeltaPhi3clean);
fChain->SetBranchAddress("DeltaPhi3JECdown", &DeltaPhi3JECdown, &b_DeltaPhi3JECdown);
fChain->SetBranchAddress("DeltaPhi3JECup", &DeltaPhi3JECup, &b_DeltaPhi3JECup);
fChain->SetBranchAddress("DeltaPhi3JERdown", &DeltaPhi3JERdown, &b_DeltaPhi3JERdown);
fChain->SetBranchAddress("DeltaPhi3JERup", &DeltaPhi3JERup, &b_DeltaPhi3JERup);
fChain->SetBranchAddress("DeltaPhi4", &DeltaPhi4, &b_DeltaPhi4);
fChain->SetBranchAddress("DeltaPhi4clean", &DeltaPhi4clean, &b_DeltaPhi4clean);
fChain->SetBranchAddress("DeltaPhi4JECdown", &DeltaPhi4JECdown, &b_DeltaPhi4JECdown);
fChain->SetBranchAddress("DeltaPhi4JECup", &DeltaPhi4JECup, &b_DeltaPhi4JECup);
fChain->SetBranchAddress("DeltaPhi4JERdown", &DeltaPhi4JERdown, &b_DeltaPhi4JERdown);
fChain->SetBranchAddress("DeltaPhi4JERup", &DeltaPhi4JERup, &b_DeltaPhi4JERup);
fChain->SetBranchAddress("DeltaPhiMin_AK8", &DeltaPhiMin_AK8, &b_DeltaPhiMin_AK8);
fChain->SetBranchAddress("Electrons", &Electrons, &b_Electrons);
fChain->SetBranchAddress("Electrons_charge", &Electrons_charge, &b_Electrons_charge);
fChain->SetBranchAddress("Electrons_iso", &Electrons_iso, &b_Electrons_iso);
fChain->SetBranchAddress("Electrons_mediumID", &Electrons_mediumID, &b_Electrons_mediumID);
fChain->SetBranchAddress("Electrons_MTW", &Electrons_MTW, &b_Electrons_MTW);
fChain->SetBranchAddress("Electrons_passIso", &Electrons_passIso, &b_Electrons_passIso);
fChain->SetBranchAddress("Electrons_tightID", &Electrons_tightID, &b_Electrons_tightID);
fChain->SetBranchAddress("fixedGridRhoFastjetAll", &fixedGridRhoFastjetAll, &b_fixedGridRhoFastjetAll);
fChain->SetBranchAddress("GenElectrons", &GenElectrons, &b_GenElectrons);
fChain->SetBranchAddress("GenHT", &GenHT, &b_GenHT);