-
Notifications
You must be signed in to change notification settings - Fork 10
/
step1_for2017LJMet.h
2480 lines (2428 loc) · 137 KB
/
step1_for2017LJMet.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 Nov 16 20:39:17 2015 by ROOT version 6.02/05
// from TTree ljmet/ljmet
// found on file: /eos/uscms/store/user/lpcljm/LJMet_1lep_110915/X53X53_M-800_RH_TuneCUETP8M1_13TeV-madgraph-pythia8_25ns/X53X53_M-800_RH_TuneCUETP8M1_13TeV-madgraph-pythia8_25ns_1.root
//////////////////////////////////////////////////////////
#ifndef step1_h
#define step1_h
#include <iostream>
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
#include "TH1.h"
// Header file for the classes stored in the TTree if any.
#include "vector"
#include "TLorentzVector.h"
enum shift:char;
using namespace std;
class step1 {
public :
TTree *inputTree; //!pointer to the analyzed TTree or TChain
TFile *inputFile, *outputFile;
Int_t fCurrent; //!current Tree number in a TChain
Bool_t isSig;
Bool_t isTpTp;
Bool_t isBpBp;
Bool_t isXX;
Bool_t isTOP;
Bool_t isMadgraphBkg;
Bool_t isMC;
Bool_t isSM;
Bool_t isSE;
Bool_t isTT;
Bool_t isTTV;
Bool_t isVV;
Bool_t isSTt;
Bool_t isSTtW;
Bool_t isTTincMtt0to1000;
Bool_t isTTincMtt0to700;
Bool_t isTTincMtt700to1000;
Bool_t isTTincMtt1000toInf;
Bool_t outBWBW;
Bool_t outTZBW;
Bool_t outTHBW;
Bool_t outTZTH;
Bool_t outTZTZ;
Bool_t outTHTH;
Bool_t outTWTW;
Bool_t outBZTW;
Bool_t outBHTW;
Bool_t outBZBH;
Bool_t outBZBZ;
Bool_t outBHBH;
Int_t SigMass;
Int_t pileupIndex;
Bool_t isNominal;
Bool_t isBUp;
Bool_t isBDn;
Bool_t isLUp;
Bool_t isLDn;
// Fixed size dimensions of array or collections stored in the TTree if any.
// NEW BRANCHES
Float_t dnn_WJets;
Float_t dnn_ttbar;
Float_t dnn_Tprime;
vector<int> theJetAK8Truth_JetSubCalc_PtOrdered;
vector<double> deltaR_leptonicparticle_AK8_PtOrdered;
vector<int> leptonicTprimeJetIDs_DeepAK8;
vector<int> hadronicTprimeJetIDs_DeepAK8;
vector<int> leptonicBprimeJetIDs_DeepAK8;
vector<int> hadronicBprimeJetIDs_DeepAK8;
vector<double> dnn_B_DeepAK8Calc_PtOrdered;
vector<double> dnn_T_DeepAK8Calc_PtOrdered;
vector<double> dnn_H_DeepAK8Calc_PtOrdered;
vector<double> dnn_W_DeepAK8Calc_PtOrdered;
vector<double> dnn_Z_DeepAK8Calc_PtOrdered;
vector<double> dnn_J_DeepAK8Calc_PtOrdered;
Float_t Tprime1_DeepAK8_Mass;
Float_t Tprime2_DeepAK8_Mass;
Float_t Tprime1_DeepAK8_Pt;
Float_t Tprime2_DeepAK8_Pt;
Float_t Tprime1_DeepAK8_Eta;
Float_t Tprime2_DeepAK8_Eta;
Float_t Tprime1_DeepAK8_Phi;
Float_t Tprime2_DeepAK8_Phi;
Float_t Tprime1_DeepAK8_deltaR;
Float_t Tprime2_DeepAK8_deltaR;
Float_t Bprime1_DeepAK8_Mass;
Float_t Bprime2_DeepAK8_Mass;
Float_t Bprime1_DeepAK8_Pt;
Float_t Bprime2_DeepAK8_Pt;
Float_t Bprime1_DeepAK8_Eta;
Float_t Bprime2_DeepAK8_Eta;
Float_t Bprime1_DeepAK8_Phi;
Float_t Bprime2_DeepAK8_Phi;
Float_t Bprime1_DeepAK8_deltaR;
Float_t Bprime2_DeepAK8_deltaR;
Bool_t validTDecay_DeepAK8;
Bool_t validBDecay_DeepAK8;
Bool_t isLeptonic_t;
Bool_t isLeptonic_W;
Bool_t taggedBWBW_DeepAK8;
Bool_t taggedTHBW_DeepAK8;
Bool_t taggedTHTH_DeepAK8;
Bool_t taggedTZBW_DeepAK8;
Bool_t taggedTZTH_DeepAK8;
Bool_t taggedTZTZ_DeepAK8;
Bool_t taggedTWTW_DeepAK8;
Bool_t taggedBHTW_DeepAK8;
Bool_t taggedBZTW_DeepAK8;
Float_t highPtAK8Jet1_SoftDropCorrectedMass;
Float_t highPtAK8Jet2_SoftDropCorrectedMass;
Float_t highPtAK8Jet3_SoftDropCorrectedMass;
Float_t W_mass;
Float_t t_mass;
Float_t W_pt;
Float_t t_pt;
Float_t W_dRLep;
Float_t t_dRWb;
Float_t probSum_DeepAK8_decay;
Float_t probSum_DeepAK8_all;
Float_t probSum_DeepAK8_four;
Int_t nB_DeepAK8;
Int_t nH_DeepAK8;
Int_t nJ_DeepAK8;
Int_t nT_DeepAK8;
Int_t nW_DeepAK8;
Int_t nZ_DeepAK8;
Int_t isElectron;
Int_t isMuon;
Int_t MCPastTrigger;
Int_t MCPastTriggerOR;
Int_t MCPastTriggerLepTight;
Int_t MCPastTriggerHTTight;
Int_t DataPastTrigger;
Int_t DataPastTriggerOR;
Int_t DataPastTriggerLepTight;
Int_t DataPastTriggerHTTight;
Float_t pileupWeight;
Float_t pileupWeightUp;
Float_t pileupWeightDown;
Float_t TrigEffAltWeight;
Float_t TrigEffWeight;
Float_t TrigEffWeightUncert;
Float_t isoSF;
Float_t lepIdSF;
Float_t MuTrkSF;
Float_t EGammaGsfSF;
Float_t JetSF_80X;
Float_t JetSFup_80X;
Float_t JetSFdn_80X;
Float_t JetSF_pTNbwflat;
Float_t JetSFup_pTNbwflat;
Float_t JetSFdn_pTNbwflat;
Float_t JetSFupwide_pTNbwflat;
Float_t JetSFdnwide_pTNbwflat;
Float_t HTSF_Exp;
Float_t HTSF_ExpUp;
Float_t HTSF_ExpDn;
Float_t HTSF_Pol;
Float_t HTSF_PolUp;
Float_t HTSF_PolDn;
vector<double> renormWeights;
vector<double> alphaSWeights;
vector<double> pdfWeights;
vector<double> pdfNewWeights;
float_t pdfNewNominalWeight;
Float_t leptonPt_singleLepCalc;
Float_t leptonEta_singleLepCalc;
Float_t leptonPhi_singleLepCalc;
Float_t leptonEnergy_singleLepCalc;
Float_t leptonMVAValue_singleLepCalc;
Float_t leptonMiniIso_singleLepCalc;
Float_t leptonRelIso_singleLepCalc;
Float_t leptonDxy_singleLepCalc;
Float_t leptonDz_singleLepCalc;
Int_t leptonCharge_singleLepCalc;
Int_t elTrigPresel_singleLepCalc;
Int_t NJets_JetSubCalc;
Int_t NJetsCSV_JetSubCalc;
Int_t NJetsCSVwithSF_JetSubCalc;
Int_t NJetsCSVnotH_JetSubCalc;
Int_t NJetsCSVnotPH_JetSubCalc;
vector<int> maxProb_JetSubCalc_PtOrdered;
vector<int> dnn_largest_BestCalc_PtOrdered;
vector<int> dnn_largest_DeepAK8Calc_PtOrdered;
vector<int> decorr_largest_DeepAK8Calc_PtOrdered;
vector<int> theJetAK8SDSubjetIndex_JetSubCalc_PtOrdered;
vector<int> theJetAK8SDSubjetSize_JetSubCalc_PtOrdered;
vector<int> NJetsCSVwithSF_JetSubCalc_shifts;
vector<int> NJetsCSVnotH_JetSubCalc_shifts;
vector<int> NJetsCSVnotPH_JetSubCalc_shifts;
vector<double> theJetPt_JetSubCalc_PtOrdered;
vector<double> theJetEta_JetSubCalc_PtOrdered;
vector<double> theJetPhi_JetSubCalc_PtOrdered;
vector<double> theJetEnergy_JetSubCalc_PtOrdered;
vector<double> theJetDeepCSVb_JetSubCalc_PtOrdered;
vector<double> theJetDeepCSVbb_JetSubCalc_PtOrdered;
vector<int> theJetHFlav_JetSubCalc_PtOrdered;
vector<int> theJetPFlav_JetSubCalc_PtOrdered;
vector<int> theJetBTag_JetSubCalc_PtOrdered;
vector<int> theJetBTag_bSFup_JetSubCalc_PtOrdered;
vector<int> theJetBTag_bSFdn_JetSubCalc_PtOrdered;
vector<int> theJetBTag_lSFup_JetSubCalc_PtOrdered;
vector<int> theJetBTag_lSFdn_JetSubCalc_PtOrdered;
Float_t AK4HTpMETpLepPt;
Float_t AK4HT;
Float_t minMleppJet;
Float_t deltaR_lepMinMlj;
Float_t minDR_lepJet;
Float_t ptRel_lepJet;
Float_t ptRel_lepAK8;
Float_t minDPhi_MetJet;
Float_t MT_lepMet;
Float_t MT_lepMetmod;
vector<double> deltaR_lepJets;
vector<double> deltaPhi_lepJets;
vector<double> mass_lepJets;
Float_t BJetLeadPt;
Float_t minMleppBjetPt;
Float_t minMleppBjet;
Float_t deltaR_lepMinMlb;
vector<double> BJetLeadPt_shifts;
vector<double> minMleppBjetPt_shifts;
vector<double> minMleppBjet_shifts;
vector<double> deltaR_lepBJets;
vector<double> deltaR_lepBJets_bSFup;
vector<double> deltaR_lepBJets_bSFdn;
vector<double> deltaR_lepBJets_lSFup;
vector<double> deltaR_lepBJets_lSFdn;
vector<double> deltaPhi_lepBJets;
vector<double> deltaPhi_lepBJets_bSFup;
vector<double> deltaPhi_lepBJets_bSFdn;
vector<double> deltaPhi_lepBJets_lSFup;
vector<double> deltaPhi_lepBJets_lSFdn;
vector<double> mass_lepBJets;
vector<double> mass_lepBJets_bSFup;
vector<double> mass_lepBJets_bSFdn;
vector<double> mass_lepBJets_lSFup;
vector<double> mass_lepBJets_lSFdn;
Int_t NJetsAK8_JetSubCalc;
Float_t minDR_leadAK8otherAK8;
Float_t minDR_lepAK8;
vector<double> deltaR_lepAK8s;
vector<double> deltaPhi_lepAK8s;
vector<double> mass_lepAK8s;
vector<double> theJetAK8CHSPrunedMass_JetSubCalc_PtOrdered;
vector<double> theJetAK8PrunedMassWtagUncerts_JetSubCalc_PtOrdered;
vector<double> theJetAK8PrunedMassWtagUncerts_JMSup_JetSubCalc_PtOrdered;
vector<double> theJetAK8PrunedMassWtagUncerts_JMSdn_JetSubCalc_PtOrdered;
vector<double> theJetAK8PrunedMassWtagUncerts_JMRup_JetSubCalc_PtOrdered;
vector<double> theJetAK8PrunedMassWtagUncerts_JMRdn_JetSubCalc_PtOrdered;
vector<double> theJetAK8NjettinessTau1_JetSubCalc_PtOrdered;
vector<double> theJetAK8NjettinessTau2_JetSubCalc_PtOrdered;
vector<double> theJetAK8NjettinessTau3_JetSubCalc_PtOrdered;
vector<double> theJetAK8CHSTau1_JetSubCalc_PtOrdered;
vector<double> theJetAK8CHSTau2_JetSubCalc_PtOrdered;
vector<double> theJetAK8CHSTau3_JetSubCalc_PtOrdered;
vector<double> theJetAK8Pt_JetSubCalc_PtOrdered;
vector<double> theJetAK8Eta_JetSubCalc_PtOrdered;
vector<double> theJetAK8Phi_JetSubCalc_PtOrdered;
vector<double> theJetAK8Mass_JetSubCalc_PtOrdered;
vector<double> theJetAK8Energy_JetSubCalc_PtOrdered;
vector<double> theJetAK8CHSSoftDropMass_JetSubCalc_PtOrdered;
vector<double> theJetAK8SoftDropRaw_PtOrdered;
vector<double> theJetAK8SoftDropCorr_PtOrdered;
vector<double> theJetAK8SoftDrop_PtOrdered;
vector<double> theJetAK8DoubleB_JetSubCalc_PtOrdered;
vector<double> theJetAK8PUPPISoftDrop_JMSup_PtOrdered;
vector<double> theJetAK8PUPPISoftDrop_JMSdn_PtOrdered;
vector<double> theJetAK8PUPPISoftDrop_JMRup_PtOrdered;
vector<double> theJetAK8PUPPISoftDrop_JMRdn_PtOrdered;
vector<double> theJetAK8SDSubjetNCSVM_PtOrdered;
vector<double> theJetAK8SDSubjetNCSVM_bSFup_PtOrdered;
vector<double> theJetAK8SDSubjetNCSVM_bSFdn_PtOrdered;
vector<double> theJetAK8SDSubjetNCSVM_lSFup_PtOrdered;
vector<double> theJetAK8SDSubjetNCSVM_lSFdn_PtOrdered;
vector<int> theJetAK8Wmatch_JetSubCalc_PtOrdered;
vector<int> theJetAK8Tmatch_JetSubCalc_PtOrdered;
vector<int> theJetAK8Zmatch_JetSubCalc_PtOrdered;
vector<int> theJetAK8Hmatch_JetSubCalc_PtOrdered;
vector<double> theJetAK8MatchedPt_JetSubCalc_PtOrdered;
vector<double> theJetAK8SoftDropCorr_JetSubCalc_PtOrdered;
vector<int> theJetAK8SDSubjetNDeepCSVMSF_JetSubCalc_PtOrdered;
vector<int> theJetAK8SDSubjetNDeepCSVL_JetSubCalc_PtOrdered;
Float_t topPt;
Float_t topPtGen;
Float_t topMass;
Float_t tmass;
Float_t wmass;
Float_t genTopPt;
Float_t genAntiTopPt;
Float_t topPtWeight13TeV;
// Declaration of leaf types
Bool_t flagBadMu_singleLepCalc;
Bool_t flagDupMu_singleLepCalc;
Bool_t isBHBH_TpTpCalc;
Bool_t isBHTW_TpTpCalc;
Bool_t isBWBW_TpTpCalc;
Bool_t isBZBH_TpTpCalc;
Bool_t isBZBZ_TpTpCalc;
Bool_t isBZTW_TpTpCalc;
Bool_t isTHBW_TpTpCalc;
Bool_t isTHTH_TpTpCalc;
Bool_t isTWTW_TpTpCalc;
Bool_t isTZBW_TpTpCalc;
Bool_t isTZTH_TpTpCalc;
Bool_t isTZTZ_TpTpCalc;
Bool_t isTau_singleLepCalc;
Int_t NLeptonDecays_TpTpCalc;
Int_t NPartonsfromHEPUEP_singleLepCalc;
Int_t dataE_singleLepCalc;
Int_t dataM_singleLepCalc;
Int_t genTDLID_singleLepCalc;
Int_t lumi_CommonCalc;
Int_t nAllJets_CommonCalc;
Int_t nLooseMuons_CommonCalc;
Int_t nPV_singleLepCalc;
Int_t nPileupInteractions_singleLepCalc;
Int_t nSelBtagJets_CommonCalc;
Int_t nSelElectrons_CommonCalc;
Int_t nSelJets_CommonCalc;
Int_t nTightMuons_CommonCalc;
Int_t nTrueInteractions_singleLepCalc;
Int_t run_CommonCalc;
Long64_t event_CommonCalc;
Double_t AK4HT_singleLepCalc;
Double_t HTfromHEPUEP_singleLepCalc;
Double_t L1NonPrefiringProbDown_CommonCalc;
Double_t L1NonPrefiringProbUp_CommonCalc;
Double_t L1NonPrefiringProb_CommonCalc;
Double_t LHEweightorig_singleLepCalc;
Double_t MCWeight_singleLepCalc;
Double_t corr_met_jerdn_phi_singleLepCalc;
Double_t corr_met_jerdn_singleLepCalc;
Double_t corr_met_jerup_phi_singleLepCalc;
Double_t corr_met_jerup_singleLepCalc;
Double_t corr_met_jesdn_phi_singleLepCalc;
Double_t corr_met_jesdn_singleLepCalc;
Double_t corr_met_jesup_phi_singleLepCalc;
Double_t corr_met_jesup_singleLepCalc;
Double_t corr_met_phi_singleLepCalc;
Double_t corr_met_singleLepCalc;
Double_t corr_metmod_phi_singleLepCalc;
Double_t corr_metmod_singleLepCalc;
Double_t corr_metnohf_phi_singleLepCalc;
Double_t corr_metnohf_singleLepCalc;
Double_t genTDLEnergy_singleLepCalc;
Double_t genTDLEta_singleLepCalc;
Double_t genTDLPhi_singleLepCalc;
Double_t genTDLPt_singleLepCalc;
Double_t met_phi_singleLepCalc;
Double_t met_singleLepCalc;
Double_t metmod_phi_singleLepCalc;
Double_t metmod_singleLepCalc;
Double_t metnohf_phi_singleLepCalc;
Double_t metnohf_singleLepCalc;
Double_t theJetHT_JetSubCalc;
Double_t theJetLeadPt_JetSubCalc;
Double_t theJetSubLeadPt_JetSubCalc;
Double_t ttbarMass_TTbarMassCalc;
vector<int> *AK4JetBTag_bSFdn_singleLepCalc;
vector<int> *AK4JetBTag_bSFup_singleLepCalc;
vector<int> *AK4JetBTag_lSFdn_singleLepCalc;
vector<int> *AK4JetBTag_lSFup_singleLepCalc;
vector<int> *AK4JetBTag_singleLepCalc;
vector<int> *AK4JetFlav_singleLepCalc;
vector<int> *HadronicVHtID_JetSubCalc;
vector<int> *HadronicVHtStatus_JetSubCalc;
vector<int> *HdecayID_TpTpCalc;
vector<int> *HdecayIndex_TpTpCalc;
vector<int> *LHEweightids_singleLepCalc;
vector<int> *LeptonID_TpTpCalc;
vector<int> *LeptonParentID_TpTpCalc;
vector<int> *NewPDFids_singleLepCalc;
vector<int> *WdecayID_TpTpCalc;
vector<int> *WdecayIndex_TpTpCalc;
vector<int> *ZdecayID_TpTpCalc;
vector<int> *ZdecayIndex_TpTpCalc;
vector<int> *allTopsID_TTbarMassCalc;
vector<int> *allTopsStatus_TTbarMassCalc;
vector<int> *bPrimeID_TpTpCalc;
vector<int> *bPrimeNDaughters_TpTpCalc;
vector<int> *bPrimeStatus_TpTpCalc;
vector<int> *bosonID_TpTpCalc;
vector<int> *decorr_largest_DeepAK8Calc;
vector<int> *dnn_largest_BestCalc;
vector<int> *dnn_largest_DeepAK8Calc;
vector<int> *elChargeConsistent_singleLepCalc;
vector<int> *elCharge_singleLepCalc;
vector<int> *elCtfCharge_singleLepCalc;
vector<int> *elGsfCharge_singleLepCalc;
vector<int> *elIsEBEE_singleLepCalc;
vector<int> *elIsMVALooseIso_singleLepCalc;
vector<int> *elIsMVALoose_singleLepCalc;
vector<int> *elIsMVATight80_singleLepCalc;
vector<int> *elIsMVATight90_singleLepCalc;
vector<int> *elIsMVATightIso80_singleLepCalc;
vector<int> *elIsMVATightIso90_singleLepCalc;
vector<int> *elMHits_singleLepCalc;
vector<int> *elMatched_singleLepCalc;
vector<int> *elMother_id_singleLepCalc;
vector<int> *elMother_status_singleLepCalc;
vector<int> *elNotConversion_singleLepCalc;
vector<int> *elNumberOfMothers_singleLepCalc;
vector<int> *elPdgId_singleLepCalc;
vector<int> *elScPixCharge_singleLepCalc;
vector<int> *elStatus_singleLepCalc;
vector<int> *elVtxFitConv_singleLepCalc;
vector<int> *electron_1_hltmatched_singleLepCalc;
vector<int> *genBSLID_singleLepCalc;
vector<int> *genID_singleLepCalc;
vector<int> *genIndex_singleLepCalc;
vector<int> *genMotherID_singleLepCalc;
vector<int> *genMotherIndex_singleLepCalc;
vector<int> *genStatus_singleLepCalc;
vector<int> *genTtbarIdCategory_TTbarMassCalc;
vector<int> *genTtbarId_TTbarMassCalc;
vector<int> *maxProb_JetSubCalc;
vector<int> *muCharge_singleLepCalc;
vector<int> *muGlobal_singleLepCalc;
vector<int> *muIsGlobalHighPt_singleLepCalc;
vector<int> *muIsLoose_singleLepCalc;
vector<int> *muIsMediumPrompt_singleLepCalc;
vector<int> *muIsMedium_singleLepCalc;
vector<int> *muIsMiniIsoLoose_singleLepCalc;
vector<int> *muIsMiniIsoMedium_singleLepCalc;
vector<int> *muIsMiniIsoTight_singleLepCalc;
vector<int> *muIsMiniIsoVeryTight_singleLepCalc;
vector<int> *muIsMvaLoose_singleLepCalc;
vector<int> *muIsMvaMedium_singleLepCalc;
vector<int> *muIsMvaTight_singleLepCalc;
vector<int> *muIsTight_singleLepCalc;
vector<int> *muIsTrkHighPt_singleLepCalc;
vector<int> *muMatched_singleLepCalc;
vector<int> *muMother_id_singleLepCalc;
vector<int> *muMother_status_singleLepCalc;
vector<int> *muNMatchedStations_singleLepCalc;
vector<int> *muNTrackerLayers_singleLepCalc;
vector<int> *muNValMuHits_singleLepCalc;
vector<int> *muNValPixelHits_singleLepCalc;
vector<int> *muNumberOfMothers_singleLepCalc;
vector<int> *muPdgId_singleLepCalc;
vector<int> *muStatus_singleLepCalc;
vector<int> *muon_1_hltmatched_singleLepCalc;
vector<int> *quarkID_TpTpCalc;
vector<int> *tPrimeID_TpTpCalc;
vector<int> *tPrimeNDaughters_TpTpCalc;
vector<int> *tPrimeStatus_TpTpCalc;
vector<int> *theJetAK8SDSubjetBTag_JetSubCalc;
vector<int> *theJetAK8SDSubjetHFlav_JetSubCalc;
vector<int> *theJetAK8SDSubjetIndex_JetSubCalc;
vector<int> *theJetAK8SDSubjetNDeepCSVL_JetSubCalc;
vector<int> *theJetAK8SDSubjetNDeepCSVMSF_JetSubCalc;
vector<int> *theJetAK8SDSubjetNDeepCSVM_bSFdn_JetSubCalc;
vector<int> *theJetAK8SDSubjetNDeepCSVM_bSFup_JetSubCalc;
vector<int> *theJetAK8SDSubjetNDeepCSVM_lSFdn_JetSubCalc;
vector<int> *theJetAK8SDSubjetNDeepCSVM_lSFup_JetSubCalc;
vector<int> *theJetAK8SDSubjetSize_JetSubCalc;
vector<int> *theJetAK8nDaughters_JetSubCalc;
vector<int> *theJetBTag_JetSubCalc;
vector<int> *theJetBTag_bSFdn_JetSubCalc;
vector<int> *theJetBTag_bSFup_JetSubCalc;
vector<int> *theJetBTag_lSFdn_JetSubCalc;
vector<int> *theJetBTag_lSFup_JetSubCalc;
vector<int> *theJetHFlav_JetSubCalc;
vector<int> *theJetPFlav_JetSubCalc;
vector<int> *theJetnDaughters_JetSubCalc;
vector<int> *topID_TTbarMassCalc;
vector<int> *topWID_TTbarMassCalc;
vector<int> *topbID_TTbarMassCalc;
vector<int> *viSelMCTriggersEl_singleLepCalc;
vector<int> *viSelMCTriggersMu_singleLepCalc;
vector<int> *viSelTriggersEl_singleLepCalc;
vector<int> *viSelTriggersMu_singleLepCalc;
vector<double> *AK4JetBDeepCSVb_singleLepCalc;
vector<double> *AK4JetBDeepCSVbb_singleLepCalc;
vector<double> *AK4JetBDeepCSVc_singleLepCalc;
vector<double> *AK4JetBDeepCSVudsg_singleLepCalc;
vector<double> *AK4JetBDisc_singleLepCalc;
vector<double> *AK4JetEnergy_singleLepCalc;
vector<double> *AK4JetEta_singleLepCalc;
vector<double> *AK4JetPhi_singleLepCalc;
vector<double> *AK4JetPt_singleLepCalc;
vector<double> *AK8JetCSV_BestCalc;
vector<double> *AK8JetCSV_singleLepCalc;
vector<double> *AK8JetDoubleB_singleLepCalc;
vector<double> *AK8JetEnergy_BestCalc;
vector<double> *AK8JetEnergy_singleLepCalc;
vector<double> *AK8JetEta_BestCalc;
vector<double> *AK8JetEta_singleLepCalc;
vector<double> *AK8JetPhi_BestCalc;
vector<double> *AK8JetPhi_singleLepCalc;
vector<double> *AK8JetPt_BestCalc;
vector<double> *AK8JetPt_singleLepCalc;
vector<double> *FWmoment1H_BestCalc;
vector<double> *FWmoment1W_BestCalc;
vector<double> *FWmoment1Z_BestCalc;
vector<double> *FWmoment1top_BestCalc;
vector<double> *FWmoment2H_BestCalc;
vector<double> *FWmoment2W_BestCalc;
vector<double> *FWmoment2Z_BestCalc;
vector<double> *FWmoment2top_BestCalc;
vector<double> *FWmoment3H_BestCalc;
vector<double> *FWmoment3W_BestCalc;
vector<double> *FWmoment3Z_BestCalc;
vector<double> *FWmoment3top_BestCalc;
vector<double> *FWmoment4H_BestCalc;
vector<double> *FWmoment4W_BestCalc;
vector<double> *FWmoment4Z_BestCalc;
vector<double> *FWmoment4top_BestCalc;
vector<double> *HadronicVHtD0E_JetSubCalc;
vector<double> *HadronicVHtD0Eta_JetSubCalc;
vector<double> *HadronicVHtD0Phi_JetSubCalc;
vector<double> *HadronicVHtD0Pt_JetSubCalc;
vector<double> *HadronicVHtD1E_JetSubCalc;
vector<double> *HadronicVHtD1Eta_JetSubCalc;
vector<double> *HadronicVHtD1Phi_JetSubCalc;
vector<double> *HadronicVHtD1Pt_JetSubCalc;
vector<double> *HadronicVHtD2E_JetSubCalc;
vector<double> *HadronicVHtD2Eta_JetSubCalc;
vector<double> *HadronicVHtD2Phi_JetSubCalc;
vector<double> *HadronicVHtD2Pt_JetSubCalc;
vector<double> *HadronicVHtEnergy_JetSubCalc;
vector<double> *HadronicVHtEta_JetSubCalc;
vector<double> *HadronicVHtPhi_JetSubCalc;
vector<double> *HadronicVHtPt_JetSubCalc;
vector<double> *HdecayEnergy_TpTpCalc;
vector<double> *HdecayEta_TpTpCalc;
vector<double> *HdecayPhi_TpTpCalc;
vector<double> *HdecayPt_TpTpCalc;
vector<double> *LHEweights_singleLepCalc;
vector<double> *LeptonEnergy_TpTpCalc;
vector<double> *LeptonEta_TpTpCalc;
vector<double> *LeptonPhi_TpTpCalc;
vector<double> *LeptonPt_TpTpCalc;
vector<double> *NewPDFweightsBase_singleLepCalc;
vector<double> *NewPDFweights_singleLepCalc;
vector<double> *Njets_H_BestCalc;
vector<double> *Njets_W_BestCalc;
vector<double> *Njets_Z_BestCalc;
vector<double> *Njets_jet_BestCalc;
vector<double> *Njets_orig_BestCalc;
vector<double> *Njets_top_BestCalc;
vector<double> *SDmass_BestCalc;
vector<double> *WdecayEnergy_TpTpCalc;
vector<double> *WdecayEta_TpTpCalc;
vector<double> *WdecayPhi_TpTpCalc;
vector<double> *WdecayPt_TpTpCalc;
vector<double> *ZdecayEnergy_TpTpCalc;
vector<double> *ZdecayEta_TpTpCalc;
vector<double> *ZdecayPhi_TpTpCalc;
vector<double> *ZdecayPt_TpTpCalc;
vector<double> *allTopsEnergy_TTbarMassCalc;
vector<double> *allTopsEta_TTbarMassCalc;
vector<double> *allTopsPhi_TTbarMassCalc;
vector<double> *allTopsPt_TTbarMassCalc;
vector<double> *aplanarityH_BestCalc;
vector<double> *aplanarityW_BestCalc;
vector<double> *aplanarityZ_BestCalc;
vector<double> *aplanaritytop_BestCalc;
vector<double> *bDisc1_BestCalc;
vector<double> *bDisc2_BestCalc;
vector<double> *bDisc_BestCalc;
vector<double> *bPrimeEnergy_TpTpCalc;
vector<double> *bPrimeEta_TpTpCalc;
vector<double> *bPrimeMass_TpTpCalc;
vector<double> *bPrimePhi_TpTpCalc;
vector<double> *bPrimePt_TpTpCalc;
vector<double> *bosonEnergy_TpTpCalc;
vector<double> *bosonEta_TpTpCalc;
vector<double> *bosonPhi_TpTpCalc;
vector<double> *bosonPt_TpTpCalc;
vector<double> *decorr_B_DeepAK8Calc;
vector<double> *decorr_C_DeepAK8Calc;
vector<double> *decorr_H_DeepAK8Calc;
vector<double> *decorr_J_DeepAK8Calc;
vector<double> *decorr_T_DeepAK8Calc;
vector<double> *decorr_W_DeepAK8Calc;
vector<double> *decorr_Z_DeepAK8Calc;
vector<double> *dnn_B_BestCalc;
vector<double> *dnn_B_DeepAK8Calc;
vector<double> *dnn_C_DeepAK8Calc;
vector<double> *dnn_H_DeepAK8Calc;
vector<double> *dnn_Higgs_BestCalc;
vector<double> *dnn_J_DeepAK8Calc;
vector<double> *dnn_QCD_BestCalc;
vector<double> *dnn_T_DeepAK8Calc;
vector<double> *dnn_Top_BestCalc;
vector<double> *dnn_W_BestCalc;
vector<double> *dnn_W_DeepAK8Calc;
vector<double> *dnn_Z_BestCalc;
vector<double> *dnn_Z_DeepAK8Calc;
vector<double> *elAEff_singleLepCalc;
vector<double> *elChIso_singleLepCalc;
vector<double> *elD0_singleLepCalc;
vector<double> *elDEtaSCTkAtVtx_singleLepCalc;
vector<double> *elDPhiSCTkAtVtx_singleLepCalc;
vector<double> *elDR03TkSumPt_singleLepCalc;
vector<double> *elDZ_singleLepCalc;
vector<double> *elDeta_singleLepCalc;
vector<double> *elDphi_singleLepCalc;
vector<double> *elDxy_singleLepCalc;
vector<double> *elEcalPFClusterIso_singleLepCalc;
vector<double> *elEnergy_singleLepCalc;
vector<double> *elEtaVtx_singleLepCalc;
vector<double> *elEta_singleLepCalc;
vector<double> *elGen_Reco_dr_singleLepCalc;
vector<double> *elHcalPFClusterIso_singleLepCalc;
vector<double> *elHoE_singleLepCalc;
vector<double> *elIsLoose_singleLepCalc;
vector<double> *elIsMedium_singleLepCalc;
vector<double> *elIsTight_singleLepCalc;
vector<double> *elIsVeto_singleLepCalc;
vector<double> *elMVAValue_iso_singleLepCalc;
vector<double> *elMVAValue_singleLepCalc;
vector<double> *elMatchedEnergy_singleLepCalc;
vector<double> *elMatchedEta_singleLepCalc;
vector<double> *elMatchedPhi_singleLepCalc;
vector<double> *elMatchedPt_singleLepCalc;
vector<double> *elMiniIso_singleLepCalc;
vector<double> *elMother_energy_singleLepCalc;
vector<double> *elMother_eta_singleLepCalc;
vector<double> *elMother_phi_singleLepCalc;
vector<double> *elMother_pt_singleLepCalc;
vector<double> *elNhIso_singleLepCalc;
vector<double> *elOoemoop_singleLepCalc;
vector<double> *elPFEta_singleLepCalc;
vector<double> *elPFPhi_singleLepCalc;
vector<double> *elPhIso_singleLepCalc;
vector<double> *elPhiVtx_singleLepCalc;
vector<double> *elPhi_singleLepCalc;
vector<double> *elPt_singleLepCalc;
vector<double> *elRelIso_singleLepCalc;
vector<double> *elRhoIso_singleLepCalc;
vector<double> *elSCE_singleLepCalc;
vector<double> *elSihih_singleLepCalc;
vector<double> *et_BestCalc;
vector<double> *eta_BestCalc;
vector<double> *evtWeightsMC_singleLepCalc;
vector<double> *genBSLEnergy_singleLepCalc;
vector<double> *genBSLEta_singleLepCalc;
vector<double> *genBSLPhi_singleLepCalc;
vector<double> *genBSLPt_singleLepCalc;
vector<double> *genEnergy_singleLepCalc;
vector<double> *genEta_singleLepCalc;
vector<double> *genJetEnergy_singleLepCalc;
vector<double> *genJetEta_singleLepCalc;
vector<double> *genJetPhi_singleLepCalc;
vector<double> *genJetPt_singleLepCalc;
vector<double> *genPhi_singleLepCalc;
vector<double> *genPt_singleLepCalc;
vector<double> *isotropyH_BestCalc;
vector<double> *isotropyW_BestCalc;
vector<double> *isotropyZ_BestCalc;
vector<double> *isotropytop_BestCalc;
vector<double> *m1234H_BestCalc;
vector<double> *m1234W_BestCalc;
vector<double> *m1234Z_BestCalc;
vector<double> *m1234_jet_BestCalc;
vector<double> *m1234top_BestCalc;
vector<double> *m12H_BestCalc;
vector<double> *m12W_BestCalc;
vector<double> *m12Z_BestCalc;
vector<double> *m12_jet_BestCalc;
vector<double> *m12top_BestCalc;
vector<double> *m13H_BestCalc;
vector<double> *m13W_BestCalc;
vector<double> *m13Z_BestCalc;
vector<double> *m13_jet_BestCalc;
vector<double> *m13top_BestCalc;
vector<double> *m23H_BestCalc;
vector<double> *m23W_BestCalc;
vector<double> *m23Z_BestCalc;
vector<double> *m23_jet_BestCalc;
vector<double> *m23top_BestCalc;
vector<double> *mass_BestCalc;
vector<double> *muChIso_singleLepCalc;
vector<double> *muChi2_singleLepCalc;
vector<double> *muDxy_singleLepCalc;
vector<double> *muDz_singleLepCalc;
vector<double> *muEnergy_singleLepCalc;
vector<double> *muEta_singleLepCalc;
vector<double> *muGIso_singleLepCalc;
vector<double> *muGen_Reco_dr_singleLepCalc;
vector<double> *muInnerEta_singleLepCalc;
vector<double> *muInnerPhi_singleLepCalc;
vector<double> *muInnerPt_singleLepCalc;
vector<double> *muMatchedEnergy_singleLepCalc;
vector<double> *muMatchedEta_singleLepCalc;
vector<double> *muMatchedPhi_singleLepCalc;
vector<double> *muMatchedPt_singleLepCalc;
vector<double> *muMiniIsoDB_singleLepCalc;
vector<double> *muMiniIso_singleLepCalc;
vector<double> *muMother_energy_singleLepCalc;
vector<double> *muMother_eta_singleLepCalc;
vector<double> *muMother_phi_singleLepCalc;
vector<double> *muMother_pt_singleLepCalc;
vector<double> *muNhIso_singleLepCalc;
vector<double> *muPhi_singleLepCalc;
vector<double> *muPt_singleLepCalc;
vector<double> *muPuIso_singleLepCalc;
vector<double> *muRelIso_singleLepCalc;
vector<double> *pzOverp_H_BestCalc;
vector<double> *pzOverp_W_BestCalc;
vector<double> *pzOverp_Z_BestCalc;
vector<double> *pzOverp_jet_BestCalc;
vector<double> *pzOverp_top_BestCalc;
vector<double> *q_BestCalc;
vector<double> *quarkEnergy_TpTpCalc;
vector<double> *quarkEta_TpTpCalc;
vector<double> *quarkPhi_TpTpCalc;
vector<double> *quarkPt_TpTpCalc;
vector<double> *sphericityH_BestCalc;
vector<double> *sphericityW_BestCalc;
vector<double> *sphericityZ_BestCalc;
vector<double> *sphericitytop_BestCalc;
vector<double> *tPrimeEnergy_TpTpCalc;
vector<double> *tPrimeEta_TpTpCalc;
vector<double> *tPrimeMass_TpTpCalc;
vector<double> *tPrimePhi_TpTpCalc;
vector<double> *tPrimePt_TpTpCalc;
vector<double> *tau21_BestCalc;
vector<double> *tau32_BestCalc;
vector<double> *theJetAK8CHSEta_JetSubCalc;
vector<double> *theJetAK8CHSMass_JetSubCalc;
vector<double> *theJetAK8CHSPhi_JetSubCalc;
vector<double> *theJetAK8CHSPrunedMass_JetSubCalc;
vector<double> *theJetAK8CHSPt_JetSubCalc;
vector<double> *theJetAK8CHSSoftDropMass_JetSubCalc;
vector<double> *theJetAK8CHSTau1_JetSubCalc;
vector<double> *theJetAK8CHSTau2_JetSubCalc;
vector<double> *theJetAK8CHSTau3_JetSubCalc;
vector<double> *theJetAK8CSV_JetSubCalc;
vector<double> *theJetAK8DoubleB_JetSubCalc;
vector<double> *theJetAK8Energy_JetSubCalc;
vector<double> *theJetAK8Eta_JetSubCalc;
vector<double> *theJetAK8GenDR_JetSubCalc;
vector<double> *theJetAK8GenMass_JetSubCalc;
vector<double> *theJetAK8GenPt_JetSubCalc;
vector<double> *theJetAK8JetCharge_JetSubCalc;
vector<double> *theJetAK8Mass_JetSubCalc;
vector<double> *theJetAK8NjettinessTau1_JetSubCalc;
vector<double> *theJetAK8NjettinessTau2_JetSubCalc;
vector<double> *theJetAK8NjettinessTau3_JetSubCalc;
vector<double> *theJetAK8Phi_JetSubCalc;
vector<double> *theJetAK8Pt_JetSubCalc;
vector<double> *theJetAK8SDSubjetCSVb_JetSubCalc;
vector<double> *theJetAK8SDSubjetCSVbb_JetSubCalc;
vector<double> *theJetAK8SDSubjetCSVc_JetSubCalc;
vector<double> *theJetAK8SDSubjetCSVudsg_JetSubCalc;
vector<double> *theJetAK8SDSubjetDR_JetSubCalc;
vector<double> *theJetAK8SDSubjetEta_JetSubCalc;
vector<double> *theJetAK8SDSubjetMass_JetSubCalc;
vector<double> *theJetAK8SDSubjetPhi_JetSubCalc;
vector<double> *theJetAK8SDSubjetPt_JetSubCalc;
vector<double> *theJetAK8SoftDropCorr_JetSubCalc;
vector<double> *theJetAK8SoftDropRaw_JetSubCalc;
vector<double> *theJetAK8SoftDrop_JMRdn_JetSubCalc;
vector<double> *theJetAK8SoftDrop_JMRup_JetSubCalc;
vector<double> *theJetAK8SoftDrop_JMSdn_JetSubCalc;
vector<double> *theJetAK8SoftDrop_JMSup_JetSubCalc;
vector<double> *theJetAK8SoftDrop_JetSubCalc;
vector<double> *theJetAK8SoftDropn2b1_JetSubCalc;
vector<double> *theJetAK8SoftDropn2b2_JetSubCalc;
vector<double> *theJetAK8SoftDropn3b1_JetSubCalc;
vector<double> *theJetAK8SoftDropn3b2_JetSubCalc;
vector<double> *theJetDeepCSVb_JetSubCalc;
vector<double> *theJetDeepCSVbb_JetSubCalc;
vector<double> *theJetDeepCSVc_JetSubCalc;
vector<double> *theJetDeepCSVudsg_JetSubCalc;
vector<double> *theJetEnergy_JetSubCalc;
vector<double> *theJetEta_JetSubCalc;
vector<double> *theJetPhi_JetSubCalc;
vector<double> *theJetPileupJetId_JetSubCalc;
vector<double> *theJetPt_JetSubCalc;
vector<double> *thrustH_BestCalc;
vector<double> *thrustW_BestCalc;
vector<double> *thrustZ_BestCalc;
vector<double> *thrusttop_BestCalc;
vector<double> *topEnergy_TTbarMassCalc;
vector<double> *topEta_TTbarMassCalc;
vector<double> *topMass_TTbarMassCalc;
vector<double> *topPhi_TTbarMassCalc;
vector<double> *topPt_TTbarMassCalc;
vector<double> *topWEnergy_TTbarMassCalc;
vector<double> *topWEta_TTbarMassCalc;
vector<double> *topWPhi_TTbarMassCalc;
vector<double> *topWPt_TTbarMassCalc;
vector<double> *topbEnergy_TTbarMassCalc;
vector<double> *topbEta_TTbarMassCalc;
vector<double> *topbPhi_TTbarMassCalc;
vector<double> *topbPt_TTbarMassCalc;
vector<string> *electron_hltfilters_singleLepCalc;
vector<string> *muon_hltfilters_singleLepCalc;
vector<string> *vsSelMCTriggersEl_singleLepCalc;
vector<string> *vsSelMCTriggersMu_singleLepCalc;
vector<string> *vsSelTriggersEl_singleLepCalc;
vector<string> *vsSelTriggersMu_singleLepCalc;
// List of branches
TBranch *b_flagBadMu_singleLepCalc; //!
TBranch *b_flagDupMu_singleLepCalc; //!
TBranch *b_isBHBH_TpTpCalc; //!
TBranch *b_isBHTW_TpTpCalc; //!
TBranch *b_isBWBW_TpTpCalc; //!
TBranch *b_isBZBH_TpTpCalc; //!
TBranch *b_isBZBZ_TpTpCalc; //!
TBranch *b_isBZTW_TpTpCalc; //!
TBranch *b_isTHBW_TpTpCalc; //!
TBranch *b_isTHTH_TpTpCalc; //!
TBranch *b_isTWTW_TpTpCalc; //!
TBranch *b_isTZBW_TpTpCalc; //!
TBranch *b_isTZTH_TpTpCalc; //!
TBranch *b_isTZTZ_TpTpCalc; //!
TBranch *b_isTau_singleLepCalc; //!
TBranch *b_NLeptonDecays_TpTpCalc; //!
TBranch *b_NPartonsfromHEPUEP_singleLepCalc; //!
TBranch *b_dataE_singleLepCalc; //!
TBranch *b_dataM_singleLepCalc; //!
TBranch *b_genTDLID_singleLepCalc; //!
TBranch *b_lumi_CommonCalc; //!
TBranch *b_nAllJets_CommonCalc; //!
TBranch *b_nLooseMuons_CommonCalc; //!
TBranch *b_nPV_singleLepCalc; //!
TBranch *b_nPileupInteractions_singleLepCalc; //!
TBranch *b_nSelBtagJets_CommonCalc; //!
TBranch *b_nSelElectrons_CommonCalc; //!
TBranch *b_nSelJets_CommonCalc; //!
TBranch *b_nTightMuons_CommonCalc; //!
TBranch *b_nTrueInteractions_singleLepCalc; //!
TBranch *b_run_CommonCalc; //!
TBranch *b_event_CommonCalc; //!
TBranch *b_AK4HT_singleLepCalc; //!
TBranch *b_HTfromHEPUEP_singleLepCalc; //!
TBranch *b_L1NonPrefiringProbDown_CommonCalc; //!
TBranch *b_L1NonPrefiringProbUp_CommonCalc; //!
TBranch *b_L1NonPrefiringProb_CommonCalc; //!
TBranch *b_LHEweightorig_singleLepCalc; //!
TBranch *b_MCWeight_singleLepCalc; //!
TBranch *b_corr_met_jerdn_phi_singleLepCalc; //!
TBranch *b_corr_met_jerdn_singleLepCalc; //!
TBranch *b_corr_met_jerup_phi_singleLepCalc; //!
TBranch *b_corr_met_jerup_singleLepCalc; //!
TBranch *b_corr_met_jesdn_phi_singleLepCalc; //!
TBranch *b_corr_met_jesdn_singleLepCalc; //!
TBranch *b_corr_met_jesup_phi_singleLepCalc; //!
TBranch *b_corr_met_jesup_singleLepCalc; //!
TBranch *b_corr_met_phi_singleLepCalc; //!
TBranch *b_corr_met_singleLepCalc; //!
TBranch *b_corr_metmod_phi_singleLepCalc; //!
TBranch *b_corr_metmod_singleLepCalc; //!
TBranch *b_corr_metnohf_phi_singleLepCalc; //!
TBranch *b_corr_metnohf_singleLepCalc; //!
TBranch *b_genTDLEnergy_singleLepCalc; //!
TBranch *b_genTDLEta_singleLepCalc; //!
TBranch *b_genTDLPhi_singleLepCalc; //!
TBranch *b_genTDLPt_singleLepCalc; //!
TBranch *b_met_phi_singleLepCalc; //!
TBranch *b_met_singleLepCalc; //!
TBranch *b_metmod_phi_singleLepCalc; //!
TBranch *b_metmod_singleLepCalc; //!
TBranch *b_metnohf_phi_singleLepCalc; //!
TBranch *b_metnohf_singleLepCalc; //!
TBranch *b_theJetHT_JetSubCalc; //!
TBranch *b_theJetLeadPt_JetSubCalc; //!
TBranch *b_theJetSubLeadPt_JetSubCalc; //!
TBranch *b_ttbarMass_TTbarMassCalc; //!
TBranch *b_AK4JetBTag_bSFdn_singleLepCalc; //!
TBranch *b_AK4JetBTag_bSFup_singleLepCalc; //!
TBranch *b_AK4JetBTag_lSFdn_singleLepCalc; //!
TBranch *b_AK4JetBTag_lSFup_singleLepCalc; //!
TBranch *b_AK4JetBTag_singleLepCalc; //!
TBranch *b_AK4JetFlav_singleLepCalc; //!
TBranch *b_HadronicVHtID_JetSubCalc; //!
TBranch *b_HadronicVHtStatus_JetSubCalc; //!
TBranch *b_HdecayID_TpTpCalc; //!
TBranch *b_HdecayIndex_TpTpCalc; //!
TBranch *b_LHEweightids_singleLepCalc; //!
TBranch *b_LeptonID_TpTpCalc; //!
TBranch *b_LeptonParentID_TpTpCalc; //!
TBranch *b_NewPDFids_singleLepCalc; //!
TBranch *b_WdecayID_TpTpCalc; //!
TBranch *b_WdecayIndex_TpTpCalc; //!
TBranch *b_ZdecayID_TpTpCalc; //!
TBranch *b_ZdecayIndex_TpTpCalc; //!
TBranch *b_allTopsID_TTbarMassCalc; //!
TBranch *b_allTopsStatus_TTbarMassCalc; //!
TBranch *b_bPrimeID_TpTpCalc; //!
TBranch *b_bPrimeNDaughters_TpTpCalc; //!
TBranch *b_bPrimeStatus_TpTpCalc; //!
TBranch *b_bosonID_TpTpCalc; //!
TBranch *b_decorr_largest_DeepAK8Calc; //!
TBranch *b_dnn_largest_BestCalc; //!
TBranch *b_dnn_largest_DeepAK8Calc; //!
TBranch *b_elChargeConsistent_singleLepCalc; //!
TBranch *b_elCharge_singleLepCalc; //!
TBranch *b_elCtfCharge_singleLepCalc; //!
TBranch *b_elGsfCharge_singleLepCalc; //!
TBranch *b_elIsEBEE_singleLepCalc; //!
TBranch *b_elIsMVALooseIso_singleLepCalc; //!
TBranch *b_elIsMVALoose_singleLepCalc; //!
TBranch *b_elIsMVATight80_singleLepCalc; //!
TBranch *b_elIsMVATight90_singleLepCalc; //!
TBranch *b_elIsMVATightIso80_singleLepCalc; //!
TBranch *b_elIsMVATightIso90_singleLepCalc; //!
TBranch *b_elMHits_singleLepCalc; //!
TBranch *b_elMatched_singleLepCalc; //!
TBranch *b_elMother_id_singleLepCalc; //!
TBranch *b_elMother_status_singleLepCalc; //!
TBranch *b_elNotConversion_singleLepCalc; //!
TBranch *b_elNumberOfMothers_singleLepCalc; //!
TBranch *b_elPdgId_singleLepCalc; //!
TBranch *b_elScPixCharge_singleLepCalc; //!
TBranch *b_elStatus_singleLepCalc; //!
TBranch *b_elVtxFitConv_singleLepCalc; //!
TBranch *b_electron_1_hltmatched_singleLepCalc; //!
TBranch *b_genBSLID_singleLepCalc; //!
TBranch *b_genID_singleLepCalc; //!
TBranch *b_genIndex_singleLepCalc; //!
TBranch *b_genMotherID_singleLepCalc; //!
TBranch *b_genMotherIndex_singleLepCalc; //!
TBranch *b_genStatus_singleLepCalc; //!
TBranch *b_genTtbarIdCategory_TTbarMassCalc; //!
TBranch *b_genTtbarId_TTbarMassCalc; //!
TBranch *b_maxProb_JetSubCalc; //!
TBranch *b_muCharge_singleLepCalc; //!
TBranch *b_muGlobal_singleLepCalc; //!
TBranch *b_muIsGlobalHighPt_singleLepCalc; //!
TBranch *b_muIsLoose_singleLepCalc; //!
TBranch *b_muIsMediumPrompt_singleLepCalc; //!
TBranch *b_muIsMedium_singleLepCalc; //!
TBranch *b_muIsMiniIsoLoose_singleLepCalc; //!
TBranch *b_muIsMiniIsoMedium_singleLepCalc; //!
TBranch *b_muIsMiniIsoTight_singleLepCalc; //!
TBranch *b_muIsMiniIsoVeryTight_singleLepCalc; //!
TBranch *b_muIsMvaLoose_singleLepCalc; //!
TBranch *b_muIsMvaMedium_singleLepCalc; //!
TBranch *b_muIsMvaTight_singleLepCalc; //!
TBranch *b_muIsTight_singleLepCalc; //!
TBranch *b_muIsTrkHighPt_singleLepCalc; //!
TBranch *b_muMatched_singleLepCalc; //!
TBranch *b_muMother_id_singleLepCalc; //!
TBranch *b_muMother_status_singleLepCalc; //!
TBranch *b_muNMatchedStations_singleLepCalc; //!
TBranch *b_muNTrackerLayers_singleLepCalc; //!
TBranch *b_muNValMuHits_singleLepCalc; //!
TBranch *b_muNValPixelHits_singleLepCalc; //!
TBranch *b_muNumberOfMothers_singleLepCalc; //!
TBranch *b_muPdgId_singleLepCalc; //!
TBranch *b_muStatus_singleLepCalc; //!
TBranch *b_muon_1_hltmatched_singleLepCalc; //!
TBranch *b_quarkID_TpTpCalc; //!
TBranch *b_tPrimeID_TpTpCalc; //!
TBranch *b_tPrimeNDaughters_TpTpCalc; //!
TBranch *b_tPrimeStatus_TpTpCalc; //!
TBranch *b_theJetAK8SDSubjetBTag_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetHFlav_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetIndex_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetNDeepCSVL_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetNDeepCSVMSF_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetNDeepCSVM_bSFdn_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetNDeepCSVM_bSFup_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetNDeepCSVM_lSFdn_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetNDeepCSVM_lSFup_JetSubCalc; //!
TBranch *b_theJetAK8SDSubjetSize_JetSubCalc; //!
TBranch *b_theJetAK8nDaughters_JetSubCalc; //!
TBranch *b_theJetBTag_JetSubCalc; //!
TBranch *b_theJetBTag_bSFdn_JetSubCalc; //!
TBranch *b_theJetBTag_bSFup_JetSubCalc; //!
TBranch *b_theJetBTag_lSFdn_JetSubCalc; //!