-
Notifications
You must be signed in to change notification settings - Fork 0
/
WWW.cc
8252 lines (8247 loc) · 276 KB
/
WWW.cc
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
#include "WWW.h"
WWW phys;
void WWW::Init(TTree *tree) {
lep_p4_branch = 0;
if (tree->GetBranch("lep_p4") != 0) {
lep_p4_branch = tree->GetBranch("lep_p4");
if (lep_p4_branch) {lep_p4_branch->SetAddress(&lep_p4_);}
}
gamma_p4_branch = 0;
if (tree->GetBranch("gamma_p4") != 0) {
gamma_p4_branch = tree->GetBranch("gamma_p4");
if (gamma_p4_branch) {gamma_p4_branch->SetAddress(&gamma_p4_);}
}
genPart_p4_branch = 0;
if (tree->GetBranch("genPart_p4") != 0) {
genPart_p4_branch = tree->GetBranch("genPart_p4");
if (genPart_p4_branch) {genPart_p4_branch->SetAddress(&genPart_p4_);}
}
jets_p4_branch = 0;
if (tree->GetBranch("jets_p4") != 0) {
jets_p4_branch = tree->GetBranch("jets_p4");
if (jets_p4_branch) {jets_p4_branch->SetAddress(&jets_p4_);}
}
removed_jets_p4_branch = 0;
if (tree->GetBranch("removed_jets_p4") != 0) {
removed_jets_p4_branch = tree->GetBranch("removed_jets_p4");
if (removed_jets_p4_branch) {removed_jets_p4_branch->SetAddress(&removed_jets_p4_);}
}
jets_medb_p4_branch = 0;
if (tree->GetBranch("jets_medb_p4") != 0) {
jets_medb_p4_branch = tree->GetBranch("jets_medb_p4");
if (jets_medb_p4_branch) {jets_medb_p4_branch->SetAddress(&jets_medb_p4_);}
}
jets_up_p4_branch = 0;
if (tree->GetBranch("jets_up_p4") != 0) {
jets_up_p4_branch = tree->GetBranch("jets_up_p4");
if (jets_up_p4_branch) {jets_up_p4_branch->SetAddress(&jets_up_p4_);}
}
jets_medb_up_p4_branch = 0;
if (tree->GetBranch("jets_medb_up_p4") != 0) {
jets_medb_up_p4_branch = tree->GetBranch("jets_medb_up_p4");
if (jets_medb_up_p4_branch) {jets_medb_up_p4_branch->SetAddress(&jets_medb_up_p4_);}
}
jets_dn_p4_branch = 0;
if (tree->GetBranch("jets_dn_p4") != 0) {
jets_dn_p4_branch = tree->GetBranch("jets_dn_p4");
if (jets_dn_p4_branch) {jets_dn_p4_branch->SetAddress(&jets_dn_p4_);}
}
jets_medb_dn_p4_branch = 0;
if (tree->GetBranch("jets_medb_dn_p4") != 0) {
jets_medb_dn_p4_branch = tree->GetBranch("jets_medb_dn_p4");
if (jets_medb_dn_p4_branch) {jets_medb_dn_p4_branch->SetAddress(&jets_medb_dn_p4_);}
}
highPtPFcands_p4_branch = 0;
if (tree->GetBranch("highPtPFcands_p4") != 0) {
highPtPFcands_p4_branch = tree->GetBranch("highPtPFcands_p4");
if (highPtPFcands_p4_branch) {highPtPFcands_p4_branch->SetAddress(&highPtPFcands_p4_);}
}
decayedphoton_lep1_p4_branch = 0;
if (tree->GetBranch("decayedphoton_lep1_p4") != 0) {
decayedphoton_lep1_p4_branch = tree->GetBranch("decayedphoton_lep1_p4");
if (decayedphoton_lep1_p4_branch) {decayedphoton_lep1_p4_branch->SetAddress(&decayedphoton_lep1_p4_);}
}
decayedphoton_lep2_p4_branch = 0;
if (tree->GetBranch("decayedphoton_lep2_p4") != 0) {
decayedphoton_lep2_p4_branch = tree->GetBranch("decayedphoton_lep2_p4");
if (decayedphoton_lep2_p4_branch) {decayedphoton_lep2_p4_branch->SetAddress(&decayedphoton_lep2_p4_);}
}
decayedphoton_bosn_p4_branch = 0;
if (tree->GetBranch("decayedphoton_bosn_p4") != 0) {
decayedphoton_bosn_p4_branch = tree->GetBranch("decayedphoton_bosn_p4");
if (decayedphoton_bosn_p4_branch) {decayedphoton_bosn_p4_branch->SetAddress(&decayedphoton_bosn_p4_);}
}
tree->SetMakeClass(1);
run_branch = 0;
if (tree->GetBranch("run") != 0) {
run_branch = tree->GetBranch("run");
if (run_branch) {run_branch->SetAddress(&run_);}
}
lumi_branch = 0;
if (tree->GetBranch("lumi") != 0) {
lumi_branch = tree->GetBranch("lumi");
if (lumi_branch) {lumi_branch->SetAddress(&lumi_);}
}
evt_branch = 0;
if (tree->GetBranch("evt") != 0) {
evt_branch = tree->GetBranch("evt");
if (evt_branch) {evt_branch->SetAddress(&evt_);}
}
isData_branch = 0;
if (tree->GetBranch("isData") != 0) {
isData_branch = tree->GetBranch("isData");
if (isData_branch) {isData_branch->SetAddress(&isData_);}
}
evt_passgoodrunlist_branch = 0;
if (tree->GetBranch("evt_passgoodrunlist") != 0) {
evt_passgoodrunlist_branch = tree->GetBranch("evt_passgoodrunlist");
if (evt_passgoodrunlist_branch) {evt_passgoodrunlist_branch->SetAddress(&evt_passgoodrunlist_);}
}
evt_scale1fb_branch = 0;
if (tree->GetBranch("evt_scale1fb") != 0) {
evt_scale1fb_branch = tree->GetBranch("evt_scale1fb");
if (evt_scale1fb_branch) {evt_scale1fb_branch->SetAddress(&evt_scale1fb_);}
}
evt_xsec_branch = 0;
if (tree->GetBranch("evt_xsec") != 0) {
evt_xsec_branch = tree->GetBranch("evt_xsec");
if (evt_xsec_branch) {evt_xsec_branch->SetAddress(&evt_xsec_);}
}
evt_kfactor_branch = 0;
if (tree->GetBranch("evt_kfactor") != 0) {
evt_kfactor_branch = tree->GetBranch("evt_kfactor");
if (evt_kfactor_branch) {evt_kfactor_branch->SetAddress(&evt_kfactor_);}
}
evt_filter_branch = 0;
if (tree->GetBranch("evt_filter") != 0) {
evt_filter_branch = tree->GetBranch("evt_filter");
if (evt_filter_branch) {evt_filter_branch->SetAddress(&evt_filter_);}
}
evt_nEvts_branch = 0;
if (tree->GetBranch("evt_nEvts") != 0) {
evt_nEvts_branch = tree->GetBranch("evt_nEvts");
if (evt_nEvts_branch) {evt_nEvts_branch->SetAddress(&evt_nEvts_);}
}
evt_dataset_branch = 0;
if (tree->GetBranch("evt_dataset") != 0) {
evt_dataset_branch = tree->GetBranch("evt_dataset");
if (evt_dataset_branch) {evt_dataset_branch->SetAddress(&evt_dataset_);}
}
puWeight_branch = 0;
if (tree->GetBranch("puWeight") != 0) {
puWeight_branch = tree->GetBranch("puWeight");
if (puWeight_branch) {puWeight_branch->SetAddress(&puWeight_);}
}
nVert_branch = 0;
if (tree->GetBranch("nVert") != 0) {
nVert_branch = tree->GetBranch("nVert");
if (nVert_branch) {nVert_branch->SetAddress(&nVert_);}
}
nTrueInt_branch = 0;
if (tree->GetBranch("nTrueInt") != 0) {
nTrueInt_branch = tree->GetBranch("nTrueInt");
if (nTrueInt_branch) {nTrueInt_branch->SetAddress(&nTrueInt_);}
}
rho_branch = 0;
if (tree->GetBranch("rho") != 0) {
rho_branch = tree->GetBranch("rho");
if (rho_branch) {rho_branch->SetAddress(&rho_);}
}
rho25_branch = 0;
if (tree->GetBranch("rho25") != 0) {
rho25_branch = tree->GetBranch("rho25");
if (rho25_branch) {rho25_branch->SetAddress(&rho25_);}
}
gen_ht_branch = 0;
if (tree->GetBranch("gen_ht") != 0) {
gen_ht_branch = tree->GetBranch("gen_ht");
if (gen_ht_branch) {gen_ht_branch->SetAddress(&gen_ht_);}
}
nBJetTight_branch = 0;
if (tree->GetBranch("nBJetTight") != 0) {
nBJetTight_branch = tree->GetBranch("nBJetTight");
if (nBJetTight_branch) {nBJetTight_branch->SetAddress(&nBJetTight_);}
}
nBJetMedium_branch = 0;
if (tree->GetBranch("nBJetMedium") != 0) {
nBJetMedium_branch = tree->GetBranch("nBJetMedium");
if (nBJetMedium_branch) {nBJetMedium_branch->SetAddress(&nBJetMedium_);}
}
nBJetLoose_branch = 0;
if (tree->GetBranch("nBJetLoose") != 0) {
nBJetLoose_branch = tree->GetBranch("nBJetLoose");
if (nBJetLoose_branch) {nBJetLoose_branch->SetAddress(&nBJetLoose_);}
}
nBJetTight_up_branch = 0;
if (tree->GetBranch("nBJetTight_up") != 0) {
nBJetTight_up_branch = tree->GetBranch("nBJetTight_up");
if (nBJetTight_up_branch) {nBJetTight_up_branch->SetAddress(&nBJetTight_up_);}
}
nBJetMedium_up_branch = 0;
if (tree->GetBranch("nBJetMedium_up") != 0) {
nBJetMedium_up_branch = tree->GetBranch("nBJetMedium_up");
if (nBJetMedium_up_branch) {nBJetMedium_up_branch->SetAddress(&nBJetMedium_up_);}
}
nBJetLoose_up_branch = 0;
if (tree->GetBranch("nBJetLoose_up") != 0) {
nBJetLoose_up_branch = tree->GetBranch("nBJetLoose_up");
if (nBJetLoose_up_branch) {nBJetLoose_up_branch->SetAddress(&nBJetLoose_up_);}
}
nBJetTight_dn_branch = 0;
if (tree->GetBranch("nBJetTight_dn") != 0) {
nBJetTight_dn_branch = tree->GetBranch("nBJetTight_dn");
if (nBJetTight_dn_branch) {nBJetTight_dn_branch->SetAddress(&nBJetTight_dn_);}
}
nBJetMedium_dn_branch = 0;
if (tree->GetBranch("nBJetMedium_dn") != 0) {
nBJetMedium_dn_branch = tree->GetBranch("nBJetMedium_dn");
if (nBJetMedium_dn_branch) {nBJetMedium_dn_branch->SetAddress(&nBJetMedium_dn_);}
}
nBJetLoose_dn_branch = 0;
if (tree->GetBranch("nBJetLoose_dn") != 0) {
nBJetLoose_dn_branch = tree->GetBranch("nBJetLoose_dn");
if (nBJetLoose_dn_branch) {nBJetLoose_dn_branch->SetAddress(&nBJetLoose_dn_);}
}
nJet200MuFrac50DphiMet_branch = 0;
if (tree->GetBranch("nJet200MuFrac50DphiMet") != 0) {
nJet200MuFrac50DphiMet_branch = tree->GetBranch("nJet200MuFrac50DphiMet");
if (nJet200MuFrac50DphiMet_branch) {nJet200MuFrac50DphiMet_branch->SetAddress(&nJet200MuFrac50DphiMet_);}
}
nMuons10_branch = 0;
if (tree->GetBranch("nMuons10") != 0) {
nMuons10_branch = tree->GetBranch("nMuons10");
if (nMuons10_branch) {nMuons10_branch->SetAddress(&nMuons10_);}
}
nBadMuons20_branch = 0;
if (tree->GetBranch("nBadMuons20") != 0) {
nBadMuons20_branch = tree->GetBranch("nBadMuons20");
if (nBadMuons20_branch) {nBadMuons20_branch->SetAddress(&nBadMuons20_);}
}
nElectrons10_branch = 0;
if (tree->GetBranch("nElectrons10") != 0) {
nElectrons10_branch = tree->GetBranch("nElectrons10");
if (nElectrons10_branch) {nElectrons10_branch->SetAddress(&nElectrons10_);}
}
nGammas20_branch = 0;
if (tree->GetBranch("nGammas20") != 0) {
nGammas20_branch = tree->GetBranch("nGammas20");
if (nGammas20_branch) {nGammas20_branch->SetAddress(&nGammas20_);}
}
nTaus20_branch = 0;
if (tree->GetBranch("nTaus20") != 0) {
nTaus20_branch = tree->GetBranch("nTaus20");
if (nTaus20_branch) {nTaus20_branch->SetAddress(&nTaus20_);}
}
met_pt_branch = 0;
if (tree->GetBranch("met_pt") != 0) {
met_pt_branch = tree->GetBranch("met_pt");
if (met_pt_branch) {met_pt_branch->SetAddress(&met_pt_);}
}
met_phi_branch = 0;
if (tree->GetBranch("met_phi") != 0) {
met_phi_branch = tree->GetBranch("met_phi");
if (met_phi_branch) {met_phi_branch->SetAddress(&met_phi_);}
}
met_calo_pt_branch = 0;
if (tree->GetBranch("met_calo_pt") != 0) {
met_calo_pt_branch = tree->GetBranch("met_calo_pt");
if (met_calo_pt_branch) {met_calo_pt_branch->SetAddress(&met_calo_pt_);}
}
met_calo_phi_branch = 0;
if (tree->GetBranch("met_calo_phi") != 0) {
met_calo_phi_branch = tree->GetBranch("met_calo_phi");
if (met_calo_phi_branch) {met_calo_phi_branch->SetAddress(&met_calo_phi_);}
}
met_miniaod_pt_branch = 0;
if (tree->GetBranch("met_miniaod_pt") != 0) {
met_miniaod_pt_branch = tree->GetBranch("met_miniaod_pt");
if (met_miniaod_pt_branch) {met_miniaod_pt_branch->SetAddress(&met_miniaod_pt_);}
}
met_miniaod_phi_branch = 0;
if (tree->GetBranch("met_miniaod_phi") != 0) {
met_miniaod_phi_branch = tree->GetBranch("met_miniaod_phi");
if (met_miniaod_phi_branch) {met_miniaod_phi_branch->SetAddress(&met_miniaod_phi_);}
}
met_muegclean_pt_branch = 0;
if (tree->GetBranch("met_muegclean_pt") != 0) {
met_muegclean_pt_branch = tree->GetBranch("met_muegclean_pt");
if (met_muegclean_pt_branch) {met_muegclean_pt_branch->SetAddress(&met_muegclean_pt_);}
}
met_muegclean_phi_branch = 0;
if (tree->GetBranch("met_muegclean_phi") != 0) {
met_muegclean_phi_branch = tree->GetBranch("met_muegclean_phi");
if (met_muegclean_phi_branch) {met_muegclean_phi_branch->SetAddress(&met_muegclean_phi_);}
}
met_rawPt_branch = 0;
if (tree->GetBranch("met_rawPt") != 0) {
met_rawPt_branch = tree->GetBranch("met_rawPt");
if (met_rawPt_branch) {met_rawPt_branch->SetAddress(&met_rawPt_);}
}
met_rawPhi_branch = 0;
if (tree->GetBranch("met_rawPhi") != 0) {
met_rawPhi_branch = tree->GetBranch("met_rawPhi");
if (met_rawPhi_branch) {met_rawPhi_branch->SetAddress(&met_rawPhi_);}
}
met_genPt_branch = 0;
if (tree->GetBranch("met_genPt") != 0) {
met_genPt_branch = tree->GetBranch("met_genPt");
if (met_genPt_branch) {met_genPt_branch->SetAddress(&met_genPt_);}
}
met_genPhi_branch = 0;
if (tree->GetBranch("met_genPhi") != 0) {
met_genPhi_branch = tree->GetBranch("met_genPhi");
if (met_genPhi_branch) {met_genPhi_branch->SetAddress(&met_genPhi_);}
}
sumet_raw_branch = 0;
if (tree->GetBranch("sumet_raw") != 0) {
sumet_raw_branch = tree->GetBranch("sumet_raw");
if (sumet_raw_branch) {sumet_raw_branch->SetAddress(&sumet_raw_);}
}
Flag_ecalLaserCorrFilter_branch = 0;
if (tree->GetBranch("Flag_ecalLaserCorrFilter") != 0) {
Flag_ecalLaserCorrFilter_branch = tree->GetBranch("Flag_ecalLaserCorrFilter");
if (Flag_ecalLaserCorrFilter_branch) {Flag_ecalLaserCorrFilter_branch->SetAddress(&Flag_ecalLaserCorrFilter_);}
}
Flag_hcalLaserEventFilter_branch = 0;
if (tree->GetBranch("Flag_hcalLaserEventFilter") != 0) {
Flag_hcalLaserEventFilter_branch = tree->GetBranch("Flag_hcalLaserEventFilter");
if (Flag_hcalLaserEventFilter_branch) {Flag_hcalLaserEventFilter_branch->SetAddress(&Flag_hcalLaserEventFilter_);}
}
Flag_trackingFailureFilter_branch = 0;
if (tree->GetBranch("Flag_trackingFailureFilter") != 0) {
Flag_trackingFailureFilter_branch = tree->GetBranch("Flag_trackingFailureFilter");
if (Flag_trackingFailureFilter_branch) {Flag_trackingFailureFilter_branch->SetAddress(&Flag_trackingFailureFilter_);}
}
Flag_CSCTightHaloFilter_branch = 0;
if (tree->GetBranch("Flag_CSCTightHaloFilter") != 0) {
Flag_CSCTightHaloFilter_branch = tree->GetBranch("Flag_CSCTightHaloFilter");
if (Flag_CSCTightHaloFilter_branch) {Flag_CSCTightHaloFilter_branch->SetAddress(&Flag_CSCTightHaloFilter_);}
}
Flag_HBHENoiseFilter_branch = 0;
if (tree->GetBranch("Flag_HBHENoiseFilter") != 0) {
Flag_HBHENoiseFilter_branch = tree->GetBranch("Flag_HBHENoiseFilter");
if (Flag_HBHENoiseFilter_branch) {Flag_HBHENoiseFilter_branch->SetAddress(&Flag_HBHENoiseFilter_);}
}
Flag_HBHEIsoNoiseFilter_branch = 0;
if (tree->GetBranch("Flag_HBHEIsoNoiseFilter") != 0) {
Flag_HBHEIsoNoiseFilter_branch = tree->GetBranch("Flag_HBHEIsoNoiseFilter");
if (Flag_HBHEIsoNoiseFilter_branch) {Flag_HBHEIsoNoiseFilter_branch->SetAddress(&Flag_HBHEIsoNoiseFilter_);}
}
Flag_CSCTightHalo2015Filter_branch = 0;
if (tree->GetBranch("Flag_CSCTightHalo2015Filter") != 0) {
Flag_CSCTightHalo2015Filter_branch = tree->GetBranch("Flag_CSCTightHalo2015Filter");
if (Flag_CSCTightHalo2015Filter_branch) {Flag_CSCTightHalo2015Filter_branch->SetAddress(&Flag_CSCTightHalo2015Filter_);}
}
Flag_EcalDeadCellTriggerPrimitiveFilter_branch = 0;
if (tree->GetBranch("Flag_EcalDeadCellTriggerPrimitiveFilter") != 0) {
Flag_EcalDeadCellTriggerPrimitiveFilter_branch = tree->GetBranch("Flag_EcalDeadCellTriggerPrimitiveFilter");
if (Flag_EcalDeadCellTriggerPrimitiveFilter_branch) {Flag_EcalDeadCellTriggerPrimitiveFilter_branch->SetAddress(&Flag_EcalDeadCellTriggerPrimitiveFilter_);}
}
Flag_goodVertices_branch = 0;
if (tree->GetBranch("Flag_goodVertices") != 0) {
Flag_goodVertices_branch = tree->GetBranch("Flag_goodVertices");
if (Flag_goodVertices_branch) {Flag_goodVertices_branch->SetAddress(&Flag_goodVertices_);}
}
Flag_eeBadScFilter_branch = 0;
if (tree->GetBranch("Flag_eeBadScFilter") != 0) {
Flag_eeBadScFilter_branch = tree->GetBranch("Flag_eeBadScFilter");
if (Flag_eeBadScFilter_branch) {Flag_eeBadScFilter_branch->SetAddress(&Flag_eeBadScFilter_);}
}
Flag_globalTightHalo2016_branch = 0;
if (tree->GetBranch("Flag_globalTightHalo2016") != 0) {
Flag_globalTightHalo2016_branch = tree->GetBranch("Flag_globalTightHalo2016");
if (Flag_globalTightHalo2016_branch) {Flag_globalTightHalo2016_branch->SetAddress(&Flag_globalTightHalo2016_);}
}
Flag_badMuonFilter_branch = 0;
if (tree->GetBranch("Flag_badMuonFilter") != 0) {
Flag_badMuonFilter_branch = tree->GetBranch("Flag_badMuonFilter");
if (Flag_badMuonFilter_branch) {Flag_badMuonFilter_branch->SetAddress(&Flag_badMuonFilter_);}
}
Flag_badChargedCandidateFilter_branch = 0;
if (tree->GetBranch("Flag_badChargedCandidateFilter") != 0) {
Flag_badChargedCandidateFilter_branch = tree->GetBranch("Flag_badChargedCandidateFilter");
if (Flag_badChargedCandidateFilter_branch) {Flag_badChargedCandidateFilter_branch->SetAddress(&Flag_badChargedCandidateFilter_);}
}
Flag_badMuonFilterv2_branch = 0;
if (tree->GetBranch("Flag_badMuonFilterv2") != 0) {
Flag_badMuonFilterv2_branch = tree->GetBranch("Flag_badMuonFilterv2");
if (Flag_badMuonFilterv2_branch) {Flag_badMuonFilterv2_branch->SetAddress(&Flag_badMuonFilterv2_);}
}
Flag_badChargedCandidateFilterv2_branch = 0;
if (tree->GetBranch("Flag_badChargedCandidateFilterv2") != 0) {
Flag_badChargedCandidateFilterv2_branch = tree->GetBranch("Flag_badChargedCandidateFilterv2");
if (Flag_badChargedCandidateFilterv2_branch) {Flag_badChargedCandidateFilterv2_branch->SetAddress(&Flag_badChargedCandidateFilterv2_);}
}
Flag_badMuons_branch = 0;
if (tree->GetBranch("Flag_badMuons") != 0) {
Flag_badMuons_branch = tree->GetBranch("Flag_badMuons");
if (Flag_badMuons_branch) {Flag_badMuons_branch->SetAddress(&Flag_badMuons_);}
}
Flag_duplicateMuons_branch = 0;
if (tree->GetBranch("Flag_duplicateMuons") != 0) {
Flag_duplicateMuons_branch = tree->GetBranch("Flag_duplicateMuons");
if (Flag_duplicateMuons_branch) {Flag_duplicateMuons_branch->SetAddress(&Flag_duplicateMuons_);}
}
Flag_noBadMuons_branch = 0;
if (tree->GetBranch("Flag_noBadMuons") != 0) {
Flag_noBadMuons_branch = tree->GetBranch("Flag_noBadMuons");
if (Flag_noBadMuons_branch) {Flag_noBadMuons_branch->SetAddress(&Flag_noBadMuons_);}
}
HLT_singleEl_branch = 0;
if (tree->GetBranch("HLT_singleEl") != 0) {
HLT_singleEl_branch = tree->GetBranch("HLT_singleEl");
if (HLT_singleEl_branch) {HLT_singleEl_branch->SetAddress(&HLT_singleEl_);}
}
HLT_singleMu_branch = 0;
if (tree->GetBranch("HLT_singleMu") != 0) {
HLT_singleMu_branch = tree->GetBranch("HLT_singleMu");
if (HLT_singleMu_branch) {HLT_singleMu_branch->SetAddress(&HLT_singleMu_);}
}
HLT_singleMu_noiso_branch = 0;
if (tree->GetBranch("HLT_singleMu_noiso") != 0) {
HLT_singleMu_noiso_branch = tree->GetBranch("HLT_singleMu_noiso");
if (HLT_singleMu_noiso_branch) {HLT_singleMu_noiso_branch->SetAddress(&HLT_singleMu_noiso_);}
}
HLT_DoubleEl_noiso_branch = 0;
if (tree->GetBranch("HLT_DoubleEl_noiso") != 0) {
HLT_DoubleEl_noiso_branch = tree->GetBranch("HLT_DoubleEl_noiso");
if (HLT_DoubleEl_noiso_branch) {HLT_DoubleEl_noiso_branch->SetAddress(&HLT_DoubleEl_noiso_);}
}
HLT_DoubleEl_branch = 0;
if (tree->GetBranch("HLT_DoubleEl") != 0) {
HLT_DoubleEl_branch = tree->GetBranch("HLT_DoubleEl");
if (HLT_DoubleEl_branch) {HLT_DoubleEl_branch->SetAddress(&HLT_DoubleEl_);}
}
HLT_DoubleEl_DZ_branch = 0;
if (tree->GetBranch("HLT_DoubleEl_DZ") != 0) {
HLT_DoubleEl_DZ_branch = tree->GetBranch("HLT_DoubleEl_DZ");
if (HLT_DoubleEl_DZ_branch) {HLT_DoubleEl_DZ_branch->SetAddress(&HLT_DoubleEl_DZ_);}
}
HLT_DoubleEl_DZ_2_branch = 0;
if (tree->GetBranch("HLT_DoubleEl_DZ_2") != 0) {
HLT_DoubleEl_DZ_2_branch = tree->GetBranch("HLT_DoubleEl_DZ_2");
if (HLT_DoubleEl_DZ_2_branch) {HLT_DoubleEl_DZ_2_branch->SetAddress(&HLT_DoubleEl_DZ_2_);}
}
HLT_MuEG_branch = 0;
if (tree->GetBranch("HLT_MuEG") != 0) {
HLT_MuEG_branch = tree->GetBranch("HLT_MuEG");
if (HLT_MuEG_branch) {HLT_MuEG_branch->SetAddress(&HLT_MuEG_);}
}
HLT_MuEG_2_branch = 0;
if (tree->GetBranch("HLT_MuEG_2") != 0) {
HLT_MuEG_2_branch = tree->GetBranch("HLT_MuEG_2");
if (HLT_MuEG_2_branch) {HLT_MuEG_2_branch->SetAddress(&HLT_MuEG_2_);}
}
HLT_MuEG_noiso_branch = 0;
if (tree->GetBranch("HLT_MuEG_noiso") != 0) {
HLT_MuEG_noiso_branch = tree->GetBranch("HLT_MuEG_noiso");
if (HLT_MuEG_noiso_branch) {HLT_MuEG_noiso_branch->SetAddress(&HLT_MuEG_noiso_);}
}
HLT_MuEG_noiso_2_branch = 0;
if (tree->GetBranch("HLT_MuEG_noiso_2") != 0) {
HLT_MuEG_noiso_2_branch = tree->GetBranch("HLT_MuEG_noiso_2");
if (HLT_MuEG_noiso_2_branch) {HLT_MuEG_noiso_2_branch->SetAddress(&HLT_MuEG_noiso_2_);}
}
HLT_Mu8_EG17_branch = 0;
if (tree->GetBranch("HLT_Mu8_EG17") != 0) {
HLT_Mu8_EG17_branch = tree->GetBranch("HLT_Mu8_EG17");
if (HLT_Mu8_EG17_branch) {HLT_Mu8_EG17_branch->SetAddress(&HLT_Mu8_EG17_);}
}
HLT_Mu8_EG23_branch = 0;
if (tree->GetBranch("HLT_Mu8_EG23") != 0) {
HLT_Mu8_EG23_branch = tree->GetBranch("HLT_Mu8_EG23");
if (HLT_Mu8_EG23_branch) {HLT_Mu8_EG23_branch->SetAddress(&HLT_Mu8_EG23_);}
}
HLT_Mu8_EG23_DZ_branch = 0;
if (tree->GetBranch("HLT_Mu8_EG23_DZ") != 0) {
HLT_Mu8_EG23_DZ_branch = tree->GetBranch("HLT_Mu8_EG23_DZ");
if (HLT_Mu8_EG23_DZ_branch) {HLT_Mu8_EG23_DZ_branch->SetAddress(&HLT_Mu8_EG23_DZ_);}
}
HLT_Mu12_EG23_DZ_branch = 0;
if (tree->GetBranch("HLT_Mu12_EG23_DZ") != 0) {
HLT_Mu12_EG23_DZ_branch = tree->GetBranch("HLT_Mu12_EG23_DZ");
if (HLT_Mu12_EG23_DZ_branch) {HLT_Mu12_EG23_DZ_branch->SetAddress(&HLT_Mu12_EG23_DZ_);}
}
HLT_Mu17_EG12_branch = 0;
if (tree->GetBranch("HLT_Mu17_EG12") != 0) {
HLT_Mu17_EG12_branch = tree->GetBranch("HLT_Mu17_EG12");
if (HLT_Mu17_EG12_branch) {HLT_Mu17_EG12_branch->SetAddress(&HLT_Mu17_EG12_);}
}
HLT_Mu23_EG8_branch = 0;
if (tree->GetBranch("HLT_Mu23_EG8") != 0) {
HLT_Mu23_EG8_branch = tree->GetBranch("HLT_Mu23_EG8");
if (HLT_Mu23_EG8_branch) {HLT_Mu23_EG8_branch->SetAddress(&HLT_Mu23_EG8_);}
}
HLT_Mu23_EG8_DZ_branch = 0;
if (tree->GetBranch("HLT_Mu23_EG8_DZ") != 0) {
HLT_Mu23_EG8_DZ_branch = tree->GetBranch("HLT_Mu23_EG8_DZ");
if (HLT_Mu23_EG8_DZ_branch) {HLT_Mu23_EG8_DZ_branch->SetAddress(&HLT_Mu23_EG8_DZ_);}
}
HLT_Mu23_EG12_branch = 0;
if (tree->GetBranch("HLT_Mu23_EG12") != 0) {
HLT_Mu23_EG12_branch = tree->GetBranch("HLT_Mu23_EG12");
if (HLT_Mu23_EG12_branch) {HLT_Mu23_EG12_branch->SetAddress(&HLT_Mu23_EG12_);}
}
HLT_Mu23_EG12_DZ_branch = 0;
if (tree->GetBranch("HLT_Mu23_EG12_DZ") != 0) {
HLT_Mu23_EG12_DZ_branch = tree->GetBranch("HLT_Mu23_EG12_DZ");
if (HLT_Mu23_EG12_DZ_branch) {HLT_Mu23_EG12_DZ_branch->SetAddress(&HLT_Mu23_EG12_DZ_);}
}
HLT_DoubleMu_noiso_branch = 0;
if (tree->GetBranch("HLT_DoubleMu_noiso") != 0) {
HLT_DoubleMu_noiso_branch = tree->GetBranch("HLT_DoubleMu_noiso");
if (HLT_DoubleMu_noiso_branch) {HLT_DoubleMu_noiso_branch->SetAddress(&HLT_DoubleMu_noiso_);}
}
HLT_DoubleMu_noiso_27_8_branch = 0;
if (tree->GetBranch("HLT_DoubleMu_noiso_27_8") != 0) {
HLT_DoubleMu_noiso_27_8_branch = tree->GetBranch("HLT_DoubleMu_noiso_27_8");
if (HLT_DoubleMu_noiso_27_8_branch) {HLT_DoubleMu_noiso_27_8_branch->SetAddress(&HLT_DoubleMu_noiso_27_8_);}
}
HLT_DoubleMu_noiso_30_11_branch = 0;
if (tree->GetBranch("HLT_DoubleMu_noiso_30_11") != 0) {
HLT_DoubleMu_noiso_30_11_branch = tree->GetBranch("HLT_DoubleMu_noiso_30_11");
if (HLT_DoubleMu_noiso_30_11_branch) {HLT_DoubleMu_noiso_30_11_branch->SetAddress(&HLT_DoubleMu_noiso_30_11_);}
}
HLT_DoubleMu_noiso_40_11_branch = 0;
if (tree->GetBranch("HLT_DoubleMu_noiso_40_11") != 0) {
HLT_DoubleMu_noiso_40_11_branch = tree->GetBranch("HLT_DoubleMu_noiso_40_11");
if (HLT_DoubleMu_noiso_40_11_branch) {HLT_DoubleMu_noiso_40_11_branch->SetAddress(&HLT_DoubleMu_noiso_40_11_);}
}
HLT_DoubleMu_branch = 0;
if (tree->GetBranch("HLT_DoubleMu") != 0) {
HLT_DoubleMu_branch = tree->GetBranch("HLT_DoubleMu");
if (HLT_DoubleMu_branch) {HLT_DoubleMu_branch->SetAddress(&HLT_DoubleMu_);}
}
HLT_DoubleMu_tk_branch = 0;
if (tree->GetBranch("HLT_DoubleMu_tk") != 0) {
HLT_DoubleMu_tk_branch = tree->GetBranch("HLT_DoubleMu_tk");
if (HLT_DoubleMu_tk_branch) {HLT_DoubleMu_tk_branch->SetAddress(&HLT_DoubleMu_tk_);}
}
HLT_DoubleMu_dbltk_branch = 0;
if (tree->GetBranch("HLT_DoubleMu_dbltk") != 0) {
HLT_DoubleMu_dbltk_branch = tree->GetBranch("HLT_DoubleMu_dbltk");
if (HLT_DoubleMu_dbltk_branch) {HLT_DoubleMu_dbltk_branch->SetAddress(&HLT_DoubleMu_dbltk_);}
}
HLT_DoubleMu_nonDZ_branch = 0;
if (tree->GetBranch("HLT_DoubleMu_nonDZ") != 0) {
HLT_DoubleMu_nonDZ_branch = tree->GetBranch("HLT_DoubleMu_nonDZ");
if (HLT_DoubleMu_nonDZ_branch) {HLT_DoubleMu_nonDZ_branch->SetAddress(&HLT_DoubleMu_nonDZ_);}
}
HLT_DoubleMu_tk_nonDZ_branch = 0;
if (tree->GetBranch("HLT_DoubleMu_tk_nonDZ") != 0) {
HLT_DoubleMu_tk_nonDZ_branch = tree->GetBranch("HLT_DoubleMu_tk_nonDZ");
if (HLT_DoubleMu_tk_nonDZ_branch) {HLT_DoubleMu_tk_nonDZ_branch->SetAddress(&HLT_DoubleMu_tk_nonDZ_);}
}
HLT_Photon22_R9Id90_HE10_IsoM_branch = 0;
if (tree->GetBranch("HLT_Photon22_R9Id90_HE10_IsoM") != 0) {
HLT_Photon22_R9Id90_HE10_IsoM_branch = tree->GetBranch("HLT_Photon22_R9Id90_HE10_IsoM");
if (HLT_Photon22_R9Id90_HE10_IsoM_branch) {HLT_Photon22_R9Id90_HE10_IsoM_branch->SetAddress(&HLT_Photon22_R9Id90_HE10_IsoM_);}
}
HLT_Photon30_R9Id90_HE10_IsoM_branch = 0;
if (tree->GetBranch("HLT_Photon30_R9Id90_HE10_IsoM") != 0) {
HLT_Photon30_R9Id90_HE10_IsoM_branch = tree->GetBranch("HLT_Photon30_R9Id90_HE10_IsoM");
if (HLT_Photon30_R9Id90_HE10_IsoM_branch) {HLT_Photon30_R9Id90_HE10_IsoM_branch->SetAddress(&HLT_Photon30_R9Id90_HE10_IsoM_);}
}
HLT_Photon36_R9Id90_HE10_IsoM_branch = 0;
if (tree->GetBranch("HLT_Photon36_R9Id90_HE10_IsoM") != 0) {
HLT_Photon36_R9Id90_HE10_IsoM_branch = tree->GetBranch("HLT_Photon36_R9Id90_HE10_IsoM");
if (HLT_Photon36_R9Id90_HE10_IsoM_branch) {HLT_Photon36_R9Id90_HE10_IsoM_branch->SetAddress(&HLT_Photon36_R9Id90_HE10_IsoM_);}
}
HLT_Photon50_R9Id90_HE10_IsoM_branch = 0;
if (tree->GetBranch("HLT_Photon50_R9Id90_HE10_IsoM") != 0) {
HLT_Photon50_R9Id90_HE10_IsoM_branch = tree->GetBranch("HLT_Photon50_R9Id90_HE10_IsoM");
if (HLT_Photon50_R9Id90_HE10_IsoM_branch) {HLT_Photon50_R9Id90_HE10_IsoM_branch->SetAddress(&HLT_Photon50_R9Id90_HE10_IsoM_);}
}
HLT_Photon75_R9Id90_HE10_IsoM_branch = 0;
if (tree->GetBranch("HLT_Photon75_R9Id90_HE10_IsoM") != 0) {
HLT_Photon75_R9Id90_HE10_IsoM_branch = tree->GetBranch("HLT_Photon75_R9Id90_HE10_IsoM");
if (HLT_Photon75_R9Id90_HE10_IsoM_branch) {HLT_Photon75_R9Id90_HE10_IsoM_branch->SetAddress(&HLT_Photon75_R9Id90_HE10_IsoM_);}
}
HLT_Photon90_R9Id90_HE10_IsoM_branch = 0;
if (tree->GetBranch("HLT_Photon90_R9Id90_HE10_IsoM") != 0) {
HLT_Photon90_R9Id90_HE10_IsoM_branch = tree->GetBranch("HLT_Photon90_R9Id90_HE10_IsoM");
if (HLT_Photon90_R9Id90_HE10_IsoM_branch) {HLT_Photon90_R9Id90_HE10_IsoM_branch->SetAddress(&HLT_Photon90_R9Id90_HE10_IsoM_);}
}
HLT_Photon120_R9Id90_HE10_IsoM_branch = 0;
if (tree->GetBranch("HLT_Photon120_R9Id90_HE10_IsoM") != 0) {
HLT_Photon120_R9Id90_HE10_IsoM_branch = tree->GetBranch("HLT_Photon120_R9Id90_HE10_IsoM");
if (HLT_Photon120_R9Id90_HE10_IsoM_branch) {HLT_Photon120_R9Id90_HE10_IsoM_branch->SetAddress(&HLT_Photon120_R9Id90_HE10_IsoM_);}
}
HLT_Photon165_R9Id90_HE10_IsoM_branch = 0;
if (tree->GetBranch("HLT_Photon165_R9Id90_HE10_IsoM") != 0) {
HLT_Photon165_R9Id90_HE10_IsoM_branch = tree->GetBranch("HLT_Photon165_R9Id90_HE10_IsoM");
if (HLT_Photon165_R9Id90_HE10_IsoM_branch) {HLT_Photon165_R9Id90_HE10_IsoM_branch->SetAddress(&HLT_Photon165_R9Id90_HE10_IsoM_);}
}
HLT_Photon165_HE10_branch = 0;
if (tree->GetBranch("HLT_Photon165_HE10") != 0) {
HLT_Photon165_HE10_branch = tree->GetBranch("HLT_Photon165_HE10");
if (HLT_Photon165_HE10_branch) {HLT_Photon165_HE10_branch->SetAddress(&HLT_Photon165_HE10_);}
}
HLT_CaloJet500_NoJetID_branch = 0;
if (tree->GetBranch("HLT_CaloJet500_NoJetID") != 0) {
HLT_CaloJet500_NoJetID_branch = tree->GetBranch("HLT_CaloJet500_NoJetID");
if (HLT_CaloJet500_NoJetID_branch) {HLT_CaloJet500_NoJetID_branch->SetAddress(&HLT_CaloJet500_NoJetID_);}
}
HLT_ECALHT800_NoJetID_branch = 0;
if (tree->GetBranch("HLT_ECALHT800_NoJetID") != 0) {
HLT_ECALHT800_NoJetID_branch = tree->GetBranch("HLT_ECALHT800_NoJetID");
if (HLT_ECALHT800_NoJetID_branch) {HLT_ECALHT800_NoJetID_branch->SetAddress(&HLT_ECALHT800_NoJetID_);}
}
HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton") != 0) {
HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton_branch = tree->GetBranch("HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton");
if (HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton_branch) {HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton_branch->SetAddress(&HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton_);}
}
HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton") != 0) {
HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton_branch = tree->GetBranch("HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton");
if (HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton_branch) {HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton_branch->SetAddress(&HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton_);}
}
HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton") != 0) {
HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton_branch = tree->GetBranch("HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton");
if (HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton_branch) {HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton_branch->SetAddress(&HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton_);}
}
HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton") != 0) {
HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton_branch = tree->GetBranch("HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton");
if (HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton_branch) {HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton_branch->SetAddress(&HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton_);}
}
HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton") != 0) {
HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton_branch = tree->GetBranch("HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton");
if (HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton_branch) {HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton_branch->SetAddress(&HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton_);}
}
HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton") != 0) {
HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton_branch = tree->GetBranch("HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton");
if (HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton_branch) {HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton_branch->SetAddress(&HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton_);}
}
HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton") != 0) {
HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton_branch = tree->GetBranch("HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton");
if (HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton_branch) {HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton_branch->SetAddress(&HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton_);}
}
HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton") != 0) {
HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton_branch = tree->GetBranch("HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton");
if (HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton_branch) {HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton_branch->SetAddress(&HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton_);}
}
HLT_Photon165_HE10_matchedtophoton_branch = 0;
if (tree->GetBranch("HLT_Photon165_HE10_matchedtophoton") != 0) {
HLT_Photon165_HE10_matchedtophoton_branch = tree->GetBranch("HLT_Photon165_HE10_matchedtophoton");
if (HLT_Photon165_HE10_matchedtophoton_branch) {HLT_Photon165_HE10_matchedtophoton_branch->SetAddress(&HLT_Photon165_HE10_matchedtophoton_);}
}
dilmass_branch = 0;
if (tree->GetBranch("dilmass") != 0) {
dilmass_branch = tree->GetBranch("dilmass");
if (dilmass_branch) {dilmass_branch->SetAddress(&dilmass_);}
}
dilpt_branch = 0;
if (tree->GetBranch("dilpt") != 0) {
dilpt_branch = tree->GetBranch("dilpt");
if (dilpt_branch) {dilpt_branch->SetAddress(&dilpt_);}
}
dRll_branch = 0;
if (tree->GetBranch("dRll") != 0) {
dRll_branch = tree->GetBranch("dRll");
if (dRll_branch) {dRll_branch->SetAddress(&dRll_);}
}
matched_neutralemf_branch = 0;
if (tree->GetBranch("matched_neutralemf") != 0) {
matched_neutralemf_branch = tree->GetBranch("matched_neutralemf");
if (matched_neutralemf_branch) {matched_neutralemf_branch->SetAddress(&matched_neutralemf_);}
}
matched_emf_branch = 0;
if (tree->GetBranch("matched_emf") != 0) {
matched_emf_branch = tree->GetBranch("matched_emf");
if (matched_emf_branch) {matched_emf_branch->SetAddress(&matched_emf_);}
}
elveto_branch = 0;
if (tree->GetBranch("elveto") != 0) {
elveto_branch = tree->GetBranch("elveto");
if (elveto_branch) {elveto_branch->SetAddress(&elveto_);}
}
nlep_branch = 0;
if (tree->GetBranch("nlep") != 0) {
nlep_branch = tree->GetBranch("nlep");
if (nlep_branch) {nlep_branch->SetAddress(&nlep_);}
}
nveto_leptons_branch = 0;
if (tree->GetBranch("nveto_leptons") != 0) {
nveto_leptons_branch = tree->GetBranch("nveto_leptons");
if (nveto_leptons_branch) {nveto_leptons_branch->SetAddress(&nveto_leptons_);}
}
nVetoEl_relIso03EAless01_branch = 0;
if (tree->GetBranch("nVetoEl_relIso03EAless01") != 0) {
nVetoEl_relIso03EAless01_branch = tree->GetBranch("nVetoEl_relIso03EAless01");
if (nVetoEl_relIso03EAless01_branch) {nVetoEl_relIso03EAless01_branch->SetAddress(&nVetoEl_relIso03EAless01_);}
}
nVetoEl_relIso03EAless02_branch = 0;
if (tree->GetBranch("nVetoEl_relIso03EAless02") != 0) {
nVetoEl_relIso03EAless02_branch = tree->GetBranch("nVetoEl_relIso03EAless02");
if (nVetoEl_relIso03EAless02_branch) {nVetoEl_relIso03EAless02_branch->SetAddress(&nVetoEl_relIso03EAless02_);}
}
nVetoEl_relIso03EAless03_branch = 0;
if (tree->GetBranch("nVetoEl_relIso03EAless03") != 0) {
nVetoEl_relIso03EAless03_branch = tree->GetBranch("nVetoEl_relIso03EAless03");
if (nVetoEl_relIso03EAless03_branch) {nVetoEl_relIso03EAless03_branch->SetAddress(&nVetoEl_relIso03EAless03_);}
}
nVetoEl_relIso03EAless04_branch = 0;
if (tree->GetBranch("nVetoEl_relIso03EAless04") != 0) {
nVetoEl_relIso03EAless04_branch = tree->GetBranch("nVetoEl_relIso03EAless04");
if (nVetoEl_relIso03EAless04_branch) {nVetoEl_relIso03EAless04_branch->SetAddress(&nVetoEl_relIso03EAless04_);}
}
nVetoMu_relIso03EAless01_branch = 0;
if (tree->GetBranch("nVetoMu_relIso03EAless01") != 0) {
nVetoMu_relIso03EAless01_branch = tree->GetBranch("nVetoMu_relIso03EAless01");
if (nVetoMu_relIso03EAless01_branch) {nVetoMu_relIso03EAless01_branch->SetAddress(&nVetoMu_relIso03EAless01_);}
}
nVetoMu_relIso03EAless02_branch = 0;
if (tree->GetBranch("nVetoMu_relIso03EAless02") != 0) {
nVetoMu_relIso03EAless02_branch = tree->GetBranch("nVetoMu_relIso03EAless02");
if (nVetoMu_relIso03EAless02_branch) {nVetoMu_relIso03EAless02_branch->SetAddress(&nVetoMu_relIso03EAless02_);}
}
nVetoMu_relIso03EAless03_branch = 0;
if (tree->GetBranch("nVetoMu_relIso03EAless03") != 0) {
nVetoMu_relIso03EAless03_branch = tree->GetBranch("nVetoMu_relIso03EAless03");
if (nVetoMu_relIso03EAless03_branch) {nVetoMu_relIso03EAless03_branch->SetAddress(&nVetoMu_relIso03EAless03_);}
}
nVetoMu_relIso03EAless04_branch = 0;
if (tree->GetBranch("nVetoMu_relIso03EAless04") != 0) {
nVetoMu_relIso03EAless04_branch = tree->GetBranch("nVetoMu_relIso03EAless04");
if (nVetoMu_relIso03EAless04_branch) {nVetoMu_relIso03EAless04_branch->SetAddress(&nVetoMu_relIso03EAless04_);}
}
lep_pt_branch = 0;
if (tree->GetBranch("lep_pt") != 0) {
lep_pt_branch = tree->GetBranch("lep_pt");
if (lep_pt_branch) {lep_pt_branch->SetAddress(&lep_pt_);}
}
lep_eta_branch = 0;
if (tree->GetBranch("lep_eta") != 0) {
lep_eta_branch = tree->GetBranch("lep_eta");
if (lep_eta_branch) {lep_eta_branch->SetAddress(&lep_eta_);}
}
lep_phi_branch = 0;
if (tree->GetBranch("lep_phi") != 0) {
lep_phi_branch = tree->GetBranch("lep_phi");
if (lep_phi_branch) {lep_phi_branch->SetAddress(&lep_phi_);}
}
lep_mass_branch = 0;
if (tree->GetBranch("lep_mass") != 0) {
lep_mass_branch = tree->GetBranch("lep_mass");
if (lep_mass_branch) {lep_mass_branch->SetAddress(&lep_mass_);}
}
lep_charge_branch = 0;
if (tree->GetBranch("lep_charge") != 0) {
lep_charge_branch = tree->GetBranch("lep_charge");
if (lep_charge_branch) {lep_charge_branch->SetAddress(&lep_charge_);}
}
lep_3ch_agree_branch = 0;
if (tree->GetBranch("lep_3ch_agree") != 0) {
lep_3ch_agree_branch = tree->GetBranch("lep_3ch_agree");
if (lep_3ch_agree_branch) {lep_3ch_agree_branch->SetAddress(&lep_3ch_agree_);}
}
lep_isFromW_branch = 0;
if (tree->GetBranch("lep_isFromW") != 0) {
lep_isFromW_branch = tree->GetBranch("lep_isFromW");
if (lep_isFromW_branch) {lep_isFromW_branch->SetAddress(&lep_isFromW_);}
}
lep_isFromZ_branch = 0;
if (tree->GetBranch("lep_isFromZ") != 0) {
lep_isFromZ_branch = tree->GetBranch("lep_isFromZ");
if (lep_isFromZ_branch) {lep_isFromZ_branch->SetAddress(&lep_isFromZ_);}
}
lep_isFromB_branch = 0;
if (tree->GetBranch("lep_isFromB") != 0) {
lep_isFromB_branch = tree->GetBranch("lep_isFromB");
if (lep_isFromB_branch) {lep_isFromB_branch->SetAddress(&lep_isFromB_);}
}
lep_isFromC_branch = 0;
if (tree->GetBranch("lep_isFromC") != 0) {
lep_isFromC_branch = tree->GetBranch("lep_isFromC");
if (lep_isFromC_branch) {lep_isFromC_branch->SetAddress(&lep_isFromC_);}
}
lep_isFromL_branch = 0;
if (tree->GetBranch("lep_isFromL") != 0) {
lep_isFromL_branch = tree->GetBranch("lep_isFromL");
if (lep_isFromL_branch) {lep_isFromL_branch->SetAddress(&lep_isFromL_);}
}
lep_isFromLF_branch = 0;
if (tree->GetBranch("lep_isFromLF") != 0) {
lep_isFromLF_branch = tree->GetBranch("lep_isFromLF");
if (lep_isFromLF_branch) {lep_isFromLF_branch->SetAddress(&lep_isFromLF_);}
}
lep_ptRatio_branch = 0;
if (tree->GetBranch("lep_ptRatio") != 0) {
lep_ptRatio_branch = tree->GetBranch("lep_ptRatio");
if (lep_ptRatio_branch) {lep_ptRatio_branch->SetAddress(&lep_ptRatio_);}
}
lep_ptRel_branch = 0;
if (tree->GetBranch("lep_ptRel") != 0) {
lep_ptRel_branch = tree->GetBranch("lep_ptRel");
if (lep_ptRel_branch) {lep_ptRel_branch->SetAddress(&lep_ptRel_);}
}
lep_relIso03_branch = 0;
if (tree->GetBranch("lep_relIso03") != 0) {
lep_relIso03_branch = tree->GetBranch("lep_relIso03");
if (lep_relIso03_branch) {lep_relIso03_branch->SetAddress(&lep_relIso03_);}
}
lep_relIso03DB_branch = 0;
if (tree->GetBranch("lep_relIso03DB") != 0) {
lep_relIso03DB_branch = tree->GetBranch("lep_relIso03DB");
if (lep_relIso03DB_branch) {lep_relIso03DB_branch->SetAddress(&lep_relIso03DB_);}
}
lep_relIso03EA_branch = 0;
if (tree->GetBranch("lep_relIso03EA") != 0) {
lep_relIso03EA_branch = tree->GetBranch("lep_relIso03EA");
if (lep_relIso03EA_branch) {lep_relIso03EA_branch->SetAddress(&lep_relIso03EA_);}
}
lep_relIso03EAv2_branch = 0;
if (tree->GetBranch("lep_relIso03EAv2") != 0) {
lep_relIso03EAv2_branch = tree->GetBranch("lep_relIso03EAv2");
if (lep_relIso03EAv2_branch) {lep_relIso03EAv2_branch->SetAddress(&lep_relIso03EAv2_);}
}
lep_relIso04DB_branch = 0;
if (tree->GetBranch("lep_relIso04DB") != 0) {
lep_relIso04DB_branch = tree->GetBranch("lep_relIso04DB");
if (lep_relIso04DB_branch) {lep_relIso04DB_branch->SetAddress(&lep_relIso04DB_);}
}
lep_relIso04EA_branch = 0;
if (tree->GetBranch("lep_relIso04EA") != 0) {
lep_relIso04EA_branch = tree->GetBranch("lep_relIso04EA");
if (lep_relIso04EA_branch) {lep_relIso04EA_branch->SetAddress(&lep_relIso04EA_);}
}
lep_relIso04EAv2_branch = 0;
if (tree->GetBranch("lep_relIso04EAv2") != 0) {
lep_relIso04EAv2_branch = tree->GetBranch("lep_relIso04EAv2");
if (lep_relIso04EAv2_branch) {lep_relIso04EAv2_branch->SetAddress(&lep_relIso04EAv2_);}
}
lep_miniRelIsoCMS3_EA_branch = 0;
if (tree->GetBranch("lep_miniRelIsoCMS3_EA") != 0) {
lep_miniRelIsoCMS3_EA_branch = tree->GetBranch("lep_miniRelIsoCMS3_EA");
if (lep_miniRelIsoCMS3_EA_branch) {lep_miniRelIsoCMS3_EA_branch->SetAddress(&lep_miniRelIsoCMS3_EA_);}
}
lep_miniRelIsoCMS3_EAv2_branch = 0;
if (tree->GetBranch("lep_miniRelIsoCMS3_EAv2") != 0) {
lep_miniRelIsoCMS3_EAv2_branch = tree->GetBranch("lep_miniRelIsoCMS3_EAv2");
if (lep_miniRelIsoCMS3_EAv2_branch) {lep_miniRelIsoCMS3_EAv2_branch->SetAddress(&lep_miniRelIsoCMS3_EAv2_);}
}
lep_miniRelIsoCMS3_DB_branch = 0;
if (tree->GetBranch("lep_miniRelIsoCMS3_DB") != 0) {
lep_miniRelIsoCMS3_DB_branch = tree->GetBranch("lep_miniRelIsoCMS3_DB");
if (lep_miniRelIsoCMS3_DB_branch) {lep_miniRelIsoCMS3_DB_branch->SetAddress(&lep_miniRelIsoCMS3_DB_);}
}
lep_pdgId_branch = 0;
if (tree->GetBranch("lep_pdgId") != 0) {
lep_pdgId_branch = tree->GetBranch("lep_pdgId");
if (lep_pdgId_branch) {lep_pdgId_branch->SetAddress(&lep_pdgId_);}
}
lep_dxy_branch = 0;
if (tree->GetBranch("lep_dxy") != 0) {
lep_dxy_branch = tree->GetBranch("lep_dxy");
if (lep_dxy_branch) {lep_dxy_branch->SetAddress(&lep_dxy_);}
}
lep_ip3d_branch = 0;
if (tree->GetBranch("lep_ip3d") != 0) {
lep_ip3d_branch = tree->GetBranch("lep_ip3d");
if (lep_ip3d_branch) {lep_ip3d_branch->SetAddress(&lep_ip3d_);}
}
lep_ip3derr_branch = 0;
if (tree->GetBranch("lep_ip3derr") != 0) {
lep_ip3derr_branch = tree->GetBranch("lep_ip3derr");
if (lep_ip3derr_branch) {lep_ip3derr_branch->SetAddress(&lep_ip3derr_);}
}
lep_etaSC_branch = 0;
if (tree->GetBranch("lep_etaSC") != 0) {
lep_etaSC_branch = tree->GetBranch("lep_etaSC");
if (lep_etaSC_branch) {lep_etaSC_branch->SetAddress(&lep_etaSC_);}
}
lep_dz_branch = 0;
if (tree->GetBranch("lep_dz") != 0) {
lep_dz_branch = tree->GetBranch("lep_dz");
if (lep_dz_branch) {lep_dz_branch->SetAddress(&lep_dz_);}
}
lep_tightId_branch = 0;
if (tree->GetBranch("lep_tightId") != 0) {
lep_tightId_branch = tree->GetBranch("lep_tightId");
if (lep_tightId_branch) {lep_tightId_branch->SetAddress(&lep_tightId_);}
}
lep_mcMatchId_branch = 0;
if (tree->GetBranch("lep_mcMatchId") != 0) {
lep_mcMatchId_branch = tree->GetBranch("lep_mcMatchId");
if (lep_mcMatchId_branch) {lep_mcMatchId_branch->SetAddress(&lep_mcMatchId_);}
}
lep_lostHits_branch = 0;
if (tree->GetBranch("lep_lostHits") != 0) {
lep_lostHits_branch = tree->GetBranch("lep_lostHits");
if (lep_lostHits_branch) {lep_lostHits_branch->SetAddress(&lep_lostHits_);}
}
lep_convVeto_branch = 0;
if (tree->GetBranch("lep_convVeto") != 0) {
lep_convVeto_branch = tree->GetBranch("lep_convVeto");
if (lep_convVeto_branch) {lep_convVeto_branch->SetAddress(&lep_convVeto_);}
}
lep_tightCharge_branch = 0;
if (tree->GetBranch("lep_tightCharge") != 0) {
lep_tightCharge_branch = tree->GetBranch("lep_tightCharge");
if (lep_tightCharge_branch) {lep_tightCharge_branch->SetAddress(&lep_tightCharge_);}
}
lep_MVA_branch = 0;
if (tree->GetBranch("lep_MVA") != 0) {
lep_MVA_branch = tree->GetBranch("lep_MVA");
if (lep_MVA_branch) {lep_MVA_branch->SetAddress(&lep_MVA_);}
}
lep_validfraction_branch = 0;
if (tree->GetBranch("lep_validfraction") != 0) {
lep_validfraction_branch = tree->GetBranch("lep_validfraction");
if (lep_validfraction_branch) {lep_validfraction_branch->SetAddress(&lep_validfraction_);}
}
lep_pterr_branch = 0;
if (tree->GetBranch("lep_pterr") != 0) {
lep_pterr_branch = tree->GetBranch("lep_pterr");
if (lep_pterr_branch) {lep_pterr_branch->SetAddress(&lep_pterr_);}
}
lep_sta_pterrOpt_branch = 0;
if (tree->GetBranch("lep_sta_pterrOpt") != 0) {
lep_sta_pterrOpt_branch = tree->GetBranch("lep_sta_pterrOpt");
if (lep_sta_pterrOpt_branch) {lep_sta_pterrOpt_branch->SetAddress(&lep_sta_pterrOpt_);}
}
lep_glb_pterrOpt_branch = 0;
if (tree->GetBranch("lep_glb_pterrOpt") != 0) {
lep_glb_pterrOpt_branch = tree->GetBranch("lep_glb_pterrOpt");
if (lep_glb_pterrOpt_branch) {lep_glb_pterrOpt_branch->SetAddress(&lep_glb_pterrOpt_);}
}
lep_x2ondof_branch = 0;
if (tree->GetBranch("lep_x2ondof") != 0) {
lep_x2ondof_branch = tree->GetBranch("lep_x2ondof");
if (lep_x2ondof_branch) {lep_x2ondof_branch->SetAddress(&lep_x2ondof_);}
}
lep_sta_x2ondof_branch = 0;
if (tree->GetBranch("lep_sta_x2ondof") != 0) {
lep_sta_x2ondof_branch = tree->GetBranch("lep_sta_x2ondof");
if (lep_sta_x2ondof_branch) {lep_sta_x2ondof_branch->SetAddress(&lep_sta_x2ondof_);}
}
lep_glb_x2ondof_branch = 0;
if (tree->GetBranch("lep_glb_x2ondof") != 0) {
lep_glb_x2ondof_branch = tree->GetBranch("lep_glb_x2ondof");
if (lep_glb_x2ondof_branch) {lep_glb_x2ondof_branch->SetAddress(&lep_glb_x2ondof_);}
}
nisoTrack_5gev_branch = 0;
if (tree->GetBranch("nisoTrack_5gev") != 0) {
nisoTrack_5gev_branch = tree->GetBranch("nisoTrack_5gev");
if (nisoTrack_5gev_branch) {nisoTrack_5gev_branch->SetAddress(&nisoTrack_5gev_);}
}
nisoTrack_mt2_branch = 0;
if (tree->GetBranch("nisoTrack_mt2") != 0) {
nisoTrack_mt2_branch = tree->GetBranch("nisoTrack_mt2");
if (nisoTrack_mt2_branch) {nisoTrack_mt2_branch->SetAddress(&nisoTrack_mt2_);}
}
nisoTrack_PFLep5_woverlaps_branch = 0;
if (tree->GetBranch("nisoTrack_PFLep5_woverlaps") != 0) {
nisoTrack_PFLep5_woverlaps_branch = tree->GetBranch("nisoTrack_PFLep5_woverlaps");
if (nisoTrack_PFLep5_woverlaps_branch) {nisoTrack_PFLep5_woverlaps_branch->SetAddress(&nisoTrack_PFLep5_woverlaps_);}
}
nisoTrack_PFHad10_woverlaps_branch = 0;
if (tree->GetBranch("nisoTrack_PFHad10_woverlaps") != 0) {
nisoTrack_PFHad10_woverlaps_branch = tree->GetBranch("nisoTrack_PFHad10_woverlaps");
if (nisoTrack_PFHad10_woverlaps_branch) {nisoTrack_PFHad10_woverlaps_branch->SetAddress(&nisoTrack_PFHad10_woverlaps_);}
}
ngamma_branch = 0;
if (tree->GetBranch("ngamma") != 0) {
ngamma_branch = tree->GetBranch("ngamma");
if (ngamma_branch) {ngamma_branch->SetAddress(&ngamma_);}
}
gamma_pt_branch = 0;
if (tree->GetBranch("gamma_pt") != 0) {
gamma_pt_branch = tree->GetBranch("gamma_pt");
if (gamma_pt_branch) {gamma_pt_branch->SetAddress(&gamma_pt_);}
}
gamma_eta_branch = 0;
if (tree->GetBranch("gamma_eta") != 0) {
gamma_eta_branch = tree->GetBranch("gamma_eta");
if (gamma_eta_branch) {gamma_eta_branch->SetAddress(&gamma_eta_);}
}
gamma_phi_branch = 0;
if (tree->GetBranch("gamma_phi") != 0) {
gamma_phi_branch = tree->GetBranch("gamma_phi");
if (gamma_phi_branch) {gamma_phi_branch->SetAddress(&gamma_phi_);}
}
gamma_mass_branch = 0;
if (tree->GetBranch("gamma_mass") != 0) {
gamma_mass_branch = tree->GetBranch("gamma_mass");
if (gamma_mass_branch) {gamma_mass_branch->SetAddress(&gamma_mass_);}
}
gamma_mcMatchId_branch = 0;
if (tree->GetBranch("gamma_mcMatchId") != 0) {
gamma_mcMatchId_branch = tree->GetBranch("gamma_mcMatchId");
if (gamma_mcMatchId_branch) {gamma_mcMatchId_branch->SetAddress(&gamma_mcMatchId_);}
}
gamma_genPt_branch = 0;
if (tree->GetBranch("gamma_genPt") != 0) {
gamma_genPt_branch = tree->GetBranch("gamma_genPt");
if (gamma_genPt_branch) {gamma_genPt_branch->SetAddress(&gamma_genPt_);}
}
gamma_genIso_branch = 0;
if (tree->GetBranch("gamma_genIso") != 0) {
gamma_genIso_branch = tree->GetBranch("gamma_genIso");
if (gamma_genIso_branch) {gamma_genIso_branch->SetAddress(&gamma_genIso_);}
}
gamma_chHadIso_branch = 0;
if (tree->GetBranch("gamma_chHadIso") != 0) {
gamma_chHadIso_branch = tree->GetBranch("gamma_chHadIso");
if (gamma_chHadIso_branch) {gamma_chHadIso_branch->SetAddress(&gamma_chHadIso_);}
}
gamma_neuHadIso_branch = 0;
if (tree->GetBranch("gamma_neuHadIso") != 0) {
gamma_neuHadIso_branch = tree->GetBranch("gamma_neuHadIso");
if (gamma_neuHadIso_branch) {gamma_neuHadIso_branch->SetAddress(&gamma_neuHadIso_);}
}