-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathntuple.h
More file actions
970 lines (951 loc) · 49.4 KB
/
ntuple.h
File metadata and controls
970 lines (951 loc) · 49.4 KB
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
//////////////////////////////////////////////////////////
// This class has been automatically generated on
// Tue Jan 24 17:37:10 2017 by ROOT version 6.06/01
// from TTree TauCheck/TauCheck
// found on file: /data/higgs/data_2016/ntuples_v6/mt/ntuples_woSVFIT/BASIS_ntuple_TT_A_powheg_MCSpring16_170102_mt_v6/tree.root
//////////////////////////////////////////////////////////
#ifndef ntuple_h
#define ntuple_h
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
// Header file for the classes stored in the TTree if any.
#include "vector"
class ntuple {
public :
TTree *fChain; //!pointer to the analyzed TTree or TChain
Int_t fCurrent; //!current Tree number in a TChain
// Fixed size dimensions of array or collections stored in the TTree if any.
// Declaration of leaf types
Int_t fileEntry;
Int_t run;
Float_t lumi;
Int_t evt;
Float_t weight;
Float_t lumiWeight;
Float_t puweight;
Float_t genweight;
Float_t trigweight_1;
Float_t trigweight_2;
Float_t idisoweight_1;
Float_t anti_idisoweight_1;
Float_t idisoweight_2;
Float_t effweight;
Float_t stitchedWeight;
Float_t topWeight;
Float_t ZWeight;
Float_t gen_Mll;
Float_t genpX;
Float_t genpY;
Float_t genpZ;
Float_t gen_top_pt_1;
Float_t gen_top_pt_2;
Float_t gen_vis_Mll;
Float_t vispX;
Float_t vispY;
Float_t vispZ;
Int_t npv;
Float_t npu;
Float_t rho;
Int_t NUP;
Int_t gen_match_1;
Int_t gen_match_2;
Int_t gen_match_jetId_1;
Int_t gen_match_jetId_2;
Int_t genJets;
Float_t genPt_1;
Float_t genPt_2;
Int_t genJet_match_1;
Int_t genJet_match_2;
Float_t pt_1;
Float_t phi_1;
Float_t eta_1;
Float_t eta_SC_1;
Float_t m_1;
Int_t q_1;
Float_t d0_1;
Float_t dZ_1;
Float_t mt_1;
Float_t pfmt_1;
Float_t iso_1;
Int_t againstElectronLooseMVA6_1;
Int_t againstElectronMediumMVA6_1;
Int_t againstElectronTightMVA6_1;
Int_t againstElectronVLooseMVA6_1;
Int_t againstElectronVTightMVA6_1;
Int_t againstMuonLoose3_1;
Int_t againstMuonTight3_1;
Float_t byCombinedIsolationDeltaBetaCorrRaw3Hits_1;
Int_t byLooseCombinedIsolationDeltaBetaCorr3Hits_1;
Int_t byMediumCombinedIsolationDeltaBetaCorr3Hits_1;
Int_t byTightCombinedIsolationDeltaBetaCorr3Hits_1;
Int_t byIsolationMVA3newDMwoLTraw_1;
Int_t byIsolationMVA3oldDMwoLTraw_1;
Float_t byIsolationMVA3newDMwLTraw_1;
Float_t byIsolationMVA3oldDMwLTraw_1;
Int_t byVLooseIsolationMVArun2v1DBoldDMwLT_1;
Int_t byLooseIsolationMVArun2v1DBoldDMwLT_1;
Int_t byMediumIsolationMVArun2v1DBoldDMwLT_1;
Int_t byTightIsolationMVArun2v1DBoldDMwLT_1;
Int_t byVTightIsolationMVArun2v1DBoldDMwLT_1;
Int_t byVLooseIsolationMVArun2v1DBnewDMwLT_1;
Int_t byLooseIsolationMVArun2v1DBnewDMwLT_1;
Int_t byMediumIsolationMVArun2v1DBnewDMwLT_1;
Int_t byTightIsolationMVArun2v1DBnewDMwLT_1;
Int_t byVTightIsolationMVArun2v1DBnewDMwLT_1;
Float_t idMVANewDM_1;
Float_t chargedIsoPtSum_1;
Float_t neutralIsoPtSum_1;
Float_t puCorrPtSum_1;
Int_t decayModeFindingOldDMs_1;
Int_t decayMode_1;
Float_t id_e_mva_nt_loose_1;
Float_t id_m_loose_1;
Float_t id_m_medium_1;
Float_t id_m_tight_1;
Float_t id_m_tightnovtx_1;
Float_t id_m_highpt_1;
Float_t id_e_cut_veto_1;
Float_t id_e_cut_loose_1;
Float_t id_e_cut_medium_1;
Float_t id_e_cut_tight_1;
Float_t antilep_tauscaling;
Float_t pt_2;
Float_t phi_2;
Float_t eta_2;
Float_t m_2;
Int_t q_2;
Float_t d0_2;
Float_t dZ_2;
Float_t mt_2;
Float_t pfmt_2;
Float_t iso_2;
Int_t againstElectronLooseMVA6_2;
Int_t againstElectronMediumMVA6_2;
Int_t againstElectronTightMVA6_2;
Int_t againstElectronVLooseMVA6_2;
Int_t againstElectronVTightMVA6_2;
Int_t againstMuonLoose3_2;
Int_t againstMuonTight3_2;
Float_t byCombinedIsolationDeltaBetaCorrRaw3Hits_2;
Int_t byLooseCombinedIsolationDeltaBetaCorr3Hits_2;
Int_t byMediumCombinedIsolationDeltaBetaCorr3Hits_2;
Int_t byTightCombinedIsolationDeltaBetaCorr3Hits_2;
Int_t byIsolationMVA3newDMwoLTraw_2;
Int_t byIsolationMVA3oldDMwoLTraw_2;
Float_t byIsolationMVA3newDMwLTraw_2;
Float_t byIsolationMVA3oldDMwLTraw_2;
Int_t byVLooseIsolationMVArun2v1DBoldDMwLT_2;
Int_t byLooseIsolationMVArun2v1DBoldDMwLT_2;
Int_t byMediumIsolationMVArun2v1DBoldDMwLT_2;
Int_t byTightIsolationMVArun2v1DBoldDMwLT_2;
Int_t byVTightIsolationMVArun2v1DBoldDMwLT_2;
Int_t byVLooseIsolationMVArun2v1DBnewDMwLT_2;
Int_t byLooseIsolationMVArun2v1DBnewDMwLT_2;
Int_t byMediumIsolationMVArun2v1DBnewDMwLT_2;
Int_t byTightIsolationMVArun2v1DBnewDMwLT_2;
Int_t byVTightIsolationMVArun2v1DBnewDMwLT_2;
Float_t idMVANewDM_2;
Float_t chargedIsoPtSum_2;
Float_t neutralIsoPtSum_2;
Float_t puCorrPtSum_2;
Int_t decayModeFindingOldDMs_2;
Int_t decayMode_2;
Float_t pt_tt;
Float_t pfpt_tt;
Float_t m_vis;
Float_t pfpt_sum;
Float_t pt_sum;
Float_t dr_leptau;
Float_t jeta1eta2;
Float_t met_centrality;
Float_t lep_etacentrality;
Float_t sphericity;
Int_t nadditionalMu;
std::vector<double> *addmuon_pt;
std::vector<double> *addmuon_eta;
std::vector<double> *addmuon_phi;
std::vector<double> *addmuon_m;
std::vector<int> *addmuon_q;
std::vector<double> *addmuon_iso;
std::vector<int> *addmuon_gen_match;
Int_t nadditionalEle;
std::vector<double> *addele_pt;
std::vector<double> *addele_eta;
std::vector<double> *addele_phi;
std::vector<double> *addele_m;
std::vector<int> *addele_q;
std::vector<double> *addele_iso;
std::vector<int> *addele_gen_match;
Int_t nadditionalTau;
std::vector<double> *addtau_pt;
std::vector<double> *addtau_eta;
std::vector<double> *addtau_phi;
std::vector<double> *addtau_m;
std::vector<double> *addtau_q;
std::vector<double> *addtau_byIsolationMVArun2v1DBnewDMwLTraw;
std::vector<double> *addtau_byCombinedIsolationDeltaBetaCorrRaw3Hits;
std::vector<int> *addtau_byMediumCombinedIsolationDeltaBetaCorr3Hits;
std::vector<int> *addtau_byTightCombinedIsolationDeltaBetaCorr3Hits;
std::vector<int> *addtau_byLooseCombinedIsolationDeltaBetaCorr3Hits;
std::vector<int> *addtau_byVLooseIsolationMVArun2v1DBoldDMwLT;
std::vector<int> *addtau_byLooseIsolationMVArun2v1DBoldDMwLT;
std::vector<int> *addtau_byMediumIsolationMVArun2v1DBoldDMwLT;
std::vector<int> *addtau_byTightIsolationMVArun2v1DBoldDMwLT;
std::vector<int> *addtau_byVTightIsolationMVArun2v1DBoldDMwLT;
std::vector<int> *addtau_byVLooseIsolationMVArun2v1DBnewDMwLT;
std::vector<int> *addtau_byLooseIsolationMVArun2v1DBnewDMwLT;
std::vector<int> *addtau_byMediumIsolationMVArun2v1DBnewDMwLT;
std::vector<int> *addtau_byTightIsolationMVArun2v1DBnewDMwLT;
std::vector<int> *addtau_byVTightIsolationMVArun2v1DBnewDMwLT;
std::vector<int> *addtau_passesTauLepVetos;
std::vector<int> *addtau_decayMode;
std::vector<double> *addtau_d0;
std::vector<double> *addtau_dZ;
std::vector<int> *addtau_gen_match;
std::vector<double> *addtau_mt;
std::vector<double> *addtau_mvis;
Bool_t passesIsoCuts;
Bool_t passesLepIsoCuts;
Bool_t passesTauLepVetos;
Bool_t passesThirdLepVeto;
Bool_t passesDiMuonVeto;
Bool_t passesDiElectronVeto;
Bool_t XTrig_match;
Bool_t STrig_match;
Bool_t dilepton_veto;
Bool_t extraelec_veto;
Bool_t extramuon_veto;
Float_t met;
Float_t metphi;
Float_t met_ex;
Float_t met_ey;
Float_t corrmet;
Float_t corrmetphi;
Float_t corrmet_ex;
Float_t corrmet_ey;
Float_t mvamet;
Float_t mvametphi;
Float_t mvamet_ex;
Float_t mvamet_ey;
Float_t corrmvamet;
Float_t corrmvametphi;
Float_t corrmvamet_ex;
Float_t corrmvamet_ey;
Float_t mvacov00;
Float_t mvacov01;
Float_t mvacov10;
Float_t mvacov11;
Float_t metcov00;
Float_t metcov01;
Float_t metcov10;
Float_t metcov11;
Float_t m_sv;
Float_t pt_sv;
Float_t mjj;
Float_t mjjUp;
Float_t mjjDown;
Float_t jdeta;
Float_t jdetaUp;
Float_t jdetaDown;
Int_t njetingap;
Int_t njetingap20;
Float_t jdphi;
Int_t nbtag;
Int_t njets;
Int_t njetsUp;
Int_t njetsDown;
Int_t njetspt20;
Float_t jpt_1;
Float_t jptUp_1;
Float_t jptDown_1;
Float_t jeta_1;
Float_t jphi_1;
Float_t jm_1;
Float_t jrawf_1;
Float_t jmva_1;
Float_t jpt_2;
Float_t jptUp_2;
Float_t jptDown_2;
Float_t jeta_2;
Float_t jphi_2;
Float_t jm_2;
Float_t jrawf_2;
Float_t jmva_2;
Float_t bpt_1;
Float_t beta_1;
Float_t bphi_1;
Float_t brawf_1;
Float_t bmva_1;
Float_t bcsv_1;
Float_t bpt_2;
Float_t beta_2;
Float_t bphi_2;
Float_t brawf_2;
Float_t bmva_2;
Float_t bcsv_2;
// List of branches
TBranch *b_fileEntry; //!
TBranch *b_run; //!
TBranch *b_lumi; //!
TBranch *b_evt; //!
TBranch *b_weight; //!
TBranch *b_lumiWeight; //!
TBranch *b_puweight; //!
TBranch *b_genweight; //!
TBranch *b_trigweight_1; //!
TBranch *b_trigweight_2; //!
TBranch *b_idisoweight_1; //!
TBranch *b_anti_idisoweight_1; //!
TBranch *b_idisoweight_2; //!
TBranch *b_effweight; //!
TBranch *b_stitchedWeight; //!
TBranch *b_topWeight; //!
TBranch *b_ZWeight; //!
TBranch *b_gen_Mll; //!
TBranch *b_genpX; //!
TBranch *b_genpY; //!
TBranch *b_genpZ; //!
TBranch *b_gen_top_pt_1; //!
TBranch *b_gen_top_pt_2; //!
TBranch *b_gen_vis_Mll; //!
TBranch *b_vispX; //!
TBranch *b_vispY; //!
TBranch *b_vispZ; //!
TBranch *b_npv; //!
TBranch *b_npu; //!
TBranch *b_rho; //!
TBranch *b_NUP; //!
TBranch *b_gen_match_1; //!
TBranch *b_gen_match_2; //!
TBranch *b_gen_match_jetId_1; //!
TBranch *b_gen_match_jetId_2; //!
TBranch *b_genJets; //!
TBranch *b_genPt_1; //!
TBranch *b_genPt_2; //!
TBranch *b_genJet_match_1; //!
TBranch *b_genJet_match_2; //!
TBranch *b_pt_1; //!
TBranch *b_phi_1; //!
TBranch *b_eta_1; //!
TBranch *b_eta_SC_1; //!
TBranch *b_m_1; //!
TBranch *b_q_1; //!
TBranch *b_d0_1; //!
TBranch *b_dZ_1; //!
TBranch *b_mt_1; //!
TBranch *b_pfmt_1; //!
TBranch *b_iso_1; //!
TBranch *b_againstElectronLooseMVA6_1; //!
TBranch *b_againstElectronMediumMVA6_1; //!
TBranch *b_againstElectronTightMVA6_1; //!
TBranch *b_againstElectronVLooseMVA6_1; //!
TBranch *b_againstElectronVTightMVA6_1; //!
TBranch *b_againstMuonLoose3_1; //!
TBranch *b_againstMuonTight3_1; //!
TBranch *b_byCombinedIsolationDeltaBetaCorrRaw3Hits_1; //!
TBranch *b_byLooseCombinedIsolationDeltaBetaCorr3Hits_1; //!
TBranch *b_byMediumCombinedIsolationDeltaBetaCorr3Hits_1; //!
TBranch *b_byTightCombinedIsolationDeltaBetaCorr3Hits_1; //!
TBranch *b_byIsolationMVA3newDMwoLTraw_1; //!
TBranch *b_byIsolationMVA3oldDMwoLTraw_1; //!
TBranch *b_byIsolationMVA3newDMwLTraw_1; //!
TBranch *b_byIsolationMVA3oldDMwLTraw_1; //!
TBranch *b_byVLooseIsolationMVArun2v1DBoldDMwLT_1; //!
TBranch *b_byLooseIsolationMVArun2v1DBoldDMwLT_1; //!
TBranch *b_byMediumIsolationMVArun2v1DBoldDMwLT_1; //!
TBranch *b_byTightIsolationMVArun2v1DBoldDMwLT_1; //!
TBranch *b_byVTightIsolationMVArun2v1DBoldDMwLT_1; //!
TBranch *b_byVLooseIsolationMVArun2v1DBnewDMwLT_1; //!
TBranch *b_byLooseIsolationMVArun2v1DBnewDMwLT_1; //!
TBranch *b_byMediumIsolationMVArun2v1DBnewDMwLT_1; //!
TBranch *b_byTightIsolationMVArun2v1DBnewDMwLT_1; //!
TBranch *b_byVTightIsolationMVArun2v1DBnewDMwLT_1; //!
TBranch *b_idMVANewDM_1; //!
TBranch *b_chargedIsoPtSum_1; //!
TBranch *b_neutralIsoPtSum_1; //!
TBranch *b_puCorrPtSum_1; //!
TBranch *b_decayModeFindingOldDMs_1; //!
TBranch *b_decayMode_1; //!
TBranch *b_id_e_mva_nt_loose_1; //!
TBranch *b_id_m_loose_1; //!
TBranch *b_id_m_medium_1; //!
TBranch *b_id_m_tight_1; //!
TBranch *b_id_m_tightnovtx_1; //!
TBranch *b_id_m_highpt_1; //!
TBranch *b_id_e_cut_veto_1; //!
TBranch *b_id_e_cut_loose_1; //!
TBranch *b_id_e_cut_medium_1; //!
TBranch *b_id_e_cut_tight_1; //!
TBranch *b_antilep_tauscaling; //!
TBranch *b_pt_2; //!
TBranch *b_phi_2; //!
TBranch *b_eta_2; //!
TBranch *b_m_2; //!
TBranch *b_q_2; //!
TBranch *b_d0_2; //!
TBranch *b_dZ_2; //!
TBranch *b_mt_2; //!
TBranch *b_pfmt_2; //!
TBranch *b_iso_2; //!
TBranch *b_againstElectronLooseMVA6_2; //!
TBranch *b_againstElectronMediumMVA6_2; //!
TBranch *b_againstElectronTightMVA6_2; //!
TBranch *b_againstElectronVLooseMVA6_2; //!
TBranch *b_againstElectronVTightMVA6_2; //!
TBranch *b_againstMuonLoose3_2; //!
TBranch *b_againstMuonTight3_2; //!
TBranch *b_byCombinedIsolationDeltaBetaCorrRaw3Hits_2; //!
TBranch *b_byLooseCombinedIsolationDeltaBetaCorr3Hits_2; //!
TBranch *b_byMediumCombinedIsolationDeltaBetaCorr3Hits_2; //!
TBranch *b_byTightCombinedIsolationDeltaBetaCorr3Hits_2; //!
TBranch *b_byIsolationMVA3newDMwoLTraw_2; //!
TBranch *b_byIsolationMVA3oldDMwoLTraw_2; //!
TBranch *b_byIsolationMVA3newDMwLTraw_2; //!
TBranch *b_byIsolationMVA3oldDMwLTraw_2; //!
TBranch *b_byVLooseIsolationMVArun2v1DBoldDMwLT_2; //!
TBranch *b_byLooseIsolationMVArun2v1DBoldDMwLT_2; //!
TBranch *b_byMediumIsolationMVArun2v1DBoldDMwLT_2; //!
TBranch *b_byTightIsolationMVArun2v1DBoldDMwLT_2; //!
TBranch *b_byVTightIsolationMVArun2v1DBoldDMwLT_2; //!
TBranch *b_byVLooseIsolationMVArun2v1DBnewDMwLT_2; //!
TBranch *b_byLooseIsolationMVArun2v1DBnewDMwLT_2; //!
TBranch *b_byMediumIsolationMVArun2v1DBnewDMwLT_2; //!
TBranch *b_byTightIsolationMVArun2v1DBnewDMwLT_2; //!
TBranch *b_byVTightIsolationMVArun2v1DBnewDMwLT_2; //!
TBranch *b_idMVANewDM_2; //!
TBranch *b_chargedIsoPtSum_2; //!
TBranch *b_neutralIsoPtSum_2; //!
TBranch *b_puCorrPtSum_2; //!
TBranch *b_decayModeFindingOldDMs_2; //!
TBranch *b_decayMode_2; //!
TBranch *b_pt_tt; //!
TBranch *b_pfpt_tt; //!
TBranch *b_m_vis; //!
TBranch *b_pfpt_sum; //!
TBranch *b_pt_sum; //!
TBranch *b_dr_leptau; //!
TBranch *b_jeta1eta2; //!
TBranch *b_met_centrality; //!
TBranch *b_lep_etacentrality; //!
TBranch *b_sphericity; //!
TBranch *b_nadditionalMu; //!
TBranch *b_addmuon_pt; //!
TBranch *b_addmuon_eta; //!
TBranch *b_addmuon_phi; //!
TBranch *b_addmuon_m; //!
TBranch *b_addmuon_q; //!
TBranch *b_addmuon_iso; //!
TBranch *b_addmuon_gen_match; //!
TBranch *b_nadditionalEle; //!
TBranch *b_addele_pt; //!
TBranch *b_addele_eta; //!
TBranch *b_addele_phi; //!
TBranch *b_addele_m; //!
TBranch *b_addele_q; //!
TBranch *b_addele_iso; //!
TBranch *b_addele_gen_match; //!
TBranch *b_nadditionalTau; //!
TBranch *b_addtau_pt; //!
TBranch *b_addtau_eta; //!
TBranch *b_addtau_phi; //!
TBranch *b_addtau_m; //!
TBranch *b_addtau_q; //!
TBranch *b_addtau_byIsolationMVArun2v1DBnewDMwLTraw; //!
TBranch *b_addtau_byCombinedIsolationDeltaBetaCorrRaw3Hits; //!
TBranch *b_addtau_byMediumCombinedIsolationDeltaBetaCorr3Hits; //!
TBranch *b_addtau_byTightCombinedIsolationDeltaBetaCorr3Hits; //!
TBranch *b_addtau_byLooseCombinedIsolationDeltaBetaCorr3Hits; //!
TBranch *b_addtau_byVLooseIsolationMVArun2v1DBoldDMwLT; //!
TBranch *b_addtau_byLooseIsolationMVArun2v1DBoldDMwLT; //!
TBranch *b_addtau_byMediumIsolationMVArun2v1DBoldDMwLT; //!
TBranch *b_addtau_byTightIsolationMVArun2v1DBoldDMwLT; //!
TBranch *b_addtau_byVTightIsolationMVArun2v1DBoldDMwLT; //!
TBranch *b_addtau_byVLooseIsolationMVArun2v1DBnewDMwLT; //!
TBranch *b_addtau_byLooseIsolationMVArun2v1DBnewDMwLT; //!
TBranch *b_addtau_byMediumIsolationMVArun2v1DBnewDMwLT; //!
TBranch *b_addtau_byTightIsolationMVArun2v1DBnewDMwLT; //!
TBranch *b_addtau_byVTightIsolationMVArun2v1DBnewDMwLT; //!
TBranch *b_addtau_passesTauLepVetos; //!
TBranch *b_addtau_decayMode; //!
TBranch *b_addtau_d0; //!
TBranch *b_addtau_dZ; //!
TBranch *b_addtau_gen_match; //!
TBranch *b_addtau_mt; //!
TBranch *b_addtau_mvis; //!
TBranch *b_passesIsoCuts; //!
TBranch *b_passesLepIsoCuts; //!
TBranch *b_passesTauLepVetos; //!
TBranch *b_passesThirdLepVeto; //!
TBranch *b_passesDiMuonVeto; //!
TBranch *b_passesDiElectronVeto; //!
TBranch *b_XTrig_match; //!
TBranch *b_STrig_match; //!
TBranch *b_dilepton_veto; //!
TBranch *b_extraelec_veto; //!
TBranch *b_extramuon_veto; //!
TBranch *b_met; //!
TBranch *b_metphi; //!
TBranch *b_met_ex; //!
TBranch *b_met_ey; //!
TBranch *b_corrmet; //!
TBranch *b_corrmetphi; //!
TBranch *b_corrmet_ex; //!
TBranch *b_corrmet_ey; //!
TBranch *b_mvamet; //!
TBranch *b_mvametphi; //!
TBranch *b_mvamet_ex; //!
TBranch *b_mvamet_ey; //!
TBranch *b_corrmvamet; //!
TBranch *b_corrmvametphi; //!
TBranch *b_corrmvamet_ex; //!
TBranch *b_corrmvamet_ey; //!
TBranch *b_mvacov00; //!
TBranch *b_mvacov01; //!
TBranch *b_mvacov10; //!
TBranch *b_mvacov11; //!
TBranch *b_metcov00; //!
TBranch *b_metcov01; //!
TBranch *b_metcov10; //!
TBranch *b_metcov11; //!
TBranch *b_m_sv; //!
TBranch *b_pt_sv; //!
TBranch *b_mjj; //!
TBranch *b_mjjUp; //!
TBranch *b_mjjDown; //!
TBranch *b_jdeta; //!
TBranch *b_jdetaUp; //!
TBranch *b_jdetaDown; //!
TBranch *b_njetingap; //!
TBranch *b_njetingap20; //!
TBranch *b_jdphi; //!
TBranch *b_nbtag; //!
TBranch *b_njets; //!
TBranch *b_njetsUp; //!
TBranch *b_njetsDown; //!
TBranch *b_njetspt20; //!
TBranch *b_jpt_1; //!
TBranch *b_jptUp_1; //!
TBranch *b_jptDown_1; //!
TBranch *b_jeta_1; //!
TBranch *b_jphi_1; //!
TBranch *b_jm_1; //!
TBranch *b_jrawf_1; //!
TBranch *b_jmva_1; //!
TBranch *b_jpt_2; //!
TBranch *b_jptUp_2; //!
TBranch *b_jptDown_2; //!
TBranch *b_jeta_2; //!
TBranch *b_jphi_2; //!
TBranch *b_jm_2; //!
TBranch *b_jrawf_2; //!
TBranch *b_jmva_2; //!
TBranch *b_bpt_1; //!
TBranch *b_beta_1; //!
TBranch *b_bphi_1; //!
TBranch *b_brawf_1; //!
TBranch *b_bmva_1; //!
TBranch *b_bcsv_1; //!
TBranch *b_bpt_2; //!
TBranch *b_beta_2; //!
TBranch *b_bphi_2; //!
TBranch *b_brawf_2; //!
TBranch *b_bmva_2; //!
TBranch *b_bcsv_2; //!
ntuple(TTree *tree=0);
virtual ~ntuple();
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 ntuple_cxx
ntuple::ntuple(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("/data/higgs/data_2016/ntuples_v6/mt/ntuples_woSVFIT/BASIS_ntuple_TT_A_powheg_MCSpring16_170102_mt_v6/tree.root");
if (!f || !f->IsOpen()) {
f = new TFile("/data/higgs/data_2016/ntuples_v6/mt/ntuples_woSVFIT/BASIS_ntuple_TT_A_powheg_MCSpring16_170102_mt_v6/tree.root");
}
f->GetObject("TauCheck",tree);
}
Init(tree);
}
ntuple::~ntuple()
{
if (!fChain) return;
delete fChain->GetCurrentFile();
}
Int_t ntuple::GetEntry(Long64_t entry)
{
// Read contents of entry.
if (!fChain) return 0;
return fChain->GetEntry(entry);
}
Long64_t ntuple::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 ntuple::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
addmuon_pt = 0;
addmuon_eta = 0;
addmuon_phi = 0;
addmuon_m = 0;
addmuon_q = 0;
addmuon_iso = 0;
addmuon_gen_match = 0;
addele_pt = 0;
addele_eta = 0;
addele_phi = 0;
addele_m = 0;
addele_q = 0;
addele_iso = 0;
addele_gen_match = 0;
addtau_pt = 0;
addtau_eta = 0;
addtau_phi = 0;
addtau_m = 0;
addtau_q = 0;
addtau_byIsolationMVArun2v1DBnewDMwLTraw = 0;
addtau_byCombinedIsolationDeltaBetaCorrRaw3Hits = 0;
addtau_byMediumCombinedIsolationDeltaBetaCorr3Hits = 0;
addtau_byTightCombinedIsolationDeltaBetaCorr3Hits = 0;
addtau_byLooseCombinedIsolationDeltaBetaCorr3Hits = 0;
addtau_byVLooseIsolationMVArun2v1DBoldDMwLT = 0;
addtau_byLooseIsolationMVArun2v1DBoldDMwLT = 0;
addtau_byMediumIsolationMVArun2v1DBoldDMwLT = 0;
addtau_byTightIsolationMVArun2v1DBoldDMwLT = 0;
addtau_byVTightIsolationMVArun2v1DBoldDMwLT = 0;
addtau_byVLooseIsolationMVArun2v1DBnewDMwLT = 0;
addtau_byLooseIsolationMVArun2v1DBnewDMwLT = 0;
addtau_byMediumIsolationMVArun2v1DBnewDMwLT = 0;
addtau_byTightIsolationMVArun2v1DBnewDMwLT = 0;
addtau_byVTightIsolationMVArun2v1DBnewDMwLT = 0;
addtau_passesTauLepVetos = 0;
addtau_decayMode = 0;
addtau_d0 = 0;
addtau_dZ = 0;
addtau_gen_match = 0;
addtau_mt = 0;
addtau_mvis = 0;
// Set branch addresses and branch pointers
if (!tree) return;
fChain = tree;
fCurrent = -1;
fChain->SetMakeClass(1);
fChain->SetBranchAddress("fileEntry", &fileEntry, &b_fileEntry);
fChain->SetBranchAddress("run", &run, &b_run);
fChain->SetBranchAddress("lumi", &lumi, &b_lumi);
fChain->SetBranchAddress("evt", &evt, &b_evt);
fChain->SetBranchAddress("weight", &weight, &b_weight);
fChain->SetBranchAddress("lumiWeight", &lumiWeight, &b_lumiWeight);
fChain->SetBranchAddress("puweight", &puweight, &b_puweight);
fChain->SetBranchAddress("genweight", &genweight, &b_genweight);
fChain->SetBranchAddress("trigweight_1", &trigweight_1, &b_trigweight_1);
fChain->SetBranchAddress("trigweight_2", &trigweight_2, &b_trigweight_2);
fChain->SetBranchAddress("idisoweight_1", &idisoweight_1, &b_idisoweight_1);
fChain->SetBranchAddress("anti_idisoweight_1", &anti_idisoweight_1, &b_anti_idisoweight_1);
fChain->SetBranchAddress("idisoweight_2", &idisoweight_2, &b_idisoweight_2);
fChain->SetBranchAddress("effweight", &effweight, &b_effweight);
fChain->SetBranchAddress("stitchedWeight", &stitchedWeight, &b_stitchedWeight);
fChain->SetBranchAddress("topWeight", &topWeight, &b_topWeight);
fChain->SetBranchAddress("ZWeight", &ZWeight, &b_ZWeight);
fChain->SetBranchAddress("gen_Mll", &gen_Mll, &b_gen_Mll);
fChain->SetBranchAddress("genpX", &genpX, &b_genpX);
fChain->SetBranchAddress("genpY", &genpY, &b_genpY);
fChain->SetBranchAddress("genpZ", &genpZ, &b_genpZ);
fChain->SetBranchAddress("gen_top_pt_1", &gen_top_pt_1, &b_gen_top_pt_1);
fChain->SetBranchAddress("gen_top_pt_2", &gen_top_pt_2, &b_gen_top_pt_2);
fChain->SetBranchAddress("gen_vis_Mll", &gen_vis_Mll, &b_gen_vis_Mll);
fChain->SetBranchAddress("vispX", &vispX, &b_vispX);
fChain->SetBranchAddress("vispY", &vispY, &b_vispY);
fChain->SetBranchAddress("vispZ", &vispZ, &b_vispZ);
fChain->SetBranchAddress("npv", &npv, &b_npv);
fChain->SetBranchAddress("npu", &npu, &b_npu);
fChain->SetBranchAddress("rho", &rho, &b_rho);
fChain->SetBranchAddress("NUP", &NUP, &b_NUP);
fChain->SetBranchAddress("gen_match_1", &gen_match_1, &b_gen_match_1);
fChain->SetBranchAddress("gen_match_2", &gen_match_2, &b_gen_match_2);
fChain->SetBranchAddress("gen_match_jetId_1", &gen_match_jetId_1, &b_gen_match_jetId_1);
fChain->SetBranchAddress("gen_match_jetId_2", &gen_match_jetId_2, &b_gen_match_jetId_2);
fChain->SetBranchAddress("genJets", &genJets, &b_genJets);
fChain->SetBranchAddress("genPt_1", &genPt_1, &b_genPt_1);
fChain->SetBranchAddress("genPt_2", &genPt_2, &b_genPt_2);
fChain->SetBranchAddress("genJet_match_1", &genJet_match_1, &b_genJet_match_1);
fChain->SetBranchAddress("genJet_match_2", &genJet_match_2, &b_genJet_match_2);
fChain->SetBranchAddress("pt_1", &pt_1, &b_pt_1);
fChain->SetBranchAddress("phi_1", &phi_1, &b_phi_1);
fChain->SetBranchAddress("eta_1", &eta_1, &b_eta_1);
fChain->SetBranchAddress("eta_SC_1", &eta_SC_1, &b_eta_SC_1);
fChain->SetBranchAddress("m_1", &m_1, &b_m_1);
fChain->SetBranchAddress("q_1", &q_1, &b_q_1);
fChain->SetBranchAddress("d0_1", &d0_1, &b_d0_1);
fChain->SetBranchAddress("dZ_1", &dZ_1, &b_dZ_1);
fChain->SetBranchAddress("mt_1", &mt_1, &b_mt_1);
fChain->SetBranchAddress("pfmt_1", &pfmt_1, &b_pfmt_1);
fChain->SetBranchAddress("iso_1", &iso_1, &b_iso_1);
fChain->SetBranchAddress("againstElectronLooseMVA6_1", &againstElectronLooseMVA6_1, &b_againstElectronLooseMVA6_1);
fChain->SetBranchAddress("againstElectronMediumMVA6_1", &againstElectronMediumMVA6_1, &b_againstElectronMediumMVA6_1);
fChain->SetBranchAddress("againstElectronTightMVA6_1", &againstElectronTightMVA6_1, &b_againstElectronTightMVA6_1);
fChain->SetBranchAddress("againstElectronVLooseMVA6_1", &againstElectronVLooseMVA6_1, &b_againstElectronVLooseMVA6_1);
fChain->SetBranchAddress("againstElectronVTightMVA6_1", &againstElectronVTightMVA6_1, &b_againstElectronVTightMVA6_1);
fChain->SetBranchAddress("againstMuonLoose3_1", &againstMuonLoose3_1, &b_againstMuonLoose3_1);
fChain->SetBranchAddress("againstMuonTight3_1", &againstMuonTight3_1, &b_againstMuonTight3_1);
fChain->SetBranchAddress("byCombinedIsolationDeltaBetaCorrRaw3Hits_1", &byCombinedIsolationDeltaBetaCorrRaw3Hits_1, &b_byCombinedIsolationDeltaBetaCorrRaw3Hits_1);
fChain->SetBranchAddress("byLooseCombinedIsolationDeltaBetaCorr3Hits_1", &byLooseCombinedIsolationDeltaBetaCorr3Hits_1, &b_byLooseCombinedIsolationDeltaBetaCorr3Hits_1);
fChain->SetBranchAddress("byMediumCombinedIsolationDeltaBetaCorr3Hits_1", &byMediumCombinedIsolationDeltaBetaCorr3Hits_1, &b_byMediumCombinedIsolationDeltaBetaCorr3Hits_1);
fChain->SetBranchAddress("byTightCombinedIsolationDeltaBetaCorr3Hits_1", &byTightCombinedIsolationDeltaBetaCorr3Hits_1, &b_byTightCombinedIsolationDeltaBetaCorr3Hits_1);
fChain->SetBranchAddress("byIsolationMVA3newDMwoLTraw_1", &byIsolationMVA3newDMwoLTraw_1, &b_byIsolationMVA3newDMwoLTraw_1);
fChain->SetBranchAddress("byIsolationMVA3oldDMwoLTraw_1", &byIsolationMVA3oldDMwoLTraw_1, &b_byIsolationMVA3oldDMwoLTraw_1);
fChain->SetBranchAddress("byIsolationMVA3newDMwLTraw_1", &byIsolationMVA3newDMwLTraw_1, &b_byIsolationMVA3newDMwLTraw_1);
fChain->SetBranchAddress("byIsolationMVA3oldDMwLTraw_1", &byIsolationMVA3oldDMwLTraw_1, &b_byIsolationMVA3oldDMwLTraw_1);
fChain->SetBranchAddress("byVLooseIsolationMVArun2v1DBoldDMwLT_1", &byVLooseIsolationMVArun2v1DBoldDMwLT_1, &b_byVLooseIsolationMVArun2v1DBoldDMwLT_1);
fChain->SetBranchAddress("byLooseIsolationMVArun2v1DBoldDMwLT_1", &byLooseIsolationMVArun2v1DBoldDMwLT_1, &b_byLooseIsolationMVArun2v1DBoldDMwLT_1);
fChain->SetBranchAddress("byMediumIsolationMVArun2v1DBoldDMwLT_1", &byMediumIsolationMVArun2v1DBoldDMwLT_1, &b_byMediumIsolationMVArun2v1DBoldDMwLT_1);
fChain->SetBranchAddress("byTightIsolationMVArun2v1DBoldDMwLT_1", &byTightIsolationMVArun2v1DBoldDMwLT_1, &b_byTightIsolationMVArun2v1DBoldDMwLT_1);
fChain->SetBranchAddress("byVTightIsolationMVArun2v1DBoldDMwLT_1", &byVTightIsolationMVArun2v1DBoldDMwLT_1, &b_byVTightIsolationMVArun2v1DBoldDMwLT_1);
fChain->SetBranchAddress("byVLooseIsolationMVArun2v1DBnewDMwLT_1", &byVLooseIsolationMVArun2v1DBnewDMwLT_1, &b_byVLooseIsolationMVArun2v1DBnewDMwLT_1);
fChain->SetBranchAddress("byLooseIsolationMVArun2v1DBnewDMwLT_1", &byLooseIsolationMVArun2v1DBnewDMwLT_1, &b_byLooseIsolationMVArun2v1DBnewDMwLT_1);
fChain->SetBranchAddress("byMediumIsolationMVArun2v1DBnewDMwLT_1", &byMediumIsolationMVArun2v1DBnewDMwLT_1, &b_byMediumIsolationMVArun2v1DBnewDMwLT_1);
fChain->SetBranchAddress("byTightIsolationMVArun2v1DBnewDMwLT_1", &byTightIsolationMVArun2v1DBnewDMwLT_1, &b_byTightIsolationMVArun2v1DBnewDMwLT_1);
fChain->SetBranchAddress("byVTightIsolationMVArun2v1DBnewDMwLT_1", &byVTightIsolationMVArun2v1DBnewDMwLT_1, &b_byVTightIsolationMVArun2v1DBnewDMwLT_1);
fChain->SetBranchAddress("idMVANewDM_1", &idMVANewDM_1, &b_idMVANewDM_1);
fChain->SetBranchAddress("chargedIsoPtSum_1", &chargedIsoPtSum_1, &b_chargedIsoPtSum_1);
fChain->SetBranchAddress("neutralIsoPtSum_1", &neutralIsoPtSum_1, &b_neutralIsoPtSum_1);
fChain->SetBranchAddress("puCorrPtSum_1", &puCorrPtSum_1, &b_puCorrPtSum_1);
fChain->SetBranchAddress("decayModeFindingOldDMs_1", &decayModeFindingOldDMs_1, &b_decayModeFindingOldDMs_1);
fChain->SetBranchAddress("decayMode_1", &decayMode_1, &b_decayMode_1);
fChain->SetBranchAddress("id_e_mva_nt_loose_1", &id_e_mva_nt_loose_1, &b_id_e_mva_nt_loose_1);
fChain->SetBranchAddress("id_m_loose_1", &id_m_loose_1, &b_id_m_loose_1);
fChain->SetBranchAddress("id_m_medium_1", &id_m_medium_1, &b_id_m_medium_1);
fChain->SetBranchAddress("id_m_tight_1", &id_m_tight_1, &b_id_m_tight_1);
fChain->SetBranchAddress("id_m_tightnovtx_1", &id_m_tightnovtx_1, &b_id_m_tightnovtx_1);
fChain->SetBranchAddress("id_m_highpt_1", &id_m_highpt_1, &b_id_m_highpt_1);
fChain->SetBranchAddress("id_e_cut_veto_1", &id_e_cut_veto_1, &b_id_e_cut_veto_1);
fChain->SetBranchAddress("id_e_cut_loose_1", &id_e_cut_loose_1, &b_id_e_cut_loose_1);
fChain->SetBranchAddress("id_e_cut_medium_1", &id_e_cut_medium_1, &b_id_e_cut_medium_1);
fChain->SetBranchAddress("id_e_cut_tight_1", &id_e_cut_tight_1, &b_id_e_cut_tight_1);
fChain->SetBranchAddress("antilep_tauscaling", &antilep_tauscaling, &b_antilep_tauscaling);
fChain->SetBranchAddress("pt_2", &pt_2, &b_pt_2);
fChain->SetBranchAddress("phi_2", &phi_2, &b_phi_2);
fChain->SetBranchAddress("eta_2", &eta_2, &b_eta_2);
fChain->SetBranchAddress("m_2", &m_2, &b_m_2);
fChain->SetBranchAddress("q_2", &q_2, &b_q_2);
fChain->SetBranchAddress("d0_2", &d0_2, &b_d0_2);
fChain->SetBranchAddress("dZ_2", &dZ_2, &b_dZ_2);
fChain->SetBranchAddress("mt_2", &mt_2, &b_mt_2);
fChain->SetBranchAddress("pfmt_2", &pfmt_2, &b_pfmt_2);
fChain->SetBranchAddress("iso_2", &iso_2, &b_iso_2);
fChain->SetBranchAddress("againstElectronLooseMVA6_2", &againstElectronLooseMVA6_2, &b_againstElectronLooseMVA6_2);
fChain->SetBranchAddress("againstElectronMediumMVA6_2", &againstElectronMediumMVA6_2, &b_againstElectronMediumMVA6_2);
fChain->SetBranchAddress("againstElectronTightMVA6_2", &againstElectronTightMVA6_2, &b_againstElectronTightMVA6_2);
fChain->SetBranchAddress("againstElectronVLooseMVA6_2", &againstElectronVLooseMVA6_2, &b_againstElectronVLooseMVA6_2);
fChain->SetBranchAddress("againstElectronVTightMVA6_2", &againstElectronVTightMVA6_2, &b_againstElectronVTightMVA6_2);
fChain->SetBranchAddress("againstMuonLoose3_2", &againstMuonLoose3_2, &b_againstMuonLoose3_2);
fChain->SetBranchAddress("againstMuonTight3_2", &againstMuonTight3_2, &b_againstMuonTight3_2);
fChain->SetBranchAddress("byCombinedIsolationDeltaBetaCorrRaw3Hits_2", &byCombinedIsolationDeltaBetaCorrRaw3Hits_2, &b_byCombinedIsolationDeltaBetaCorrRaw3Hits_2);
fChain->SetBranchAddress("byLooseCombinedIsolationDeltaBetaCorr3Hits_2", &byLooseCombinedIsolationDeltaBetaCorr3Hits_2, &b_byLooseCombinedIsolationDeltaBetaCorr3Hits_2);
fChain->SetBranchAddress("byMediumCombinedIsolationDeltaBetaCorr3Hits_2", &byMediumCombinedIsolationDeltaBetaCorr3Hits_2, &b_byMediumCombinedIsolationDeltaBetaCorr3Hits_2);
fChain->SetBranchAddress("byTightCombinedIsolationDeltaBetaCorr3Hits_2", &byTightCombinedIsolationDeltaBetaCorr3Hits_2, &b_byTightCombinedIsolationDeltaBetaCorr3Hits_2);
fChain->SetBranchAddress("byIsolationMVA3newDMwoLTraw_2", &byIsolationMVA3newDMwoLTraw_2, &b_byIsolationMVA3newDMwoLTraw_2);
fChain->SetBranchAddress("byIsolationMVA3oldDMwoLTraw_2", &byIsolationMVA3oldDMwoLTraw_2, &b_byIsolationMVA3oldDMwoLTraw_2);
fChain->SetBranchAddress("byIsolationMVA3newDMwLTraw_2", &byIsolationMVA3newDMwLTraw_2, &b_byIsolationMVA3newDMwLTraw_2);
fChain->SetBranchAddress("byIsolationMVA3oldDMwLTraw_2", &byIsolationMVA3oldDMwLTraw_2, &b_byIsolationMVA3oldDMwLTraw_2);
fChain->SetBranchAddress("byVLooseIsolationMVArun2v1DBoldDMwLT_2", &byVLooseIsolationMVArun2v1DBoldDMwLT_2, &b_byVLooseIsolationMVArun2v1DBoldDMwLT_2);
fChain->SetBranchAddress("byLooseIsolationMVArun2v1DBoldDMwLT_2", &byLooseIsolationMVArun2v1DBoldDMwLT_2, &b_byLooseIsolationMVArun2v1DBoldDMwLT_2);
fChain->SetBranchAddress("byMediumIsolationMVArun2v1DBoldDMwLT_2", &byMediumIsolationMVArun2v1DBoldDMwLT_2, &b_byMediumIsolationMVArun2v1DBoldDMwLT_2);
fChain->SetBranchAddress("byTightIsolationMVArun2v1DBoldDMwLT_2", &byTightIsolationMVArun2v1DBoldDMwLT_2, &b_byTightIsolationMVArun2v1DBoldDMwLT_2);
fChain->SetBranchAddress("byVTightIsolationMVArun2v1DBoldDMwLT_2", &byVTightIsolationMVArun2v1DBoldDMwLT_2, &b_byVTightIsolationMVArun2v1DBoldDMwLT_2);
fChain->SetBranchAddress("byVLooseIsolationMVArun2v1DBnewDMwLT_2", &byVLooseIsolationMVArun2v1DBnewDMwLT_2, &b_byVLooseIsolationMVArun2v1DBnewDMwLT_2);
fChain->SetBranchAddress("byLooseIsolationMVArun2v1DBnewDMwLT_2", &byLooseIsolationMVArun2v1DBnewDMwLT_2, &b_byLooseIsolationMVArun2v1DBnewDMwLT_2);
fChain->SetBranchAddress("byMediumIsolationMVArun2v1DBnewDMwLT_2", &byMediumIsolationMVArun2v1DBnewDMwLT_2, &b_byMediumIsolationMVArun2v1DBnewDMwLT_2);
fChain->SetBranchAddress("byTightIsolationMVArun2v1DBnewDMwLT_2", &byTightIsolationMVArun2v1DBnewDMwLT_2, &b_byTightIsolationMVArun2v1DBnewDMwLT_2);
fChain->SetBranchAddress("byVTightIsolationMVArun2v1DBnewDMwLT_2", &byVTightIsolationMVArun2v1DBnewDMwLT_2, &b_byVTightIsolationMVArun2v1DBnewDMwLT_2);
fChain->SetBranchAddress("idMVANewDM_2", &idMVANewDM_2, &b_idMVANewDM_2);
fChain->SetBranchAddress("chargedIsoPtSum_2", &chargedIsoPtSum_2, &b_chargedIsoPtSum_2);
fChain->SetBranchAddress("neutralIsoPtSum_2", &neutralIsoPtSum_2, &b_neutralIsoPtSum_2);
fChain->SetBranchAddress("puCorrPtSum_2", &puCorrPtSum_2, &b_puCorrPtSum_2);
fChain->SetBranchAddress("decayModeFindingOldDMs_2", &decayModeFindingOldDMs_2, &b_decayModeFindingOldDMs_2);
fChain->SetBranchAddress("decayMode_2", &decayMode_2, &b_decayMode_2);
fChain->SetBranchAddress("pt_tt", &pt_tt, &b_pt_tt);
fChain->SetBranchAddress("pfpt_tt", &pfpt_tt, &b_pfpt_tt);
fChain->SetBranchAddress("m_vis", &m_vis, &b_m_vis);
fChain->SetBranchAddress("pfpt_sum", &pfpt_sum, &b_pfpt_sum);
fChain->SetBranchAddress("pt_sum", &pt_sum, &b_pt_sum);
fChain->SetBranchAddress("dr_leptau", &dr_leptau, &b_dr_leptau);
fChain->SetBranchAddress("jeta1eta2", &jeta1eta2, &b_jeta1eta2);
fChain->SetBranchAddress("met_centrality", &met_centrality, &b_met_centrality);
fChain->SetBranchAddress("lep_etacentrality", &lep_etacentrality, &b_lep_etacentrality);
fChain->SetBranchAddress("sphericity", &sphericity, &b_sphericity);
fChain->SetBranchAddress("nadditionalMu", &nadditionalMu, &b_nadditionalMu);
fChain->SetBranchAddress("addmuon_pt", &addmuon_pt, &b_addmuon_pt);
fChain->SetBranchAddress("addmuon_eta", &addmuon_eta, &b_addmuon_eta);
fChain->SetBranchAddress("addmuon_phi", &addmuon_phi, &b_addmuon_phi);
fChain->SetBranchAddress("addmuon_m", &addmuon_m, &b_addmuon_m);
fChain->SetBranchAddress("addmuon_q", &addmuon_q, &b_addmuon_q);
fChain->SetBranchAddress("addmuon_iso", &addmuon_iso, &b_addmuon_iso);
fChain->SetBranchAddress("addmuon_gen_match", &addmuon_gen_match, &b_addmuon_gen_match);
fChain->SetBranchAddress("nadditionalEle", &nadditionalEle, &b_nadditionalEle);
fChain->SetBranchAddress("addele_pt", &addele_pt, &b_addele_pt);
fChain->SetBranchAddress("addele_eta", &addele_eta, &b_addele_eta);
fChain->SetBranchAddress("addele_phi", &addele_phi, &b_addele_phi);
fChain->SetBranchAddress("addele_m", &addele_m, &b_addele_m);
fChain->SetBranchAddress("addele_q", &addele_q, &b_addele_q);
fChain->SetBranchAddress("addele_iso", &addele_iso, &b_addele_iso);
fChain->SetBranchAddress("addele_gen_match", &addele_gen_match, &b_addele_gen_match);
fChain->SetBranchAddress("nadditionalTau", &nadditionalTau, &b_nadditionalTau);
fChain->SetBranchAddress("addtau_pt", &addtau_pt, &b_addtau_pt);
fChain->SetBranchAddress("addtau_eta", &addtau_eta, &b_addtau_eta);
fChain->SetBranchAddress("addtau_phi", &addtau_phi, &b_addtau_phi);
fChain->SetBranchAddress("addtau_m", &addtau_m, &b_addtau_m);
fChain->SetBranchAddress("addtau_q", &addtau_q, &b_addtau_q);
fChain->SetBranchAddress("addtau_byIsolationMVArun2v1DBnewDMwLTraw", &addtau_byIsolationMVArun2v1DBnewDMwLTraw, &b_addtau_byIsolationMVArun2v1DBnewDMwLTraw);
fChain->SetBranchAddress("addtau_byCombinedIsolationDeltaBetaCorrRaw3Hits", &addtau_byCombinedIsolationDeltaBetaCorrRaw3Hits, &b_addtau_byCombinedIsolationDeltaBetaCorrRaw3Hits);
fChain->SetBranchAddress("addtau_byMediumCombinedIsolationDeltaBetaCorr3Hits", &addtau_byMediumCombinedIsolationDeltaBetaCorr3Hits, &b_addtau_byMediumCombinedIsolationDeltaBetaCorr3Hits);
fChain->SetBranchAddress("addtau_byTightCombinedIsolationDeltaBetaCorr3Hits", &addtau_byTightCombinedIsolationDeltaBetaCorr3Hits, &b_addtau_byTightCombinedIsolationDeltaBetaCorr3Hits);
fChain->SetBranchAddress("addtau_byLooseCombinedIsolationDeltaBetaCorr3Hits", &addtau_byLooseCombinedIsolationDeltaBetaCorr3Hits, &b_addtau_byLooseCombinedIsolationDeltaBetaCorr3Hits);
fChain->SetBranchAddress("addtau_byVLooseIsolationMVArun2v1DBoldDMwLT", &addtau_byVLooseIsolationMVArun2v1DBoldDMwLT, &b_addtau_byVLooseIsolationMVArun2v1DBoldDMwLT);
fChain->SetBranchAddress("addtau_byLooseIsolationMVArun2v1DBoldDMwLT", &addtau_byLooseIsolationMVArun2v1DBoldDMwLT, &b_addtau_byLooseIsolationMVArun2v1DBoldDMwLT);
fChain->SetBranchAddress("addtau_byMediumIsolationMVArun2v1DBoldDMwLT", &addtau_byMediumIsolationMVArun2v1DBoldDMwLT, &b_addtau_byMediumIsolationMVArun2v1DBoldDMwLT);
fChain->SetBranchAddress("addtau_byTightIsolationMVArun2v1DBoldDMwLT", &addtau_byTightIsolationMVArun2v1DBoldDMwLT, &b_addtau_byTightIsolationMVArun2v1DBoldDMwLT);
fChain->SetBranchAddress("addtau_byVTightIsolationMVArun2v1DBoldDMwLT", &addtau_byVTightIsolationMVArun2v1DBoldDMwLT, &b_addtau_byVTightIsolationMVArun2v1DBoldDMwLT);
fChain->SetBranchAddress("addtau_byVLooseIsolationMVArun2v1DBnewDMwLT", &addtau_byVLooseIsolationMVArun2v1DBnewDMwLT, &b_addtau_byVLooseIsolationMVArun2v1DBnewDMwLT);
fChain->SetBranchAddress("addtau_byLooseIsolationMVArun2v1DBnewDMwLT", &addtau_byLooseIsolationMVArun2v1DBnewDMwLT, &b_addtau_byLooseIsolationMVArun2v1DBnewDMwLT);
fChain->SetBranchAddress("addtau_byMediumIsolationMVArun2v1DBnewDMwLT", &addtau_byMediumIsolationMVArun2v1DBnewDMwLT, &b_addtau_byMediumIsolationMVArun2v1DBnewDMwLT);
fChain->SetBranchAddress("addtau_byTightIsolationMVArun2v1DBnewDMwLT", &addtau_byTightIsolationMVArun2v1DBnewDMwLT, &b_addtau_byTightIsolationMVArun2v1DBnewDMwLT);
fChain->SetBranchAddress("addtau_byVTightIsolationMVArun2v1DBnewDMwLT", &addtau_byVTightIsolationMVArun2v1DBnewDMwLT, &b_addtau_byVTightIsolationMVArun2v1DBnewDMwLT);
fChain->SetBranchAddress("addtau_passesTauLepVetos", &addtau_passesTauLepVetos, &b_addtau_passesTauLepVetos);
fChain->SetBranchAddress("addtau_decayMode", &addtau_decayMode, &b_addtau_decayMode);
fChain->SetBranchAddress("addtau_d0", &addtau_d0, &b_addtau_d0);
fChain->SetBranchAddress("addtau_dZ", &addtau_dZ, &b_addtau_dZ);
fChain->SetBranchAddress("addtau_gen_match", &addtau_gen_match, &b_addtau_gen_match);
fChain->SetBranchAddress("addtau_mt", &addtau_mt, &b_addtau_mt);
fChain->SetBranchAddress("addtau_mvis", &addtau_mvis, &b_addtau_mvis);
fChain->SetBranchAddress("passesIsoCuts", &passesIsoCuts, &b_passesIsoCuts);
fChain->SetBranchAddress("passesLepIsoCuts", &passesLepIsoCuts, &b_passesLepIsoCuts);
fChain->SetBranchAddress("passesTauLepVetos", &passesTauLepVetos, &b_passesTauLepVetos);
fChain->SetBranchAddress("passesThirdLepVeto", &passesThirdLepVeto, &b_passesThirdLepVeto);
fChain->SetBranchAddress("passesDiMuonVeto", &passesDiMuonVeto, &b_passesDiMuonVeto);
fChain->SetBranchAddress("passesDiElectronVeto", &passesDiElectronVeto, &b_passesDiElectronVeto);
fChain->SetBranchAddress("XTrig_match", &XTrig_match, &b_XTrig_match);
fChain->SetBranchAddress("STrig_match", &STrig_match, &b_STrig_match);
fChain->SetBranchAddress("dilepton_veto", &dilepton_veto, &b_dilepton_veto);
fChain->SetBranchAddress("extraelec_veto", &extraelec_veto, &b_extraelec_veto);
fChain->SetBranchAddress("extramuon_veto", &extramuon_veto, &b_extramuon_veto);
fChain->SetBranchAddress("met", &met, &b_met);
fChain->SetBranchAddress("metphi", &metphi, &b_metphi);
fChain->SetBranchAddress("met_ex", &met_ex, &b_met_ex);
fChain->SetBranchAddress("met_ey", &met_ey, &b_met_ey);
fChain->SetBranchAddress("corrmet", &corrmet, &b_corrmet);
fChain->SetBranchAddress("corrmetphi", &corrmetphi, &b_corrmetphi);
fChain->SetBranchAddress("corrmet_ex", &corrmet_ex, &b_corrmet_ex);
fChain->SetBranchAddress("corrmet_ey", &corrmet_ey, &b_corrmet_ey);
fChain->SetBranchAddress("mvamet", &mvamet, &b_mvamet);
fChain->SetBranchAddress("mvametphi", &mvametphi, &b_mvametphi);
fChain->SetBranchAddress("mvamet_ex", &mvamet_ex, &b_mvamet_ex);
fChain->SetBranchAddress("mvamet_ey", &mvamet_ey, &b_mvamet_ey);
fChain->SetBranchAddress("corrmvamet", &corrmvamet, &b_corrmvamet);
fChain->SetBranchAddress("corrmvametphi", &corrmvametphi, &b_corrmvametphi);
fChain->SetBranchAddress("corrmvamet_ex", &corrmvamet_ex, &b_corrmvamet_ex);
fChain->SetBranchAddress("corrmvamet_ey", &corrmvamet_ey, &b_corrmvamet_ey);
fChain->SetBranchAddress("mvacov00", &mvacov00, &b_mvacov00);
fChain->SetBranchAddress("mvacov01", &mvacov01, &b_mvacov01);
fChain->SetBranchAddress("mvacov10", &mvacov10, &b_mvacov10);
fChain->SetBranchAddress("mvacov11", &mvacov11, &b_mvacov11);
fChain->SetBranchAddress("metcov00", &metcov00, &b_metcov00);
fChain->SetBranchAddress("metcov01", &metcov01, &b_metcov01);
fChain->SetBranchAddress("metcov10", &metcov10, &b_metcov10);
fChain->SetBranchAddress("metcov11", &metcov11, &b_metcov11);
fChain->SetBranchAddress("m_sv", &m_sv, &b_m_sv);
fChain->SetBranchAddress("pt_sv", &pt_sv, &b_pt_sv);
fChain->SetBranchAddress("mjj", &mjj, &b_mjj);
fChain->SetBranchAddress("mjjUp", &mjjUp, &b_mjjUp);
fChain->SetBranchAddress("mjjDown", &mjjDown, &b_mjjDown);
fChain->SetBranchAddress("jdeta", &jdeta, &b_jdeta);
fChain->SetBranchAddress("jdetaUp", &jdetaUp, &b_jdetaUp);
fChain->SetBranchAddress("jdetaDown", &jdetaDown, &b_jdetaDown);
fChain->SetBranchAddress("njetingap", &njetingap, &b_njetingap);
fChain->SetBranchAddress("njetingap20", &njetingap20, &b_njetingap20);
fChain->SetBranchAddress("jdphi", &jdphi, &b_jdphi);
fChain->SetBranchAddress("nbtag", &nbtag, &b_nbtag);
fChain->SetBranchAddress("njets", &njets, &b_njets);
fChain->SetBranchAddress("njetsUp", &njetsUp, &b_njetsUp);
fChain->SetBranchAddress("njetsDown", &njetsDown, &b_njetsDown);
fChain->SetBranchAddress("njetspt20", &njetspt20, &b_njetspt20);
fChain->SetBranchAddress("jpt_1", &jpt_1, &b_jpt_1);
fChain->SetBranchAddress("jptUp_1", &jptUp_1, &b_jptUp_1);
fChain->SetBranchAddress("jptDown_1", &jptDown_1, &b_jptDown_1);
fChain->SetBranchAddress("jeta_1", &jeta_1, &b_jeta_1);
fChain->SetBranchAddress("jphi_1", &jphi_1, &b_jphi_1);
fChain->SetBranchAddress("jm_1", &jm_1, &b_jm_1);
fChain->SetBranchAddress("jrawf_1", &jrawf_1, &b_jrawf_1);
fChain->SetBranchAddress("jmva_1", &jmva_1, &b_jmva_1);
fChain->SetBranchAddress("jpt_2", &jpt_2, &b_jpt_2);
fChain->SetBranchAddress("jptUp_2", &jptUp_2, &b_jptUp_2);
fChain->SetBranchAddress("jptDown_2", &jptDown_2, &b_jptDown_2);
fChain->SetBranchAddress("jeta_2", &jeta_2, &b_jeta_2);
fChain->SetBranchAddress("jphi_2", &jphi_2, &b_jphi_2);
fChain->SetBranchAddress("jm_2", &jm_2, &b_jm_2);
fChain->SetBranchAddress("jrawf_2", &jrawf_2, &b_jrawf_2);
fChain->SetBranchAddress("jmva_2", &jmva_2, &b_jmva_2);
fChain->SetBranchAddress("bpt_1", &bpt_1, &b_bpt_1);
fChain->SetBranchAddress("beta_1", &beta_1, &b_beta_1);
fChain->SetBranchAddress("bphi_1", &bphi_1, &b_bphi_1);
fChain->SetBranchAddress("brawf_1", &brawf_1, &b_brawf_1);
fChain->SetBranchAddress("bmva_1", &bmva_1, &b_bmva_1);
fChain->SetBranchAddress("bcsv_1", &bcsv_1, &b_bcsv_1);
fChain->SetBranchAddress("bpt_2", &bpt_2, &b_bpt_2);
fChain->SetBranchAddress("beta_2", &beta_2, &b_beta_2);
fChain->SetBranchAddress("bphi_2", &bphi_2, &b_bphi_2);
fChain->SetBranchAddress("brawf_2", &brawf_2, &b_brawf_2);
fChain->SetBranchAddress("bmva_2", &bmva_2, &b_bmva_2);
fChain->SetBranchAddress("bcsv_2", &bcsv_2, &b_bcsv_2);
Notify();
}
Bool_t ntuple::Notify()
{
// The Notify() function is called when a new file is opened. This
// can be either for a new TTree in a TChain or when when a new TTree
// is started when using PROOF. It is normally not necessary to make changes
// to the generated code, but the routine can be extended by the
// user if needed. The return value is currently not used.
return kTRUE;
}
void ntuple::Show(Long64_t entry)
{
// Print contents of entry.
// If entry is not specified, print current entry
if (!fChain) return;
fChain->Show(entry);
}
Int_t ntuple::Cut(Long64_t entry)
{
// This function may be called from Loop.
// returns 1 if entry is accepted.
// returns -1 otherwise.
return 1;
}
#endif // #ifdef ntuple_cxx