-
Notifications
You must be signed in to change notification settings - Fork 0
/
WWW.h
1993 lines (1988 loc) · 65.2 KB
/
WWW.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++ -*-
#ifndef WWW_H
#define WWW_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;
// Generated with the command
// makeCMS3ClassFiles("chain files", "t", "WWW", "WWW_babies", "phys")
using namespace std;
class WWW {
private:
protected:
unsigned int index;
int run_;
TBranch *run_branch;
bool run_isLoaded;
int lumi_;
TBranch *lumi_branch;
bool lumi_isLoaded;
unsigned long long evt_;
TBranch *evt_branch;
bool evt_isLoaded;
int isData_;
TBranch *isData_branch;
bool isData_isLoaded;
bool evt_passgoodrunlist_;
TBranch *evt_passgoodrunlist_branch;
bool evt_passgoodrunlist_isLoaded;
float evt_scale1fb_;
TBranch *evt_scale1fb_branch;
bool evt_scale1fb_isLoaded;
float evt_xsec_;
TBranch *evt_xsec_branch;
bool evt_xsec_isLoaded;
float evt_kfactor_;
TBranch *evt_kfactor_branch;
bool evt_kfactor_isLoaded;
float evt_filter_;
TBranch *evt_filter_branch;
bool evt_filter_isLoaded;
int evt_nEvts_;
TBranch *evt_nEvts_branch;
bool evt_nEvts_isLoaded;
vector<TString> *evt_dataset_;
TBranch *evt_dataset_branch;
bool evt_dataset_isLoaded;
float puWeight_;
TBranch *puWeight_branch;
bool puWeight_isLoaded;
int nVert_;
TBranch *nVert_branch;
bool nVert_isLoaded;
int nTrueInt_;
TBranch *nTrueInt_branch;
bool nTrueInt_isLoaded;
float rho_;
TBranch *rho_branch;
bool rho_isLoaded;
float rho25_;
TBranch *rho25_branch;
bool rho25_isLoaded;
float gen_ht_;
TBranch *gen_ht_branch;
bool gen_ht_isLoaded;
int nBJetTight_;
TBranch *nBJetTight_branch;
bool nBJetTight_isLoaded;
int nBJetMedium_;
TBranch *nBJetMedium_branch;
bool nBJetMedium_isLoaded;
int nBJetLoose_;
TBranch *nBJetLoose_branch;
bool nBJetLoose_isLoaded;
int nBJetTight_up_;
TBranch *nBJetTight_up_branch;
bool nBJetTight_up_isLoaded;
int nBJetMedium_up_;
TBranch *nBJetMedium_up_branch;
bool nBJetMedium_up_isLoaded;
int nBJetLoose_up_;
TBranch *nBJetLoose_up_branch;
bool nBJetLoose_up_isLoaded;
int nBJetTight_dn_;
TBranch *nBJetTight_dn_branch;
bool nBJetTight_dn_isLoaded;
int nBJetMedium_dn_;
TBranch *nBJetMedium_dn_branch;
bool nBJetMedium_dn_isLoaded;
int nBJetLoose_dn_;
TBranch *nBJetLoose_dn_branch;
bool nBJetLoose_dn_isLoaded;
int nJet200MuFrac50DphiMet_;
TBranch *nJet200MuFrac50DphiMet_branch;
bool nJet200MuFrac50DphiMet_isLoaded;
int nMuons10_;
TBranch *nMuons10_branch;
bool nMuons10_isLoaded;
int nBadMuons20_;
TBranch *nBadMuons20_branch;
bool nBadMuons20_isLoaded;
int nElectrons10_;
TBranch *nElectrons10_branch;
bool nElectrons10_isLoaded;
int nGammas20_;
TBranch *nGammas20_branch;
bool nGammas20_isLoaded;
int nTaus20_;
TBranch *nTaus20_branch;
bool nTaus20_isLoaded;
float met_pt_;
TBranch *met_pt_branch;
bool met_pt_isLoaded;
float met_phi_;
TBranch *met_phi_branch;
bool met_phi_isLoaded;
float met_calo_pt_;
TBranch *met_calo_pt_branch;
bool met_calo_pt_isLoaded;
float met_calo_phi_;
TBranch *met_calo_phi_branch;
bool met_calo_phi_isLoaded;
float met_miniaod_pt_;
TBranch *met_miniaod_pt_branch;
bool met_miniaod_pt_isLoaded;
float met_miniaod_phi_;
TBranch *met_miniaod_phi_branch;
bool met_miniaod_phi_isLoaded;
float met_muegclean_pt_;
TBranch *met_muegclean_pt_branch;
bool met_muegclean_pt_isLoaded;
float met_muegclean_phi_;
TBranch *met_muegclean_phi_branch;
bool met_muegclean_phi_isLoaded;
float met_rawPt_;
TBranch *met_rawPt_branch;
bool met_rawPt_isLoaded;
float met_rawPhi_;
TBranch *met_rawPhi_branch;
bool met_rawPhi_isLoaded;
float met_genPt_;
TBranch *met_genPt_branch;
bool met_genPt_isLoaded;
float met_genPhi_;
TBranch *met_genPhi_branch;
bool met_genPhi_isLoaded;
float sumet_raw_;
TBranch *sumet_raw_branch;
bool sumet_raw_isLoaded;
int Flag_ecalLaserCorrFilter_;
TBranch *Flag_ecalLaserCorrFilter_branch;
bool Flag_ecalLaserCorrFilter_isLoaded;
int Flag_hcalLaserEventFilter_;
TBranch *Flag_hcalLaserEventFilter_branch;
bool Flag_hcalLaserEventFilter_isLoaded;
int Flag_trackingFailureFilter_;
TBranch *Flag_trackingFailureFilter_branch;
bool Flag_trackingFailureFilter_isLoaded;
int Flag_CSCTightHaloFilter_;
TBranch *Flag_CSCTightHaloFilter_branch;
bool Flag_CSCTightHaloFilter_isLoaded;
int Flag_HBHENoiseFilter_;
TBranch *Flag_HBHENoiseFilter_branch;
bool Flag_HBHENoiseFilter_isLoaded;
int Flag_HBHEIsoNoiseFilter_;
TBranch *Flag_HBHEIsoNoiseFilter_branch;
bool Flag_HBHEIsoNoiseFilter_isLoaded;
int Flag_CSCTightHalo2015Filter_;
TBranch *Flag_CSCTightHalo2015Filter_branch;
bool Flag_CSCTightHalo2015Filter_isLoaded;
int Flag_EcalDeadCellTriggerPrimitiveFilter_;
TBranch *Flag_EcalDeadCellTriggerPrimitiveFilter_branch;
bool Flag_EcalDeadCellTriggerPrimitiveFilter_isLoaded;
int Flag_goodVertices_;
TBranch *Flag_goodVertices_branch;
bool Flag_goodVertices_isLoaded;
int Flag_eeBadScFilter_;
TBranch *Flag_eeBadScFilter_branch;
bool Flag_eeBadScFilter_isLoaded;
int Flag_globalTightHalo2016_;
TBranch *Flag_globalTightHalo2016_branch;
bool Flag_globalTightHalo2016_isLoaded;
int Flag_badMuonFilter_;
TBranch *Flag_badMuonFilter_branch;
bool Flag_badMuonFilter_isLoaded;
int Flag_badChargedCandidateFilter_;
TBranch *Flag_badChargedCandidateFilter_branch;
bool Flag_badChargedCandidateFilter_isLoaded;
int Flag_badMuonFilterv2_;
TBranch *Flag_badMuonFilterv2_branch;
bool Flag_badMuonFilterv2_isLoaded;
int Flag_badChargedCandidateFilterv2_;
TBranch *Flag_badChargedCandidateFilterv2_branch;
bool Flag_badChargedCandidateFilterv2_isLoaded;
int Flag_badMuons_;
TBranch *Flag_badMuons_branch;
bool Flag_badMuons_isLoaded;
int Flag_duplicateMuons_;
TBranch *Flag_duplicateMuons_branch;
bool Flag_duplicateMuons_isLoaded;
int Flag_noBadMuons_;
TBranch *Flag_noBadMuons_branch;
bool Flag_noBadMuons_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_singleMu_noiso_;
TBranch *HLT_singleMu_noiso_branch;
bool HLT_singleMu_noiso_isLoaded;
int HLT_DoubleEl_noiso_;
TBranch *HLT_DoubleEl_noiso_branch;
bool HLT_DoubleEl_noiso_isLoaded;
int HLT_DoubleEl_;
TBranch *HLT_DoubleEl_branch;
bool HLT_DoubleEl_isLoaded;
int HLT_DoubleEl_DZ_;
TBranch *HLT_DoubleEl_DZ_branch;
bool HLT_DoubleEl_DZ_isLoaded;
int HLT_DoubleEl_DZ_2_;
TBranch *HLT_DoubleEl_DZ_2_branch;
bool HLT_DoubleEl_DZ_2_isLoaded;
int HLT_MuEG_;
TBranch *HLT_MuEG_branch;
bool HLT_MuEG_isLoaded;
int HLT_MuEG_2_;
TBranch *HLT_MuEG_2_branch;
bool HLT_MuEG_2_isLoaded;
int HLT_MuEG_noiso_;
TBranch *HLT_MuEG_noiso_branch;
bool HLT_MuEG_noiso_isLoaded;
int HLT_MuEG_noiso_2_;
TBranch *HLT_MuEG_noiso_2_branch;
bool HLT_MuEG_noiso_2_isLoaded;
int HLT_Mu8_EG17_;
TBranch *HLT_Mu8_EG17_branch;
bool HLT_Mu8_EG17_isLoaded;
int HLT_Mu8_EG23_;
TBranch *HLT_Mu8_EG23_branch;
bool HLT_Mu8_EG23_isLoaded;
int HLT_Mu8_EG23_DZ_;
TBranch *HLT_Mu8_EG23_DZ_branch;
bool HLT_Mu8_EG23_DZ_isLoaded;
int HLT_Mu12_EG23_DZ_;
TBranch *HLT_Mu12_EG23_DZ_branch;
bool HLT_Mu12_EG23_DZ_isLoaded;
int HLT_Mu17_EG12_;
TBranch *HLT_Mu17_EG12_branch;
bool HLT_Mu17_EG12_isLoaded;
int HLT_Mu23_EG8_;
TBranch *HLT_Mu23_EG8_branch;
bool HLT_Mu23_EG8_isLoaded;
int HLT_Mu23_EG8_DZ_;
TBranch *HLT_Mu23_EG8_DZ_branch;
bool HLT_Mu23_EG8_DZ_isLoaded;
int HLT_Mu23_EG12_;
TBranch *HLT_Mu23_EG12_branch;
bool HLT_Mu23_EG12_isLoaded;
int HLT_Mu23_EG12_DZ_;
TBranch *HLT_Mu23_EG12_DZ_branch;
bool HLT_Mu23_EG12_DZ_isLoaded;
int HLT_DoubleMu_noiso_;
TBranch *HLT_DoubleMu_noiso_branch;
bool HLT_DoubleMu_noiso_isLoaded;
int HLT_DoubleMu_noiso_27_8_;
TBranch *HLT_DoubleMu_noiso_27_8_branch;
bool HLT_DoubleMu_noiso_27_8_isLoaded;
int HLT_DoubleMu_noiso_30_11_;
TBranch *HLT_DoubleMu_noiso_30_11_branch;
bool HLT_DoubleMu_noiso_30_11_isLoaded;
int HLT_DoubleMu_noiso_40_11_;
TBranch *HLT_DoubleMu_noiso_40_11_branch;
bool HLT_DoubleMu_noiso_40_11_isLoaded;
int HLT_DoubleMu_;
TBranch *HLT_DoubleMu_branch;
bool HLT_DoubleMu_isLoaded;
int HLT_DoubleMu_tk_;
TBranch *HLT_DoubleMu_tk_branch;
bool HLT_DoubleMu_tk_isLoaded;
int HLT_DoubleMu_dbltk_;
TBranch *HLT_DoubleMu_dbltk_branch;
bool HLT_DoubleMu_dbltk_isLoaded;
int HLT_DoubleMu_nonDZ_;
TBranch *HLT_DoubleMu_nonDZ_branch;
bool HLT_DoubleMu_nonDZ_isLoaded;
int HLT_DoubleMu_tk_nonDZ_;
TBranch *HLT_DoubleMu_tk_nonDZ_branch;
bool HLT_DoubleMu_tk_nonDZ_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_Photon165_HE10_;
TBranch *HLT_Photon165_HE10_branch;
bool HLT_Photon165_HE10_isLoaded;
int HLT_CaloJet500_NoJetID_;
TBranch *HLT_CaloJet500_NoJetID_branch;
bool HLT_CaloJet500_NoJetID_isLoaded;
int HLT_ECALHT800_NoJetID_;
TBranch *HLT_ECALHT800_NoJetID_branch;
bool HLT_ECALHT800_NoJetID_isLoaded;
bool HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton_;
TBranch *HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton_branch;
bool HLT_Photon22_R9Id90_HE10_IsoM_matchedtophoton_isLoaded;
bool HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton_;
TBranch *HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton_branch;
bool HLT_Photon30_R9Id90_HE10_IsoM_matchedtophoton_isLoaded;
bool HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton_;
TBranch *HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton_branch;
bool HLT_Photon36_R9Id90_HE10_IsoM_matchedtophoton_isLoaded;
bool HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton_;
TBranch *HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton_branch;
bool HLT_Photon50_R9Id90_HE10_IsoM_matchedtophoton_isLoaded;
bool HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton_;
TBranch *HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton_branch;
bool HLT_Photon75_R9Id90_HE10_IsoM_matchedtophoton_isLoaded;
bool HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton_;
TBranch *HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton_branch;
bool HLT_Photon90_R9Id90_HE10_IsoM_matchedtophoton_isLoaded;
bool HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton_;
TBranch *HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton_branch;
bool HLT_Photon120_R9Id90_HE10_IsoM_matchedtophoton_isLoaded;
bool HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton_;
TBranch *HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton_branch;
bool HLT_Photon165_R9Id90_HE10_IsoM_matchedtophoton_isLoaded;
bool HLT_Photon165_HE10_matchedtophoton_;
TBranch *HLT_Photon165_HE10_matchedtophoton_branch;
bool HLT_Photon165_HE10_matchedtophoton_isLoaded;
float dilmass_;
TBranch *dilmass_branch;
bool dilmass_isLoaded;
float dilpt_;
TBranch *dilpt_branch;
bool dilpt_isLoaded;
float dRll_;
TBranch *dRll_branch;
bool dRll_isLoaded;
float matched_neutralemf_;
TBranch *matched_neutralemf_branch;
bool matched_neutralemf_isLoaded;
float matched_emf_;
TBranch *matched_emf_branch;
bool matched_emf_isLoaded;
bool elveto_;
TBranch *elveto_branch;
bool elveto_isLoaded;
int nlep_;
TBranch *nlep_branch;
bool nlep_isLoaded;
int nveto_leptons_;
TBranch *nveto_leptons_branch;
bool nveto_leptons_isLoaded;
int nVetoEl_relIso03EAless01_;
TBranch *nVetoEl_relIso03EAless01_branch;
bool nVetoEl_relIso03EAless01_isLoaded;
int nVetoEl_relIso03EAless02_;
TBranch *nVetoEl_relIso03EAless02_branch;
bool nVetoEl_relIso03EAless02_isLoaded;
int nVetoEl_relIso03EAless03_;
TBranch *nVetoEl_relIso03EAless03_branch;
bool nVetoEl_relIso03EAless03_isLoaded;
int nVetoEl_relIso03EAless04_;
TBranch *nVetoEl_relIso03EAless04_branch;
bool nVetoEl_relIso03EAless04_isLoaded;
int nVetoMu_relIso03EAless01_;
TBranch *nVetoMu_relIso03EAless01_branch;
bool nVetoMu_relIso03EAless01_isLoaded;
int nVetoMu_relIso03EAless02_;
TBranch *nVetoMu_relIso03EAless02_branch;
bool nVetoMu_relIso03EAless02_isLoaded;
int nVetoMu_relIso03EAless03_;
TBranch *nVetoMu_relIso03EAless03_branch;
bool nVetoMu_relIso03EAless03_isLoaded;
int nVetoMu_relIso03EAless04_;
TBranch *nVetoMu_relIso03EAless04_branch;
bool nVetoMu_relIso03EAless04_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *lep_p4_;
TBranch *lep_p4_branch;
bool lep_p4_isLoaded;
vector<float> *lep_pt_;
TBranch *lep_pt_branch;
bool lep_pt_isLoaded;
vector<float> *lep_eta_;
TBranch *lep_eta_branch;
bool lep_eta_isLoaded;
vector<float> *lep_phi_;
TBranch *lep_phi_branch;
bool lep_phi_isLoaded;
vector<float> *lep_mass_;
TBranch *lep_mass_branch;
bool lep_mass_isLoaded;
vector<int> *lep_charge_;
TBranch *lep_charge_branch;
bool lep_charge_isLoaded;
vector<bool> *lep_3ch_agree_;
TBranch *lep_3ch_agree_branch;
bool lep_3ch_agree_isLoaded;
vector<int> *lep_isFromW_;
TBranch *lep_isFromW_branch;
bool lep_isFromW_isLoaded;
vector<int> *lep_isFromZ_;
TBranch *lep_isFromZ_branch;
bool lep_isFromZ_isLoaded;
vector<int> *lep_isFromB_;
TBranch *lep_isFromB_branch;
bool lep_isFromB_isLoaded;
vector<int> *lep_isFromC_;
TBranch *lep_isFromC_branch;
bool lep_isFromC_isLoaded;
vector<int> *lep_isFromL_;
TBranch *lep_isFromL_branch;
bool lep_isFromL_isLoaded;
vector<int> *lep_isFromLF_;
TBranch *lep_isFromLF_branch;
bool lep_isFromLF_isLoaded;
vector<double> *lep_ptRatio_;
TBranch *lep_ptRatio_branch;
bool lep_ptRatio_isLoaded;
vector<double> *lep_ptRel_;
TBranch *lep_ptRel_branch;
bool lep_ptRel_isLoaded;
vector<double> *lep_relIso03_;
TBranch *lep_relIso03_branch;
bool lep_relIso03_isLoaded;
vector<double> *lep_relIso03DB_;
TBranch *lep_relIso03DB_branch;
bool lep_relIso03DB_isLoaded;
vector<double> *lep_relIso03EA_;
TBranch *lep_relIso03EA_branch;
bool lep_relIso03EA_isLoaded;
vector<double> *lep_relIso03EAv2_;
TBranch *lep_relIso03EAv2_branch;
bool lep_relIso03EAv2_isLoaded;
vector<double> *lep_relIso04DB_;
TBranch *lep_relIso04DB_branch;
bool lep_relIso04DB_isLoaded;
vector<double> *lep_relIso04EA_;
TBranch *lep_relIso04EA_branch;
bool lep_relIso04EA_isLoaded;
vector<double> *lep_relIso04EAv2_;
TBranch *lep_relIso04EAv2_branch;
bool lep_relIso04EAv2_isLoaded;
vector<double> *lep_miniRelIsoCMS3_EA_;
TBranch *lep_miniRelIsoCMS3_EA_branch;
bool lep_miniRelIsoCMS3_EA_isLoaded;
vector<double> *lep_miniRelIsoCMS3_EAv2_;
TBranch *lep_miniRelIsoCMS3_EAv2_branch;
bool lep_miniRelIsoCMS3_EAv2_isLoaded;
vector<double> *lep_miniRelIsoCMS3_DB_;
TBranch *lep_miniRelIsoCMS3_DB_branch;
bool lep_miniRelIsoCMS3_DB_isLoaded;
vector<int> *lep_pdgId_;
TBranch *lep_pdgId_branch;
bool lep_pdgId_isLoaded;
vector<float> *lep_dxy_;
TBranch *lep_dxy_branch;
bool lep_dxy_isLoaded;
vector<float> *lep_ip3d_;
TBranch *lep_ip3d_branch;
bool lep_ip3d_isLoaded;
vector<float> *lep_ip3derr_;
TBranch *lep_ip3derr_branch;
bool lep_ip3derr_isLoaded;
vector<float> *lep_etaSC_;
TBranch *lep_etaSC_branch;
bool lep_etaSC_isLoaded;
vector<float> *lep_dz_;
TBranch *lep_dz_branch;
bool lep_dz_isLoaded;
vector<int> *lep_tightId_;
TBranch *lep_tightId_branch;
bool lep_tightId_isLoaded;
vector<int> *lep_mcMatchId_;
TBranch *lep_mcMatchId_branch;
bool lep_mcMatchId_isLoaded;
vector<int> *lep_lostHits_;
TBranch *lep_lostHits_branch;
bool lep_lostHits_isLoaded;
vector<int> *lep_convVeto_;
TBranch *lep_convVeto_branch;
bool lep_convVeto_isLoaded;
vector<int> *lep_tightCharge_;
TBranch *lep_tightCharge_branch;
bool lep_tightCharge_isLoaded;
vector<float> *lep_MVA_;
TBranch *lep_MVA_branch;
bool lep_MVA_isLoaded;
vector<float> *lep_validfraction_;
TBranch *lep_validfraction_branch;
bool lep_validfraction_isLoaded;
vector<float> *lep_pterr_;
TBranch *lep_pterr_branch;
bool lep_pterr_isLoaded;
vector<float> *lep_sta_pterrOpt_;
TBranch *lep_sta_pterrOpt_branch;
bool lep_sta_pterrOpt_isLoaded;
vector<float> *lep_glb_pterrOpt_;
TBranch *lep_glb_pterrOpt_branch;
bool lep_glb_pterrOpt_isLoaded;
vector<float> *lep_x2ondof_;
TBranch *lep_x2ondof_branch;
bool lep_x2ondof_isLoaded;
vector<float> *lep_sta_x2ondof_;
TBranch *lep_sta_x2ondof_branch;
bool lep_sta_x2ondof_isLoaded;
vector<float> *lep_glb_x2ondof_;
TBranch *lep_glb_x2ondof_branch;
bool lep_glb_x2ondof_isLoaded;
int nisoTrack_5gev_;
TBranch *nisoTrack_5gev_branch;
bool nisoTrack_5gev_isLoaded;
int nisoTrack_mt2_;
TBranch *nisoTrack_mt2_branch;
bool nisoTrack_mt2_isLoaded;
int nisoTrack_PFLep5_woverlaps_;
TBranch *nisoTrack_PFLep5_woverlaps_branch;
bool nisoTrack_PFLep5_woverlaps_isLoaded;
int nisoTrack_PFHad10_woverlaps_;
TBranch *nisoTrack_PFHad10_woverlaps_branch;
bool nisoTrack_PFHad10_woverlaps_isLoaded;
int ngamma_;
TBranch *ngamma_branch;
bool ngamma_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *gamma_p4_;
TBranch *gamma_p4_branch;
bool gamma_p4_isLoaded;
vector<float> *gamma_pt_;
TBranch *gamma_pt_branch;
bool gamma_pt_isLoaded;
vector<float> *gamma_eta_;
TBranch *gamma_eta_branch;
bool gamma_eta_isLoaded;
vector<float> *gamma_phi_;
TBranch *gamma_phi_branch;
bool gamma_phi_isLoaded;
vector<float> *gamma_mass_;
TBranch *gamma_mass_branch;
bool gamma_mass_isLoaded;
vector<int> *gamma_mcMatchId_;
TBranch *gamma_mcMatchId_branch;
bool gamma_mcMatchId_isLoaded;
vector<float> *gamma_genPt_;
TBranch *gamma_genPt_branch;
bool gamma_genPt_isLoaded;
vector<float> *gamma_genIso_;
TBranch *gamma_genIso_branch;
bool gamma_genIso_isLoaded;
vector<float> *gamma_chHadIso_;
TBranch *gamma_chHadIso_branch;
bool gamma_chHadIso_isLoaded;
vector<float> *gamma_neuHadIso_;
TBranch *gamma_neuHadIso_branch;
bool gamma_neuHadIso_isLoaded;
vector<float> *gamma_phIso_;
TBranch *gamma_phIso_branch;
bool gamma_phIso_isLoaded;
vector<float> *gamma_sigmaIetaIeta_;
TBranch *gamma_sigmaIetaIeta_branch;
bool gamma_sigmaIetaIeta_isLoaded;
vector<float> *gamma_r9_;
TBranch *gamma_r9_branch;
bool gamma_r9_isLoaded;
vector<float> *gamma_hOverE_;
TBranch *gamma_hOverE_branch;
bool gamma_hOverE_isLoaded;
vector<float> *gamma_hOverE_online_;
TBranch *gamma_hOverE_online_branch;
bool gamma_hOverE_online_isLoaded;
vector<int> *gamma_idCutBased_;
TBranch *gamma_idCutBased_branch;
bool gamma_idCutBased_isLoaded;
vector<float> *gamma_ecpfclusiso_;
TBranch *gamma_ecpfclusiso_branch;
bool gamma_ecpfclusiso_isLoaded;
vector<float> *gamma_hcpfclusiso_;
TBranch *gamma_hcpfclusiso_branch;
bool gamma_hcpfclusiso_isLoaded;
vector<float> *gamma_hollowtkiso03_;
TBranch *gamma_hollowtkiso03_branch;
bool gamma_hollowtkiso03_isLoaded;
vector<int> *gamma_genIsPromptFinalState_;
TBranch *gamma_genIsPromptFinalState_branch;
bool gamma_genIsPromptFinalState_isLoaded;
vector<float> *gamma_drMinParton_;
TBranch *gamma_drMinParton_branch;
bool gamma_drMinParton_isLoaded;
int ngenPart_;
TBranch *ngenPart_branch;
bool ngenPart_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *genPart_p4_;
TBranch *genPart_p4_branch;
bool genPart_p4_isLoaded;
vector<float> *genPart_pt_;
TBranch *genPart_pt_branch;
bool genPart_pt_isLoaded;
vector<float> *genPart_eta_;
TBranch *genPart_eta_branch;
bool genPart_eta_isLoaded;
vector<float> *genPart_phi_;
TBranch *genPart_phi_branch;
bool genPart_phi_isLoaded;
vector<float> *genPart_mass_;
TBranch *genPart_mass_branch;
bool genPart_mass_isLoaded;
vector<int> *genPart_pdgId_;
TBranch *genPart_pdgId_branch;
bool genPart_pdgId_isLoaded;
vector<int> *genPart_status_;
TBranch *genPart_status_branch;
bool genPart_status_isLoaded;
vector<float> *genPart_charge_;
TBranch *genPart_charge_branch;
bool genPart_charge_isLoaded;
vector<int> *genPart_motherId_;
TBranch *genPart_motherId_branch;
bool genPart_motherId_isLoaded;
vector<int> *genPart_grandmaId_;
TBranch *genPart_grandmaId_branch;
bool genPart_grandmaId_isLoaded;
vector<bool> *genPart_isp6status3_;
TBranch *genPart_isp6status3_branch;
bool genPart_isp6status3_isLoaded;
int ngenLep_;
TBranch *ngenLep_branch;
bool ngenLep_isLoaded;
vector<float> *genLep_pt_;
TBranch *genLep_pt_branch;
bool genLep_pt_isLoaded;
vector<float> *genLep_eta_;
TBranch *genLep_eta_branch;
bool genLep_eta_isLoaded;
vector<float> *genLep_phi_;
TBranch *genLep_phi_branch;
bool genLep_phi_isLoaded;
vector<float> *genLep_mass_;
TBranch *genLep_mass_branch;
bool genLep_mass_isLoaded;
vector<int> *genLep_pdgId_;
TBranch *genLep_pdgId_branch;
bool genLep_pdgId_isLoaded;
vector<int> *genLep_status_;
TBranch *genLep_status_branch;
bool genLep_status_isLoaded;
vector<float> *genLep_charge_;
TBranch *genLep_charge_branch;
bool genLep_charge_isLoaded;
vector<int> *genLep_sourceId_;
TBranch *genLep_sourceId_branch;
bool genLep_sourceId_isLoaded;
vector<bool> *genLep_isp6status3_;
TBranch *genLep_isp6status3_branch;
bool genLep_isp6status3_isLoaded;
int ngenTau_;
TBranch *ngenTau_branch;
bool ngenTau_isLoaded;
vector<float> *genTau_pt_;
TBranch *genTau_pt_branch;
bool genTau_pt_isLoaded;
vector<float> *genTau_eta_;
TBranch *genTau_eta_branch;
bool genTau_eta_isLoaded;
vector<float> *genTau_phi_;
TBranch *genTau_phi_branch;
bool genTau_phi_isLoaded;
vector<float> *genTau_mass_;
TBranch *genTau_mass_branch;
bool genTau_mass_isLoaded;
vector<int> *genTau_pdgId_;
TBranch *genTau_pdgId_branch;
bool genTau_pdgId_isLoaded;
vector<int> *genTau_status_;
TBranch *genTau_status_branch;
bool genTau_status_isLoaded;
vector<float> *genTau_charge_;
TBranch *genTau_charge_branch;
bool genTau_charge_isLoaded;
vector<int> *genTau_sourceId_;
TBranch *genTau_sourceId_branch;
bool genTau_sourceId_isLoaded;
int ngenLepFromTau_;
TBranch *ngenLepFromTau_branch;
bool ngenLepFromTau_isLoaded;
vector<float> *genLepFromTau_pt_;
TBranch *genLepFromTau_pt_branch;
bool genLepFromTau_pt_isLoaded;
vector<float> *genLepFromTau_eta_;
TBranch *genLepFromTau_eta_branch;
bool genLepFromTau_eta_isLoaded;
vector<float> *genLepFromTau_phi_;
TBranch *genLepFromTau_phi_branch;
bool genLepFromTau_phi_isLoaded;
vector<float> *genLepFromTau_mass_;
TBranch *genLepFromTau_mass_branch;
bool genLepFromTau_mass_isLoaded;
vector<int> *genLepFromTau_pdgId_;
TBranch *genLepFromTau_pdgId_branch;
bool genLepFromTau_pdgId_isLoaded;
vector<int> *genLepFromTau_status_;
TBranch *genLepFromTau_status_branch;
bool genLepFromTau_status_isLoaded;
vector<float> *genLepFromTau_charge_;
TBranch *genLepFromTau_charge_branch;
bool genLepFromTau_charge_isLoaded;
vector<int> *genLepFromTau_sourceId_;
TBranch *genLepFromTau_sourceId_branch;
bool genLepFromTau_sourceId_isLoaded;
int njets_;
TBranch *njets_branch;
bool njets_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *jets_p4_;
TBranch *jets_p4_branch;
bool jets_p4_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *removed_jets_p4_;
TBranch *removed_jets_p4_branch;
bool removed_jets_p4_isLoaded;
vector<float> *removed_jets_csv_;
TBranch *removed_jets_csv_branch;
bool removed_jets_csv_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *jets_medb_p4_;
TBranch *jets_medb_p4_branch;
bool jets_medb_p4_isLoaded;
int njets_up_;
TBranch *njets_up_branch;
bool njets_up_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *jets_up_p4_;
TBranch *jets_up_p4_branch;
bool jets_up_p4_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *jets_medb_up_p4_;
TBranch *jets_medb_up_p4_branch;
bool jets_medb_up_p4_isLoaded;
vector<float> *jets_csv_;
TBranch *jets_csv_branch;
bool jets_csv_isLoaded;
vector<float> *jets_up_csv_;
TBranch *jets_up_csv_branch;
bool jets_up_csv_isLoaded;
int njets_dn_;
TBranch *njets_dn_branch;
bool njets_dn_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *jets_dn_p4_;
TBranch *jets_dn_p4_branch;
bool jets_dn_p4_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *jets_medb_dn_p4_;
TBranch *jets_medb_dn_p4_branch;
bool jets_medb_dn_p4_isLoaded;
vector<float> *jets_dn_csv_;
TBranch *jets_dn_csv_branch;
bool jets_dn_csv_isLoaded;
vector<float> *jets_muf_;
TBranch *jets_muf_branch;
bool jets_muf_isLoaded;
vector<int> *jets_mcFlavour_;
TBranch *jets_mcFlavour_branch;
bool jets_mcFlavour_isLoaded;
vector<int> *jets_mcHadronFlav_;
TBranch *jets_mcHadronFlav_branch;
bool jets_mcHadronFlav_isLoaded;
int nhighPtPFcands_;
TBranch *nhighPtPFcands_branch;
bool nhighPtPFcands_isLoaded;
vector<ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > > *highPtPFcands_p4_;
TBranch *highPtPFcands_p4_branch;
bool highPtPFcands_p4_isLoaded;
vector<float> *highPtPFcands_dz_;
TBranch *highPtPFcands_dz_branch;
bool highPtPFcands_dz_isLoaded;
vector<int> *highPtPFcands_pdgId_;
TBranch *highPtPFcands_pdgId_branch;
bool highPtPFcands_pdgId_isLoaded;
float ht_;
TBranch *ht_branch;
bool ht_isLoaded;
float ht_up_;
TBranch *ht_up_branch;
bool ht_up_isLoaded;
float ht_dn_;
TBranch *ht_dn_branch;
bool ht_dn_isLoaded;
float metsig_unofficial_;
TBranch *metsig_unofficial_branch;
bool metsig_unofficial_isLoaded;
float metsig_unofficial_up_;
TBranch *metsig_unofficial_up_branch;
bool metsig_unofficial_up_isLoaded;
float metsig_unofficial_dn_;
TBranch *metsig_unofficial_dn_branch;
bool metsig_unofficial_dn_isLoaded;
float mt_lep1_;
TBranch *mt_lep1_branch;
bool mt_lep1_isLoaded;
float mt2_;
TBranch *mt2_branch;
bool mt2_isLoaded;
float mt2_up_;
TBranch *mt2_up_branch;
bool mt2_up_isLoaded;
float mt2_dn_;
TBranch *mt2_dn_branch;
bool mt2_dn_isLoaded;
float mt2j_;
TBranch *mt2j_branch;
bool mt2j_isLoaded;
float mt2b_;
TBranch *mt2b_branch;
bool mt2b_isLoaded;
float mt2b_up_;
TBranch *mt2b_up_branch;
bool mt2b_up_isLoaded;
float mt2b_dn_;
TBranch *mt2b_dn_branch;
bool mt2b_dn_isLoaded;
float mt2_genmet_;
TBranch *mt2_genmet_branch;
bool mt2_genmet_isLoaded;
float mt2b_genmet_;
TBranch *mt2b_genmet_branch;
bool mt2b_genmet_isLoaded;
float mjj_mindphi_;
TBranch *mjj_mindphi_branch;
bool mjj_mindphi_isLoaded;
float mjj_;
TBranch *mjj_branch;
bool mjj_isLoaded;
float mbb_csv_;
TBranch *mbb_csv_branch;
bool mbb_csv_isLoaded;
float mbb_bpt_;
TBranch *mbb_bpt_branch;
bool mbb_bpt_isLoaded;
float dphi_jj_;
TBranch *dphi_jj_branch;
bool dphi_jj_isLoaded;
float dphi_ll_;
TBranch *dphi_ll_branch;
bool dphi_ll_isLoaded;
float sum_mlb_;
TBranch *sum_mlb_branch;
bool sum_mlb_isLoaded;
float deta_jj_;
TBranch *deta_jj_branch;
bool deta_jj_isLoaded;
float dR_jj_;
TBranch *dR_jj_branch;
bool dR_jj_isLoaded;
float dphi_metj1_;
TBranch *dphi_metj1_branch;
bool dphi_metj1_isLoaded;
float dphi_metj2_;
TBranch *dphi_metj2_branch;
bool dphi_metj2_isLoaded;
float dphi_genmetj1_;
TBranch *dphi_genmetj1_branch;
bool dphi_genmetj1_isLoaded;
float dphi_genmetj2_;
TBranch *dphi_genmetj2_branch;
bool dphi_genmetj2_isLoaded;
float mjj_mindphi_up_;
TBranch *mjj_mindphi_up_branch;
bool mjj_mindphi_up_isLoaded;
float mjj_up_;
TBranch *mjj_up_branch;
bool mjj_up_isLoaded;
float mbb_csv_up_;
TBranch *mbb_csv_up_branch;
bool mbb_csv_up_isLoaded;
float mbb_bpt_up_;
TBranch *mbb_bpt_up_branch;
bool mbb_bpt_up_isLoaded;
float dphi_jj_up_;
TBranch *dphi_jj_up_branch;
bool dphi_jj_up_isLoaded;
float dphi_ll_up_;
TBranch *dphi_ll_up_branch;
bool dphi_ll_up_isLoaded;
float sum_mlb_up_;
TBranch *sum_mlb_up_branch;
bool sum_mlb_up_isLoaded;
float deta_jj_up_;
TBranch *deta_jj_up_branch;
bool deta_jj_up_isLoaded;
float dR_jj_up_;
TBranch *dR_jj_up_branch;
bool dR_jj_up_isLoaded;
float dphi_metj1_up_;
TBranch *dphi_metj1_up_branch;
bool dphi_metj1_up_isLoaded;
float dphi_metj2_up_;
TBranch *dphi_metj2_up_branch;
bool dphi_metj2_up_isLoaded;
float mjj_mindphi_dn_;
TBranch *mjj_mindphi_dn_branch;
bool mjj_mindphi_dn_isLoaded;
float mjj_dn_;
TBranch *mjj_dn_branch;
bool mjj_dn_isLoaded;
float mbb_csv_dn_;
TBranch *mbb_csv_dn_branch;
bool mbb_csv_dn_isLoaded;
float mbb_bpt_dn_;
TBranch *mbb_bpt_dn_branch;
bool mbb_bpt_dn_isLoaded;
float dphi_jj_dn_;
TBranch *dphi_jj_dn_branch;
bool dphi_jj_dn_isLoaded;
float dphi_ll_dn_;
TBranch *dphi_ll_dn_branch;
bool dphi_ll_dn_isLoaded;
float sum_mlb_dn_;
TBranch *sum_mlb_dn_branch;
bool sum_mlb_dn_isLoaded;
float deta_jj_dn_;
TBranch *deta_jj_dn_branch;
bool deta_jj_dn_isLoaded;
float dR_jj_dn_;
TBranch *dR_jj_dn_branch;
bool dR_jj_dn_isLoaded;
float dphi_metj1_dn_;
TBranch *dphi_metj1_dn_branch;
bool dphi_metj1_dn_isLoaded;
float dphi_metj2_dn_;
TBranch *dphi_metj2_dn_branch;
bool dphi_metj2_dn_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 chpfcands_0013_pt_;
TBranch *chpfcands_0013_pt_branch;
bool chpfcands_0013_pt_isLoaded;
float chpfcands_1316_pt_;
TBranch *chpfcands_1316_pt_branch;
bool chpfcands_1316_pt_isLoaded;
float chpfcands_1624_pt_;
TBranch *chpfcands_1624_pt_branch;
bool chpfcands_1624_pt_isLoaded;
float chpfcands_2430_pt_;
TBranch *chpfcands_2430_pt_branch;
bool chpfcands_2430_pt_isLoaded;
float chpfcands_30in_pt_;
TBranch *chpfcands_30in_pt_branch;
bool chpfcands_30in_pt_isLoaded;
float phpfcands_0013_pt_;
TBranch *phpfcands_0013_pt_branch;
bool phpfcands_0013_pt_isLoaded;
float phpfcands_1316_pt_;
TBranch *phpfcands_1316_pt_branch;
bool phpfcands_1316_pt_isLoaded;
float phpfcands_1624_pt_;
TBranch *phpfcands_1624_pt_branch;
bool phpfcands_1624_pt_isLoaded;
float phpfcands_2430_pt_;
TBranch *phpfcands_2430_pt_branch;
bool phpfcands_2430_pt_isLoaded;
float phpfcands_30in_pt_;
TBranch *phpfcands_30in_pt_branch;
bool phpfcands_30in_pt_isLoaded;
float nupfcands_0013_pt_;
TBranch *nupfcands_0013_pt_branch;