-
Notifications
You must be signed in to change notification settings - Fork 0
/
StopCMS3.h
1424 lines (1418 loc) · 52.5 KB
/
StopCMS3.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// -*- C++ -*-
// This is a header file generated with the command:
// makeCMS3ClassFiles("/nfs-7/userdata/stopRun2/stop_babies__CMS3_V080005__BabyMaker_V0800X_v1__20160703/data_met_Run2016B_MINIAOD_PromptReco-v2.root", "t", "StopCMS3", "stoptas", "stopcms3")
#ifndef StopCMS3_H
#define StopCMS3_H
#include "Math/LorentzVector.h"
#include "Math/Point3D.h"
#include "TMath.h"
#include "TBranch.h"
#include "TTree.h"
#include "TH1F.h"
#include "TFile.h"
#include "TBits.h"
#include <vector>
#include <unistd.h>
typedef ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > LorentzVector;
using namespace std;
class StopCMS3 {
private:
protected:
unsigned int index;
unsigned int run_;
TBranch *run_branch;
bool run_isLoaded;
unsigned int ls_;
TBranch *ls_branch;
bool ls_isLoaded;
unsigned int evt_;
TBranch *evt_branch;
bool evt_isLoaded;
int nvtxs_;
TBranch *nvtxs_branch;
bool nvtxs_isLoaded;
int pu_nvtxs_;
TBranch *pu_nvtxs_branch;
bool pu_nvtxs_isLoaded;
float pfmet_;
TBranch *pfmet_branch;
bool pfmet_isLoaded;
float pfmet_phi_;
TBranch *pfmet_phi_branch;
bool pfmet_phi_isLoaded;
float pfmet_rl_;
TBranch *pfmet_rl_branch;
bool pfmet_rl_isLoaded;
float pfmet_phi_rl_;
TBranch *pfmet_phi_rl_branch;
bool pfmet_phi_rl_isLoaded;
float scale1fb_;
TBranch *scale1fb_branch;
bool scale1fb_isLoaded;
float xsec_;
TBranch *xsec_branch;
bool xsec_isLoaded;
float xsec_uncert_;
TBranch *xsec_uncert_branch;
bool xsec_uncert_isLoaded;
float kfactor_;
TBranch *kfactor_branch;
bool kfactor_isLoaded;
float pu_ntrue_;
TBranch *pu_ntrue_branch;
bool pu_ntrue_isLoaded;
int ngoodleps_;
TBranch *ngoodleps_branch;
bool ngoodleps_isLoaded;
int nvetoleps_;
TBranch *nvetoleps_branch;
bool nvetoleps_isLoaded;
bool is_data_;
TBranch *is_data_branch;
bool is_data_isLoaded;
string *dataset_;
TBranch *dataset_branch;
bool dataset_isLoaded;
string *filename_;
TBranch *filename_branch;
bool filename_isLoaded;
string *cms3tag_;
TBranch *cms3tag_branch;
bool cms3tag_isLoaded;
unsigned int nEvents_;
TBranch *nEvents_branch;
bool nEvents_isLoaded;
unsigned int nEvents_goodvtx_;
TBranch *nEvents_goodvtx_branch;
bool nEvents_goodvtx_isLoaded;
unsigned int nEvents_MET30_;
TBranch *nEvents_MET30_branch;
bool nEvents_MET30_isLoaded;
unsigned int nEvents_1goodlep_;
TBranch *nEvents_1goodlep_branch;
bool nEvents_1goodlep_isLoaded;
unsigned int nEvents_2goodjets_;
TBranch *nEvents_2goodjets_branch;
bool nEvents_2goodjets_isLoaded;
int is0lep_;
TBranch *is0lep_branch;
bool is0lep_isLoaded;
int is1lep_;
TBranch *is1lep_branch;
bool is1lep_isLoaded;
int is2lep_;
TBranch *is2lep_branch;
bool is2lep_isLoaded;
int isZtoNuNu_;
TBranch *isZtoNuNu_branch;
bool isZtoNuNu_isLoaded;
int is1lepFromW_;
TBranch *is1lepFromW_branch;
bool is1lepFromW_isLoaded;
int is1lepFromTop_;
TBranch *is1lepFromTop_branch;
bool is1lepFromTop_isLoaded;
float MT2W_;
TBranch *MT2W_branch;
bool MT2W_isLoaded;
float MT2W_rl_;
TBranch *MT2W_rl_branch;
bool MT2W_rl_isLoaded;
float mindphi_met_j1_j2_;
TBranch *mindphi_met_j1_j2_branch;
bool mindphi_met_j1_j2_isLoaded;
float mindphi_met_j1_j2_rl_;
TBranch *mindphi_met_j1_j2_rl_branch;
bool mindphi_met_j1_j2_rl_isLoaded;
float mt_met_lep_;
TBranch *mt_met_lep_branch;
bool mt_met_lep_isLoaded;
float mt_met_lep_rl_;
TBranch *mt_met_lep_rl_branch;
bool mt_met_lep_rl_isLoaded;
float hadronic_top_chi2_;
TBranch *hadronic_top_chi2_branch;
bool hadronic_top_chi2_isLoaded;
float ak4pfjets_rho_;
TBranch *ak4pfjets_rho_branch;
bool ak4pfjets_rho_isLoaded;
float pdf_up_weight_;
TBranch *pdf_up_weight_branch;
bool pdf_up_weight_isLoaded;
float pdf_down_weight_;
TBranch *pdf_down_weight_branch;
bool pdf_down_weight_isLoaded;
vector<string> *genweightsID_;
TBranch *genweightsID_branch;
bool genweightsID_isLoaded;
vector<float> *genweights_;
TBranch *genweights_branch;
bool genweights_isLoaded;
float weight_btagsf_;
TBranch *weight_btagsf_branch;
bool weight_btagsf_isLoaded;
float weight_btagsf_heavy_UP_;
TBranch *weight_btagsf_heavy_UP_branch;
bool weight_btagsf_heavy_UP_isLoaded;
float weight_btagsf_light_UP_;
TBranch *weight_btagsf_light_UP_branch;
bool weight_btagsf_light_UP_isLoaded;
float weight_btagsf_heavy_DN_;
TBranch *weight_btagsf_heavy_DN_branch;
bool weight_btagsf_heavy_DN_isLoaded;
float weight_btagsf_light_DN_;
TBranch *weight_btagsf_light_DN_branch;
bool weight_btagsf_light_DN_isLoaded;
float weight_btagsf_fastsim_UP_;
TBranch *weight_btagsf_fastsim_UP_branch;
bool weight_btagsf_fastsim_UP_isLoaded;
float weight_btagsf_fastsim_DN_;
TBranch *weight_btagsf_fastsim_DN_branch;
bool weight_btagsf_fastsim_DN_isLoaded;
float weight_lepSF_;
TBranch *weight_lepSF_branch;
bool weight_lepSF_isLoaded;
float weight_lepSF_up_;
TBranch *weight_lepSF_up_branch;
bool weight_lepSF_up_isLoaded;
float weight_lepSF_down_;
TBranch *weight_lepSF_down_branch;
bool weight_lepSF_down_isLoaded;
float weight_vetoLepSF_;
TBranch *weight_vetoLepSF_branch;
bool weight_vetoLepSF_isLoaded;
float weight_vetoLepSF_up_;
TBranch *weight_vetoLepSF_up_branch;
bool weight_vetoLepSF_up_isLoaded;
float weight_vetoLepSF_down_;
TBranch *weight_vetoLepSF_down_branch;
bool weight_vetoLepSF_down_isLoaded;
float weight_lepSF_fastSim_;
TBranch *weight_lepSF_fastSim_branch;
bool weight_lepSF_fastSim_isLoaded;
float weight_lepSF_fastSim_up_;
TBranch *weight_lepSF_fastSim_up_branch;
bool weight_lepSF_fastSim_up_isLoaded;
float weight_lepSF_fastSim_down_;
TBranch *weight_lepSF_fastSim_down_branch;
bool weight_lepSF_fastSim_down_isLoaded;
float weight_ISR_;
TBranch *weight_ISR_branch;
bool weight_ISR_isLoaded;
float weight_ISRup_;
TBranch *weight_ISRup_branch;
bool weight_ISRup_isLoaded;
float weight_ISRdown_;
TBranch *weight_ISRdown_branch;
bool weight_ISRdown_isLoaded;
float weight_PU_;
TBranch *weight_PU_branch;
bool weight_PU_isLoaded;
float weight_PUup_;
TBranch *weight_PUup_branch;
bool weight_PUup_isLoaded;
float weight_PUdown_;
TBranch *weight_PUdown_branch;
bool weight_PUdown_isLoaded;
vector<string> *sparms_names_;
TBranch *sparms_names_branch;
bool sparms_names_isLoaded;
vector<float> *sparms_values_;
TBranch *sparms_values_branch;
bool sparms_values_isLoaded;
int sparms_subProcessId_;
TBranch *sparms_subProcessId_branch;
bool sparms_subProcessId_isLoaded;
float mass_lsp_;
TBranch *mass_lsp_branch;
bool mass_lsp_isLoaded;
float mass_chargino_;
TBranch *mass_chargino_branch;
bool mass_chargino_isLoaded;
float mass_stop_;
TBranch *mass_stop_branch;
bool mass_stop_isLoaded;
float mass_gluino_;
TBranch *mass_gluino_branch;
bool mass_gluino_isLoaded;
float genmet_;
TBranch *genmet_branch;
bool genmet_isLoaded;
float genmet_phi_;
TBranch *genmet_phi_branch;
bool genmet_phi_isLoaded;
float genht_;
TBranch *genht_branch;
bool genht_isLoaded;
bool PassTrackVeto_;
TBranch *PassTrackVeto_branch;
bool PassTrackVeto_isLoaded;
bool PassTauVeto_;
TBranch *PassTauVeto_branch;
bool PassTauVeto_isLoaded;
float topness_;
TBranch *topness_branch;
bool topness_isLoaded;
float topnessMod_;
TBranch *topnessMod_branch;
bool topnessMod_isLoaded;
float topnessMod_rl_;
TBranch *topnessMod_rl_branch;
bool topnessMod_rl_isLoaded;
float Mlb_closestb_;
TBranch *Mlb_closestb_branch;
bool Mlb_closestb_isLoaded;
int HLT_SingleEl_;
TBranch *HLT_SingleEl_branch;
bool HLT_SingleEl_isLoaded;
int HLT_SingleMu_;
TBranch *HLT_SingleMu_branch;
bool HLT_SingleMu_isLoaded;
int HLT_MET_;
TBranch *HLT_MET_branch;
bool HLT_MET_isLoaded;
int HLT_MET100_MHT100_;
TBranch *HLT_MET100_MHT100_branch;
bool HLT_MET100_MHT100_isLoaded;
int HLT_DiEl_;
TBranch *HLT_DiEl_branch;
bool HLT_DiEl_isLoaded;
int HLT_DiMu_;
TBranch *HLT_DiMu_branch;
bool HLT_DiMu_isLoaded;
int HLT_MuE_;
TBranch *HLT_MuE_branch;
bool HLT_MuE_isLoaded;
int HLT_Photon90_CaloIdL_PFHT500_;
TBranch *HLT_Photon90_CaloIdL_PFHT500_branch;
bool HLT_Photon90_CaloIdL_PFHT500_isLoaded;
int HLT_Photon22_R9Id90_HE10_IsoM_;
TBranch *HLT_Photon22_R9Id90_HE10_IsoM_branch;
bool HLT_Photon22_R9Id90_HE10_IsoM_isLoaded;
int HLT_Photon30_R9Id90_HE10_IsoM_;
TBranch *HLT_Photon30_R9Id90_HE10_IsoM_branch;
bool HLT_Photon30_R9Id90_HE10_IsoM_isLoaded;
int HLT_Photon36_R9Id90_HE10_IsoM_;
TBranch *HLT_Photon36_R9Id90_HE10_IsoM_branch;
bool HLT_Photon36_R9Id90_HE10_IsoM_isLoaded;
int HLT_Photon50_R9Id90_HE10_IsoM_;
TBranch *HLT_Photon50_R9Id90_HE10_IsoM_branch;
bool HLT_Photon50_R9Id90_HE10_IsoM_isLoaded;
int HLT_Photon75_R9Id90_HE10_IsoM_;
TBranch *HLT_Photon75_R9Id90_HE10_IsoM_branch;
bool HLT_Photon75_R9Id90_HE10_IsoM_isLoaded;
int HLT_Photon90_R9Id90_HE10_IsoM_;
TBranch *HLT_Photon90_R9Id90_HE10_IsoM_branch;
bool HLT_Photon90_R9Id90_HE10_IsoM_isLoaded;
int HLT_Photon120_R9Id90_HE10_IsoM_;
TBranch *HLT_Photon120_R9Id90_HE10_IsoM_branch;
bool HLT_Photon120_R9Id90_HE10_IsoM_isLoaded;
int HLT_Photon165_R9Id90_HE10_IsoM_;
TBranch *HLT_Photon165_R9Id90_HE10_IsoM_branch;
bool HLT_Photon165_R9Id90_HE10_IsoM_isLoaded;
int HLT_Photon175_;
TBranch *HLT_Photon175_branch;
bool HLT_Photon175_isLoaded;
int HLT_Photon165_HE10_;
TBranch *HLT_Photon165_HE10_branch;
bool HLT_Photon165_HE10_isLoaded;
int nPhotons_;
TBranch *nPhotons_branch;
bool nPhotons_isLoaded;
int ph_ngoodjets_;
TBranch *ph_ngoodjets_branch;
bool ph_ngoodjets_isLoaded;
int ph_ngoodbtags_;
TBranch *ph_ngoodbtags_branch;
bool ph_ngoodbtags_isLoaded;
float filt_met_;
TBranch *filt_met_branch;
bool filt_met_isLoaded;
float hardgenpt_;
TBranch *hardgenpt_branch;
bool hardgenpt_isLoaded;
float filt_badChargedCandidateFilter_;
TBranch *filt_badChargedCandidateFilter_branch;
bool filt_badChargedCandidateFilter_isLoaded;
float calomet_;
TBranch *calomet_branch;
bool calomet_isLoaded;
float calomet_phi_;
TBranch *calomet_phi_branch;
bool calomet_phi_isLoaded;
int lep1_pdgid_;
TBranch *lep1_pdgid_branch;
bool lep1_pdgid_isLoaded;
int lep1_production_type_;
TBranch *lep1_production_type_branch;
bool lep1_production_type_isLoaded;
float lep1_MiniIso_;
TBranch *lep1_MiniIso_branch;
bool lep1_MiniIso_isLoaded;
float lep1_relIso_;
TBranch *lep1_relIso_branch;
bool lep1_relIso_isLoaded;
bool lep1_passLooseID_;
TBranch *lep1_passLooseID_branch;
bool lep1_passLooseID_isLoaded;
bool lep1_passMediumID_;
TBranch *lep1_passMediumID_branch;
bool lep1_passMediumID_isLoaded;
bool lep1_passTightID_;
TBranch *lep1_passTightID_branch;
bool lep1_passTightID_isLoaded;
bool lep1_passVeto_;
TBranch *lep1_passVeto_branch;
bool lep1_passVeto_isLoaded;
ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > *lep1_p4_;
TBranch *lep1_p4_branch;
bool lep1_p4_isLoaded;
ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > *lep1_mcp4_;
TBranch *lep1_mcp4_branch;
bool lep1_mcp4_isLoaded;
int lep1_mc_motherid_;
TBranch *lep1_mc_motherid_branch;
bool lep1_mc_motherid_isLoaded;
int lep2_pdgid_;
TBranch *lep2_pdgid_branch;
bool lep2_pdgid_isLoaded;
int lep2_production_type_;
TBranch *lep2_production_type_branch;
bool lep2_production_type_isLoaded;
float lep2_MiniIso_;
TBranch *lep2_MiniIso_branch;
bool lep2_MiniIso_isLoaded;
float lep2_relIso_;
TBranch *lep2_relIso_branch;
bool lep2_relIso_isLoaded;
bool lep2_passLooseID_;
TBranch *lep2_passLooseID_branch;
bool lep2_passLooseID_isLoaded;
bool lep2_passMediumID_;
TBranch *lep2_passMediumID_branch;
bool lep2_passMediumID_isLoaded;
bool lep2_passTightID_;
TBranch *lep2_passTightID_branch;
bool lep2_passTightID_isLoaded;
bool lep2_passVeto_;
TBranch *lep2_passVeto_branch;
bool lep2_passVeto_isLoaded;
ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > *lep2_p4_;
TBranch *lep2_p4_branch;
bool lep2_p4_isLoaded;
ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > *lep2_mcp4_;
TBranch *lep2_mcp4_branch;
bool lep2_mcp4_isLoaded;
int lep2_mc_motherid_;
TBranch *lep2_mc_motherid_branch;
bool lep2_mc_motherid_isLoaded;
vector<float> *ph_sigmaIEtaEta_fill5x5_;
TBranch *ph_sigmaIEtaEta_fill5x5_branch;
bool ph_sigmaIEtaEta_fill5x5_isLoaded;
vector<float> *ph_hOverE_;
TBranch *ph_hOverE_branch;
bool ph_hOverE_isLoaded;
vector<float> *ph_r9_;
TBranch *ph_r9_branch;
bool ph_r9_isLoaded;
vector<float> *ph_chiso_;
TBranch *ph_chiso_branch;
bool ph_chiso_isLoaded;
vector<float> *ph_nhiso_;
TBranch *ph_nhiso_branch;
bool ph_nhiso_isLoaded;
vector<float> *ph_phiso_;
TBranch *ph_phiso_branch;
bool ph_phiso_isLoaded;
vector<bool> *ph_idCutBased_;
TBranch *ph_idCutBased_branch;
bool ph_idCutBased_isLoaded;
vector<int> *ph_overlapJetId_;
TBranch *ph_overlapJetId_branch;
bool ph_overlapJetId_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *ph_p4_;
TBranch *ph_p4_branch;
bool ph_p4_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *ph_mcp4_;
TBranch *ph_mcp4_branch;
bool ph_mcp4_isLoaded;
vector<float> *ph_pt_;
TBranch *ph_pt_branch;
bool ph_pt_isLoaded;
vector<float> *ph_eta_;
TBranch *ph_eta_branch;
bool ph_eta_isLoaded;
vector<float> *ph_phi_;
TBranch *ph_phi_branch;
bool ph_phi_isLoaded;
vector<float> *ph_mass_;
TBranch *ph_mass_branch;
bool ph_mass_isLoaded;
vector<int> *ph_mcMatchId_;
TBranch *ph_mcMatchId_branch;
bool ph_mcMatchId_isLoaded;
vector<float> *ph_genIso04_;
TBranch *ph_genIso04_branch;
bool ph_genIso04_isLoaded;
vector<float> *ph_drMinParton_;
TBranch *ph_drMinParton_branch;
bool ph_drMinParton_isLoaded;
int ngoodjets_;
TBranch *ngoodjets_branch;
bool ngoodjets_isLoaded;
int ngoodbtags_;
TBranch *ngoodbtags_branch;
bool ngoodbtags_isLoaded;
float ak4_HT_;
TBranch *ak4_HT_branch;
bool ak4_HT_isLoaded;
float ak4_htratiom_;
TBranch *ak4_htratiom_branch;
bool ak4_htratiom_isLoaded;
vector<float> *dphi_ak4pfjet_met_;
TBranch *dphi_ak4pfjet_met_branch;
bool dphi_ak4pfjet_met_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *ak4pfjets_p4_;
TBranch *ak4pfjets_p4_branch;
bool ak4pfjets_p4_isLoaded;
vector<bool> *ak4pfjets_passMEDbtag_;
TBranch *ak4pfjets_passMEDbtag_branch;
bool ak4pfjets_passMEDbtag_isLoaded;
vector<float> *ak4pfjets_CSV_;
TBranch *ak4pfjets_CSV_branch;
bool ak4pfjets_CSV_isLoaded;
vector<float> *ak4pfjets_mva_;
TBranch *ak4pfjets_mva_branch;
bool ak4pfjets_mva_isLoaded;
vector<int> *ak4pfjets_parton_flavor_;
TBranch *ak4pfjets_parton_flavor_branch;
bool ak4pfjets_parton_flavor_isLoaded;
vector<int> *ak4pfjets_hadron_flavor_;
TBranch *ak4pfjets_hadron_flavor_branch;
bool ak4pfjets_hadron_flavor_isLoaded;
vector<bool> *ak4pfjets_loose_puid_;
TBranch *ak4pfjets_loose_puid_branch;
bool ak4pfjets_loose_puid_isLoaded;
vector<bool> *ak4pfjets_loose_pfid_;
TBranch *ak4pfjets_loose_pfid_branch;
bool ak4pfjets_loose_pfid_isLoaded;
ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > *ak4pfjets_leadMEDbjet_p4_;
TBranch *ak4pfjets_leadMEDbjet_p4_branch;
bool ak4pfjets_leadMEDbjet_p4_isLoaded;
ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > *ak4pfjets_leadbtag_p4_;
TBranch *ak4pfjets_leadbtag_p4_branch;
bool ak4pfjets_leadbtag_p4_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *ak4genjets_p4_;
TBranch *ak4genjets_p4_branch;
bool ak4genjets_p4_isLoaded;
vector<bool> *genleps_isfromt_;
TBranch *genleps_isfromt_branch;
bool genleps_isfromt_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genleps_p4_;
TBranch *genleps_p4_branch;
bool genleps_p4_isLoaded;
vector<int> *genleps_id_;
TBranch *genleps_id_branch;
bool genleps_id_isLoaded;
vector<int> *genleps__genpsidx_;
TBranch *genleps__genpsidx_branch;
bool genleps__genpsidx_isLoaded;
vector<int> *genleps_status_;
TBranch *genleps_status_branch;
bool genleps_status_isLoaded;
vector<bool> *genleps_fromHardProcessDecayed_;
TBranch *genleps_fromHardProcessDecayed_branch;
bool genleps_fromHardProcessDecayed_isLoaded;
vector<bool> *genleps_fromHardProcessFinalState_;
TBranch *genleps_fromHardProcessFinalState_branch;
bool genleps_fromHardProcessFinalState_isLoaded;
vector<bool> *genleps_isHardProcess_;
TBranch *genleps_isHardProcess_branch;
bool genleps_isHardProcess_isLoaded;
vector<bool> *genleps_isLastCopy_;
TBranch *genleps_isLastCopy_branch;
bool genleps_isLastCopy_isLoaded;
vector<int> *genleps_gentaudecay_;
TBranch *genleps_gentaudecay_branch;
bool genleps_gentaudecay_isLoaded;
int gen_nfromtleps__;
TBranch *gen_nfromtleps__branch;
bool gen_nfromtleps__isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genleps_motherp4_;
TBranch *genleps_motherp4_branch;
bool genleps_motherp4_isLoaded;
vector<int> *genleps_motherid_;
TBranch *genleps_motherid_branch;
bool genleps_motherid_isLoaded;
vector<int> *genleps_motheridx_;
TBranch *genleps_motheridx_branch;
bool genleps_motheridx_isLoaded;
vector<int> *genleps_motherstatus_;
TBranch *genleps_motherstatus_branch;
bool genleps_motherstatus_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genleps_gmotherp4_;
TBranch *genleps_gmotherp4_branch;
bool genleps_gmotherp4_isLoaded;
vector<int> *genleps_gmotherid_;
TBranch *genleps_gmotherid_branch;
bool genleps_gmotherid_isLoaded;
vector<int> *genleps_gmotheridx_;
TBranch *genleps_gmotheridx_branch;
bool genleps_gmotheridx_isLoaded;
vector<int> *genleps_gmotherstatus_;
TBranch *genleps_gmotherstatus_branch;
bool genleps_gmotherstatus_isLoaded;
vector<bool> *gennus_isfromt_;
TBranch *gennus_isfromt_branch;
bool gennus_isfromt_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *gennus_p4_;
TBranch *gennus_p4_branch;
bool gennus_p4_isLoaded;
vector<int> *gennus_id_;
TBranch *gennus_id_branch;
bool gennus_id_isLoaded;
vector<int> *gennus__genpsidx_;
TBranch *gennus__genpsidx_branch;
bool gennus__genpsidx_isLoaded;
vector<int> *gennus_status_;
TBranch *gennus_status_branch;
bool gennus_status_isLoaded;
vector<bool> *gennus_fromHardProcessDecayed_;
TBranch *gennus_fromHardProcessDecayed_branch;
bool gennus_fromHardProcessDecayed_isLoaded;
vector<bool> *gennus_fromHardProcessFinalState_;
TBranch *gennus_fromHardProcessFinalState_branch;
bool gennus_fromHardProcessFinalState_isLoaded;
vector<bool> *gennus_isHardProcess_;
TBranch *gennus_isHardProcess_branch;
bool gennus_isHardProcess_isLoaded;
vector<bool> *gennus_isLastCopy_;
TBranch *gennus_isLastCopy_branch;
bool gennus_isLastCopy_isLoaded;
vector<int> *gennus_gentaudecay_;
TBranch *gennus_gentaudecay_branch;
bool gennus_gentaudecay_isLoaded;
int gen_nfromtnus__;
TBranch *gen_nfromtnus__branch;
bool gen_nfromtnus__isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *gennus_motherp4_;
TBranch *gennus_motherp4_branch;
bool gennus_motherp4_isLoaded;
vector<int> *gennus_motherid_;
TBranch *gennus_motherid_branch;
bool gennus_motherid_isLoaded;
vector<int> *gennus_motheridx_;
TBranch *gennus_motheridx_branch;
bool gennus_motheridx_isLoaded;
vector<int> *gennus_motherstatus_;
TBranch *gennus_motherstatus_branch;
bool gennus_motherstatus_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *gennus_gmotherp4_;
TBranch *gennus_gmotherp4_branch;
bool gennus_gmotherp4_isLoaded;
vector<int> *gennus_gmotherid_;
TBranch *gennus_gmotherid_branch;
bool gennus_gmotherid_isLoaded;
vector<int> *gennus_gmotheridx_;
TBranch *gennus_gmotheridx_branch;
bool gennus_gmotheridx_isLoaded;
vector<int> *gennus_gmotherstatus_;
TBranch *gennus_gmotherstatus_branch;
bool gennus_gmotherstatus_isLoaded;
vector<bool> *genqs_isfromt_;
TBranch *genqs_isfromt_branch;
bool genqs_isfromt_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genqs_p4_;
TBranch *genqs_p4_branch;
bool genqs_p4_isLoaded;
vector<int> *genqs_id_;
TBranch *genqs_id_branch;
bool genqs_id_isLoaded;
vector<int> *genqs__genpsidx_;
TBranch *genqs__genpsidx_branch;
bool genqs__genpsidx_isLoaded;
vector<int> *genqs_status_;
TBranch *genqs_status_branch;
bool genqs_status_isLoaded;
vector<bool> *genqs_fromHardProcessDecayed_;
TBranch *genqs_fromHardProcessDecayed_branch;
bool genqs_fromHardProcessDecayed_isLoaded;
vector<bool> *genqs_fromHardProcessFinalState_;
TBranch *genqs_fromHardProcessFinalState_branch;
bool genqs_fromHardProcessFinalState_isLoaded;
vector<bool> *genqs_isHardProcess_;
TBranch *genqs_isHardProcess_branch;
bool genqs_isHardProcess_isLoaded;
vector<bool> *genqs_isLastCopy_;
TBranch *genqs_isLastCopy_branch;
bool genqs_isLastCopy_isLoaded;
vector<int> *genqs_gentaudecay_;
TBranch *genqs_gentaudecay_branch;
bool genqs_gentaudecay_isLoaded;
int gen_nfromtqs__;
TBranch *gen_nfromtqs__branch;
bool gen_nfromtqs__isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genqs_motherp4_;
TBranch *genqs_motherp4_branch;
bool genqs_motherp4_isLoaded;
vector<int> *genqs_motherid_;
TBranch *genqs_motherid_branch;
bool genqs_motherid_isLoaded;
vector<int> *genqs_motheridx_;
TBranch *genqs_motheridx_branch;
bool genqs_motheridx_isLoaded;
vector<int> *genqs_motherstatus_;
TBranch *genqs_motherstatus_branch;
bool genqs_motherstatus_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genqs_gmotherp4_;
TBranch *genqs_gmotherp4_branch;
bool genqs_gmotherp4_isLoaded;
vector<int> *genqs_gmotherid_;
TBranch *genqs_gmotherid_branch;
bool genqs_gmotherid_isLoaded;
vector<int> *genqs_gmotheridx_;
TBranch *genqs_gmotheridx_branch;
bool genqs_gmotheridx_isLoaded;
vector<int> *genqs_gmotherstatus_;
TBranch *genqs_gmotherstatus_branch;
bool genqs_gmotherstatus_isLoaded;
vector<bool> *genbosons_isfromt_;
TBranch *genbosons_isfromt_branch;
bool genbosons_isfromt_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genbosons_p4_;
TBranch *genbosons_p4_branch;
bool genbosons_p4_isLoaded;
vector<int> *genbosons_id_;
TBranch *genbosons_id_branch;
bool genbosons_id_isLoaded;
vector<int> *genbosons__genpsidx_;
TBranch *genbosons__genpsidx_branch;
bool genbosons__genpsidx_isLoaded;
vector<int> *genbosons_status_;
TBranch *genbosons_status_branch;
bool genbosons_status_isLoaded;
vector<bool> *genbosons_fromHardProcessDecayed_;
TBranch *genbosons_fromHardProcessDecayed_branch;
bool genbosons_fromHardProcessDecayed_isLoaded;
vector<bool> *genbosons_fromHardProcessFinalState_;
TBranch *genbosons_fromHardProcessFinalState_branch;
bool genbosons_fromHardProcessFinalState_isLoaded;
vector<bool> *genbosons_isHardProcess_;
TBranch *genbosons_isHardProcess_branch;
bool genbosons_isHardProcess_isLoaded;
vector<bool> *genbosons_isLastCopy_;
TBranch *genbosons_isLastCopy_branch;
bool genbosons_isLastCopy_isLoaded;
vector<int> *genbosons_gentaudecay_;
TBranch *genbosons_gentaudecay_branch;
bool genbosons_gentaudecay_isLoaded;
int gen_nfromtbosons__;
TBranch *gen_nfromtbosons__branch;
bool gen_nfromtbosons__isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genbosons_motherp4_;
TBranch *genbosons_motherp4_branch;
bool genbosons_motherp4_isLoaded;
vector<int> *genbosons_motherid_;
TBranch *genbosons_motherid_branch;
bool genbosons_motherid_isLoaded;
vector<int> *genbosons_motheridx_;
TBranch *genbosons_motheridx_branch;
bool genbosons_motheridx_isLoaded;
vector<int> *genbosons_motherstatus_;
TBranch *genbosons_motherstatus_branch;
bool genbosons_motherstatus_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genbosons_gmotherp4_;
TBranch *genbosons_gmotherp4_branch;
bool genbosons_gmotherp4_isLoaded;
vector<int> *genbosons_gmotherid_;
TBranch *genbosons_gmotherid_branch;
bool genbosons_gmotherid_isLoaded;
vector<int> *genbosons_gmotheridx_;
TBranch *genbosons_gmotheridx_branch;
bool genbosons_gmotheridx_isLoaded;
vector<int> *genbosons_gmotherstatus_;
TBranch *genbosons_gmotherstatus_branch;
bool genbosons_gmotherstatus_isLoaded;
vector<bool> *gensusy_isfromt_;
TBranch *gensusy_isfromt_branch;
bool gensusy_isfromt_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *gensusy_p4_;
TBranch *gensusy_p4_branch;
bool gensusy_p4_isLoaded;
vector<int> *gensusy_id_;
TBranch *gensusy_id_branch;
bool gensusy_id_isLoaded;
vector<int> *gensusy__genpsidx_;
TBranch *gensusy__genpsidx_branch;
bool gensusy__genpsidx_isLoaded;
vector<int> *gensusy_status_;
TBranch *gensusy_status_branch;
bool gensusy_status_isLoaded;
vector<bool> *gensusy_fromHardProcessDecayed_;
TBranch *gensusy_fromHardProcessDecayed_branch;
bool gensusy_fromHardProcessDecayed_isLoaded;
vector<bool> *gensusy_fromHardProcessFinalState_;
TBranch *gensusy_fromHardProcessFinalState_branch;
bool gensusy_fromHardProcessFinalState_isLoaded;
vector<bool> *gensusy_isHardProcess_;
TBranch *gensusy_isHardProcess_branch;
bool gensusy_isHardProcess_isLoaded;
vector<bool> *gensusy_isLastCopy_;
TBranch *gensusy_isLastCopy_branch;
bool gensusy_isLastCopy_isLoaded;
vector<int> *gensusy_gentaudecay_;
TBranch *gensusy_gentaudecay_branch;
bool gensusy_gentaudecay_isLoaded;
int gen_nfromtsusy__;
TBranch *gen_nfromtsusy__branch;
bool gen_nfromtsusy__isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *gensusy_motherp4_;
TBranch *gensusy_motherp4_branch;
bool gensusy_motherp4_isLoaded;
vector<int> *gensusy_motherid_;
TBranch *gensusy_motherid_branch;
bool gensusy_motherid_isLoaded;
vector<int> *gensusy_motheridx_;
TBranch *gensusy_motheridx_branch;
bool gensusy_motheridx_isLoaded;
vector<int> *gensusy_motherstatus_;
TBranch *gensusy_motherstatus_branch;
bool gensusy_motherstatus_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *gensusy_gmotherp4_;
TBranch *gensusy_gmotherp4_branch;
bool gensusy_gmotherp4_isLoaded;
vector<int> *gensusy_gmotherid_;
TBranch *gensusy_gmotherid_branch;
bool gensusy_gmotherid_isLoaded;
vector<int> *gensusy_gmotheridx_;
TBranch *gensusy_gmotheridx_branch;
bool gensusy_gmotheridx_isLoaded;
vector<int> *gensusy_gmotherstatus_;
TBranch *gensusy_gmotherstatus_branch;
bool gensusy_gmotherstatus_isLoaded;
vector<TString> *tau_IDnames_;
TBranch *tau_IDnames_branch;
bool tau_IDnames_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *tau_leadtrack_p4_;
TBranch *tau_leadtrack_p4_branch;
bool tau_leadtrack_p4_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *tau_leadneutral_p4_;
TBranch *tau_leadneutral_p4_branch;
bool tau_leadneutral_p4_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *tau_p4_;
TBranch *tau_p4_branch;
bool tau_p4_isLoaded;
vector<vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > > *tau_isocand_p4_;
TBranch *tau_isocand_p4_branch;
bool tau_isocand_p4_isLoaded;
vector<vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > > *tau_sigcand_p4_;
TBranch *tau_sigcand_p4_branch;
bool tau_sigcand_p4_isLoaded;
vector<vector<float> > *tau_ID_;
TBranch *tau_ID_branch;
bool tau_ID_isLoaded;
vector<float> *tau_passID_;
TBranch *tau_passID_branch;
bool tau_passID_isLoaded;
int ngoodtaus_;
TBranch *ngoodtaus_branch;
bool ngoodtaus_isLoaded;
vector<float> *tau_againstMuonTight_;
TBranch *tau_againstMuonTight_branch;
bool tau_againstMuonTight_isLoaded;
vector<float> *tau_againstElectronLoose_;
TBranch *tau_againstElectronLoose_branch;
bool tau_againstElectronLoose_isLoaded;
vector<bool> *tau_isVetoTau_;
TBranch *tau_isVetoTau_branch;
bool tau_isVetoTau_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *isoTracks_p4_;
TBranch *isoTracks_p4_branch;
bool isoTracks_p4_isLoaded;
vector<int> *isoTracks_charge_;
TBranch *isoTracks_charge_branch;
bool isoTracks_charge_isLoaded;
vector<float> *isoTracks_absIso_;
TBranch *isoTracks_absIso_branch;
bool isoTracks_absIso_isLoaded;
vector<float> *isoTracks_dz_;
TBranch *isoTracks_dz_branch;
bool isoTracks_dz_isLoaded;
vector<int> *isoTracks_pdgId_;
TBranch *isoTracks_pdgId_branch;
bool isoTracks_pdgId_isLoaded;
vector<bool> *isoTracks_isVetoTrack_;
TBranch *isoTracks_isVetoTrack_branch;
bool isoTracks_isVetoTrack_isLoaded;
vector<bool> *isoTracks_isVetoTrack_v2_;
TBranch *isoTracks_isVetoTrack_v2_branch;
bool isoTracks_isVetoTrack_v2_isLoaded;
vector<bool> *isoTracks_isVetoTrack_v3_;
TBranch *isoTracks_isVetoTrack_v3_branch;
bool isoTracks_isVetoTrack_v3_isLoaded;
public:
void Init(TTree *tree);
void GetEntry(unsigned int idx);
void LoadAllBranches();
const unsigned int &run();
const unsigned int &ls();
const unsigned int &evt();
const int &nvtxs();
const int &pu_nvtxs();
const float &pfmet();
const float &pfmet_phi();
const float &pfmet_rl();
const float &pfmet_phi_rl();
const float &scale1fb();
const float &xsec();
const float &xsec_uncert();
const float &kfactor();
const float &pu_ntrue();
const int &ngoodleps();
const int &nvetoleps();
const bool &is_data();
const string &dataset();
const string &filename();
const string &cms3tag();
const unsigned int &nEvents();
const unsigned int &nEvents_goodvtx();
const unsigned int &nEvents_MET30();
const unsigned int &nEvents_1goodlep();
const unsigned int &nEvents_2goodjets();
const int &is0lep();
const int &is1lep();
const int &is2lep();
const int &isZtoNuNu();
const int &is1lepFromW();
const int &is1lepFromTop();
const float &MT2W();
const float &MT2W_rl();
const float &mindphi_met_j1_j2();
const float &mindphi_met_j1_j2_rl();
const float &mt_met_lep();
const float &mt_met_lep_rl();
const float &hadronic_top_chi2();
const float &ak4pfjets_rho();
const float &pdf_up_weight();
const float &pdf_down_weight();
const vector<string> &genweightsID();
const vector<float> &genweights();
const float &weight_btagsf();
const float &weight_btagsf_heavy_UP();
const float &weight_btagsf_light_UP();
const float &weight_btagsf_heavy_DN();
const float &weight_btagsf_light_DN();
const float &weight_btagsf_fastsim_UP();
const float &weight_btagsf_fastsim_DN();
const float &weight_lepSF();
const float &weight_lepSF_up();
const float &weight_lepSF_down();
const float &weight_vetoLepSF();
const float &weight_vetoLepSF_up();
const float &weight_vetoLepSF_down();
const float &weight_lepSF_fastSim();
const float &weight_lepSF_fastSim_up();
const float &weight_lepSF_fastSim_down();
const float &weight_ISR();
const float &weight_ISRup();
const float &weight_ISRdown();
const float &weight_PU();
const float &weight_PUup();
const float &weight_PUdown();
const vector<string> &sparms_names();
const vector<float> &sparms_values();
const int &sparms_subProcessId();
const float &mass_lsp();
const float &mass_chargino();
const float &mass_stop();
const float &mass_gluino();
const float &genmet();
const float &genmet_phi();
const float &genht();
const bool &PassTrackVeto();
const bool &PassTauVeto();
const float &topness();
const float &topnessMod();
const float &topnessMod_rl();
const float &Mlb_closestb();
const int &HLT_SingleEl();
const int &HLT_SingleMu();
const int &HLT_MET();
const int &HLT_MET100_MHT100();
const int &HLT_DiEl();
const int &HLT_DiMu();
const int &HLT_MuE();
const int &HLT_Photon90_CaloIdL_PFHT500();
const int &HLT_Photon22_R9Id90_HE10_IsoM();
const int &HLT_Photon30_R9Id90_HE10_IsoM();
const int &HLT_Photon36_R9Id90_HE10_IsoM();
const int &HLT_Photon50_R9Id90_HE10_IsoM();
const int &HLT_Photon75_R9Id90_HE10_IsoM();
const int &HLT_Photon90_R9Id90_HE10_IsoM();
const int &HLT_Photon120_R9Id90_HE10_IsoM();
const int &HLT_Photon165_R9Id90_HE10_IsoM();
const int &HLT_Photon175();
const int &HLT_Photon165_HE10();
const int &nPhotons();
const int &ph_ngoodjets();
const int &ph_ngoodbtags();
const float &filt_met();
const float &hardgenpt();
const float &filt_badChargedCandidateFilter();
const float &calomet();
const float &calomet_phi();
const int &lep1_pdgid();
const int &lep1_production_type();
const float &lep1_MiniIso();
const float &lep1_relIso();
const bool &lep1_passLooseID();
const bool &lep1_passMediumID();
const bool &lep1_passTightID();
const bool &lep1_passVeto();
const ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > &lep1_p4();
const ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > &lep1_mcp4();
const int &lep1_mc_motherid();
const int &lep2_pdgid();
const int &lep2_production_type();
const float &lep2_MiniIso();
const float &lep2_relIso();
const bool &lep2_passLooseID();
const bool &lep2_passMediumID();
const bool &lep2_passTightID();
const bool &lep2_passVeto();
const ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > &lep2_p4();
const ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > &lep2_mcp4();
const int &lep2_mc_motherid();
const vector<float> &ph_sigmaIEtaEta_fill5x5();
const vector<float> &ph_hOverE();
const vector<float> &ph_r9();
const vector<float> &ph_chiso();
const vector<float> &ph_nhiso();
const vector<float> &ph_phiso();
const vector<bool> &ph_idCutBased();
const vector<int> &ph_overlapJetId();
const vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > &ph_p4();
const vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > &ph_mcp4();
const vector<float> &ph_pt();
const vector<float> &ph_eta();