-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventdict.cc
More file actions
3800 lines (3477 loc) · 237 KB
/
eventdict.cc
File metadata and controls
3800 lines (3477 loc) · 237 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
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
//
// File generated by rootcint at Wed Nov 6 23:27:33 2013
// Do NOT change. Changes will be lost next time file is generated
//
#define R__DICTIONARY_FILENAME eventdict
#include "RConfig.h" //rootcint 4834
#if !defined(R__ACCESS_IN_SYMBOL)
//Break the privacy of classes -- Disabled for the moment
#define private public
#define protected public
#endif
// Since CINT ignores the std namespace, we need to do so in this file.
namespace std {} using namespace std;
#include "eventdict.h"
#include "TCollectionProxyInfo.h"
#include "TClass.h"
#include "TBuffer.h"
#include "TMemberInspector.h"
#include "TError.h"
#ifndef G__ROOT
#define G__ROOT
#endif
#include "RtypesImp.h"
#include "TIsAProxy.h"
#include "TFileMergeInfo.h"
// START OF SHADOWS
namespace ROOT {
namespace Shadow {
} // of namespace Shadow
} // of namespace ROOT
// END OF SHADOWS
namespace ROOT {
void myobject_ShowMembers(void *obj, TMemberInspector &R__insp);
static void *new_myobject(void *p = 0);
static void *newArray_myobject(Long_t size, void *p);
static void delete_myobject(void *p);
static void deleteArray_myobject(void *p);
static void destruct_myobject(void *p);
// Function generating the singleton type initializer
static TGenericClassInfo *GenerateInitInstanceLocal(const ::myobject*)
{
::myobject *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::myobject >(0);
static ::ROOT::TGenericClassInfo
instance("myobject", ::myobject::Class_Version(), "./interface/myobject.h", 8,
typeid(::myobject), DefineBehavior(ptr, ptr),
&::myobject::Dictionary, isa_proxy, 4,
sizeof(::myobject) );
instance.SetNew(&new_myobject);
instance.SetNewArray(&newArray_myobject);
instance.SetDelete(&delete_myobject);
instance.SetDeleteArray(&deleteArray_myobject);
instance.SetDestructor(&destruct_myobject);
return &instance;
}
TGenericClassInfo *GenerateInitInstance(const ::myobject*)
{
return GenerateInitInstanceLocal((::myobject*)0);
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::myobject*)0x0); R__UseDummy(_R__UNIQUE_(Init));
} // end of namespace ROOT
namespace ROOT {
void myGenobject_ShowMembers(void *obj, TMemberInspector &R__insp);
static void *new_myGenobject(void *p = 0);
static void *newArray_myGenobject(Long_t size, void *p);
static void delete_myGenobject(void *p);
static void deleteArray_myGenobject(void *p);
static void destruct_myGenobject(void *p);
// Function generating the singleton type initializer
static TGenericClassInfo *GenerateInitInstanceLocal(const ::myGenobject*)
{
::myGenobject *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::myGenobject >(0);
static ::ROOT::TGenericClassInfo
instance("myGenobject", ::myGenobject::Class_Version(), "./interface/myGenobject.h", 8,
typeid(::myGenobject), DefineBehavior(ptr, ptr),
&::myGenobject::Dictionary, isa_proxy, 4,
sizeof(::myGenobject) );
instance.SetNew(&new_myGenobject);
instance.SetNewArray(&newArray_myGenobject);
instance.SetDelete(&delete_myGenobject);
instance.SetDeleteArray(&deleteArray_myGenobject);
instance.SetDestructor(&destruct_myGenobject);
return &instance;
}
TGenericClassInfo *GenerateInitInstance(const ::myGenobject*)
{
return GenerateInitInstanceLocal((::myGenobject*)0);
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::myGenobject*)0x0); R__UseDummy(_R__UNIQUE_(Init));
} // end of namespace ROOT
namespace ROOT {
void myevent_ShowMembers(void *obj, TMemberInspector &R__insp);
static void *new_myevent(void *p = 0);
static void *newArray_myevent(Long_t size, void *p);
static void delete_myevent(void *p);
static void deleteArray_myevent(void *p);
static void destruct_myevent(void *p);
// Function generating the singleton type initializer
static TGenericClassInfo *GenerateInitInstanceLocal(const ::myevent*)
{
::myevent *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::myevent >(0);
static ::ROOT::TGenericClassInfo
instance("myevent", ::myevent::Class_Version(), "./interface/myevent.h", 11,
typeid(::myevent), DefineBehavior(ptr, ptr),
&::myevent::Dictionary, isa_proxy, 4,
sizeof(::myevent) );
instance.SetNew(&new_myevent);
instance.SetNewArray(&newArray_myevent);
instance.SetDelete(&delete_myevent);
instance.SetDeleteArray(&deleteArray_myevent);
instance.SetDestructor(&destruct_myevent);
return &instance;
}
TGenericClassInfo *GenerateInitInstance(const ::myevent*)
{
return GenerateInitInstanceLocal((::myevent*)0);
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::myevent*)0x0); R__UseDummy(_R__UNIQUE_(Init));
} // end of namespace ROOT
namespace ROOT {
void vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator_ShowMembers(void *obj, TMemberInspector &R__insp);
static void vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator_Dictionary();
static void *new_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(void *p = 0);
static void *newArray_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(Long_t size, void *p);
static void delete_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(void *p);
static void deleteArray_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(void *p);
static void destruct_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(void *p);
// Function generating the singleton type initializer
static TGenericClassInfo *GenerateInitInstanceLocal(const ::vector<myobject,allocator<myobject> >::iterator*)
{
::vector<myobject,allocator<myobject> >::iterator *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(::vector<myobject,allocator<myobject> >::iterator),0);
static ::ROOT::TGenericClassInfo
instance("vector<myobject,allocator<myobject> >::iterator", "prec_stl/vector", 218,
typeid(::vector<myobject,allocator<myobject> >::iterator), DefineBehavior(ptr, ptr),
0, &vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator_Dictionary, isa_proxy, 0,
sizeof(::vector<myobject,allocator<myobject> >::iterator) );
instance.SetNew(&new_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator);
instance.SetNewArray(&newArray_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator);
instance.SetDelete(&delete_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator);
instance.SetDeleteArray(&deleteArray_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator);
instance.SetDestructor(&destruct_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator);
return &instance;
}
TGenericClassInfo *GenerateInitInstance(const ::vector<myobject,allocator<myobject> >::iterator*)
{
return GenerateInitInstanceLocal((::vector<myobject,allocator<myobject> >::iterator*)0);
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::vector<myobject,allocator<myobject> >::iterator*)0x0); R__UseDummy(_R__UNIQUE_(Init));
// Dictionary for non-ClassDef classes
static void vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator_Dictionary() {
::ROOT::GenerateInitInstanceLocal((const ::vector<myobject,allocator<myobject> >::iterator*)0x0)->GetClass();
}
} // end of namespace ROOT
namespace ROOT {
void vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator_ShowMembers(void *obj, TMemberInspector &R__insp);
static void vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator_Dictionary();
static void *new_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(void *p = 0);
static void *newArray_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(Long_t size, void *p);
static void delete_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(void *p);
static void deleteArray_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(void *p);
static void destruct_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(void *p);
// Function generating the singleton type initializer
static TGenericClassInfo *GenerateInitInstanceLocal(const ::vector<myGenobject,allocator<myGenobject> >::iterator*)
{
::vector<myGenobject,allocator<myGenobject> >::iterator *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(::vector<myGenobject,allocator<myGenobject> >::iterator),0);
static ::ROOT::TGenericClassInfo
instance("vector<myGenobject,allocator<myGenobject> >::iterator", "prec_stl/vector", 218,
typeid(::vector<myGenobject,allocator<myGenobject> >::iterator), DefineBehavior(ptr, ptr),
0, &vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator_Dictionary, isa_proxy, 0,
sizeof(::vector<myGenobject,allocator<myGenobject> >::iterator) );
instance.SetNew(&new_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator);
instance.SetNewArray(&newArray_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator);
instance.SetDelete(&delete_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator);
instance.SetDeleteArray(&deleteArray_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator);
instance.SetDestructor(&destruct_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator);
return &instance;
}
TGenericClassInfo *GenerateInitInstance(const ::vector<myGenobject,allocator<myGenobject> >::iterator*)
{
return GenerateInitInstanceLocal((::vector<myGenobject,allocator<myGenobject> >::iterator*)0);
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::vector<myGenobject,allocator<myGenobject> >::iterator*)0x0); R__UseDummy(_R__UNIQUE_(Init));
// Dictionary for non-ClassDef classes
static void vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator_Dictionary() {
::ROOT::GenerateInitInstanceLocal((const ::vector<myGenobject,allocator<myGenobject> >::iterator*)0x0)->GetClass();
}
} // end of namespace ROOT
//______________________________________________________________________________
TClass *myobject::fgIsA = 0; // static to hold class pointer
//______________________________________________________________________________
const char *myobject::Class_Name()
{
return "myobject";
}
//______________________________________________________________________________
const char *myobject::ImplFileName()
{
return ::ROOT::GenerateInitInstanceLocal((const ::myobject*)0x0)->GetImplFileName();
}
//______________________________________________________________________________
int myobject::ImplFileLine()
{
return ::ROOT::GenerateInitInstanceLocal((const ::myobject*)0x0)->GetImplFileLine();
}
//______________________________________________________________________________
void myobject::Dictionary()
{
fgIsA = ::ROOT::GenerateInitInstanceLocal((const ::myobject*)0x0)->GetClass();
}
//______________________________________________________________________________
TClass *myobject::Class()
{
if (!fgIsA) fgIsA = ::ROOT::GenerateInitInstanceLocal((const ::myobject*)0x0)->GetClass();
return fgIsA;
}
//______________________________________________________________________________
TClass *myGenobject::fgIsA = 0; // static to hold class pointer
//______________________________________________________________________________
const char *myGenobject::Class_Name()
{
return "myGenobject";
}
//______________________________________________________________________________
const char *myGenobject::ImplFileName()
{
return ::ROOT::GenerateInitInstanceLocal((const ::myGenobject*)0x0)->GetImplFileName();
}
//______________________________________________________________________________
int myGenobject::ImplFileLine()
{
return ::ROOT::GenerateInitInstanceLocal((const ::myGenobject*)0x0)->GetImplFileLine();
}
//______________________________________________________________________________
void myGenobject::Dictionary()
{
fgIsA = ::ROOT::GenerateInitInstanceLocal((const ::myGenobject*)0x0)->GetClass();
}
//______________________________________________________________________________
TClass *myGenobject::Class()
{
if (!fgIsA) fgIsA = ::ROOT::GenerateInitInstanceLocal((const ::myGenobject*)0x0)->GetClass();
return fgIsA;
}
//______________________________________________________________________________
TClass *myevent::fgIsA = 0; // static to hold class pointer
//______________________________________________________________________________
const char *myevent::Class_Name()
{
return "myevent";
}
//______________________________________________________________________________
const char *myevent::ImplFileName()
{
return ::ROOT::GenerateInitInstanceLocal((const ::myevent*)0x0)->GetImplFileName();
}
//______________________________________________________________________________
int myevent::ImplFileLine()
{
return ::ROOT::GenerateInitInstanceLocal((const ::myevent*)0x0)->GetImplFileLine();
}
//______________________________________________________________________________
void myevent::Dictionary()
{
fgIsA = ::ROOT::GenerateInitInstanceLocal((const ::myevent*)0x0)->GetClass();
}
//______________________________________________________________________________
TClass *myevent::Class()
{
if (!fgIsA) fgIsA = ::ROOT::GenerateInitInstanceLocal((const ::myevent*)0x0)->GetClass();
return fgIsA;
}
//______________________________________________________________________________
void myobject::Streamer(TBuffer &R__b)
{
// Stream an object of class myobject.
if (R__b.IsReading()) {
R__b.ReadClassBuffer(myobject::Class(),this);
} else {
R__b.WriteClassBuffer(myobject::Class(),this);
}
}
//______________________________________________________________________________
void myobject::ShowMembers(TMemberInspector &R__insp)
{
// Inspect the data members of an object of class myobject.
TClass *R__cl = ::myobject::IsA();
if (R__cl || R__insp.IsA()) { }
R__insp.Inspect(R__cl, R__insp.GetParent(), "pt", &pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "eta", &eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "px", &px);
R__insp.Inspect(R__cl, R__insp.GetParent(), "py", &py);
R__insp.Inspect(R__cl, R__insp.GetParent(), "phi", &phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "charge", &charge);
R__insp.Inspect(R__cl, R__insp.GetParent(), "E", &E);
R__insp.Inspect(R__cl, R__insp.GetParent(), "et", &et);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pz", &pz);
R__insp.Inspect(R__cl, R__insp.GetParent(), "z", &z);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mass", &mass);
R__insp.Inspect(R__cl, R__insp.GetParent(), "dz_Ver_match", &dz_Ver_match);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Energy", &Energy);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mt", &mt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "jetMass", &jetMass);
R__insp.Inspect(R__cl, R__insp.GetParent(), "eta_SC", &eta_SC);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_pt", &mod_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_eta", &mod_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_phi", &mod_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_charge", &mod_charge);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_z", &mod_z);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_mass", &mod_mass);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_pt", &Gmod_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_eta", &Gmod_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_phi", &Gmod_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_charge", &Gmod_charge);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_z", &Gmod_z);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_mass", &Gmod_mass);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoAll", &pfIsoAll);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoCharged", &pfIsoCharged);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoNeutral", &pfIsoNeutral);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoGamma", &pfIsoGamma);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoPU", &pfIsoPU);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoPULow", &pfIsoPULow);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Id_mvaTrg", &Id_mvaTrg);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Id_mvaNonTrg", &Id_mvaNonTrg);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoAll_NoPFId", &pfIsoAll_NoPFId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoCharged_NoPFId", &pfIsoCharged_NoPFId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoNeutral_NoPFId", &pfIsoNeutral_NoPFId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoGamma_NoPFId", &pfIsoGamma_NoPFId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pfIsoPU_NoPFId", &pfIsoPU_NoPFId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "z_expo", &z_expo);
R__insp.Inspect(R__cl, R__insp.GetParent(), "position_Rho", &position_Rho);
R__insp.Inspect(R__cl, R__insp.GetParent(), "position_rho", &position_rho);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pdgId", &pdgId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "status", &status);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_pdgId", &mod_pdgId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_status", &mod_status);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_pdgId", &Gmod_pdgId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_status", &Gmod_status);
R__insp.Inspect(R__cl, R__insp.GetParent(), "tracksSize", &tracksSize);
R__insp.Inspect(R__cl, R__insp.GetParent(), "gen_index", &gen_index);
R__insp.Inspect(R__cl, R__insp.GetParent(), "decay_mode", &decay_mode);
R__insp.Inspect(R__cl, R__insp.GetParent(), "dB", &dB);
R__insp.Inspect(R__cl, R__insp.GetParent(), "d0", &d0);
R__insp.Inspect(R__cl, R__insp.GetParent(), "emfraction", &emfraction);
R__insp.Inspect(R__cl, R__insp.GetParent(), "DepositR03Ecal", &DepositR03Ecal);
R__insp.Inspect(R__cl, R__insp.GetParent(), "DepositR03Hcal", &DepositR03Hcal);
R__insp.Inspect(R__cl, R__insp.GetParent(), "DepositR03TrackerOfficial", &DepositR03TrackerOfficial);
R__insp.Inspect(R__cl, R__insp.GetParent(), "alpha", &alpha);
R__insp.Inspect(R__cl, R__insp.GetParent(), "GlobalMuonPromptTight", &GlobalMuonPromptTight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "TMOneStationLoose", &TMOneStationLoose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "TM2DCompatibilityLoose", &TM2DCompatibilityLoose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isGlobalMuon", &isGlobalMuon);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isTrackerMuon", &isTrackerMuon);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isStandAloneMuon", &isStandAloneMuon);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isPFMuon", &isPFMuon);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numberOfValidMuonHits", &numberOfValidMuonHits);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numberOfHits", &numberOfHits);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numMatchStation", &numMatchStation);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numLostHitEle", &numLostHitEle);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numValidHitEle", &numValidHitEle);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numHitEleInner", &numHitEleInner);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numLostHitEleInner", &numLostHitEleInner);
R__insp.Inspect(R__cl, R__insp.GetParent(), "normalizedChi2_innTrk", &normalizedChi2_innTrk);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numberOfValidMuonHits_innTrk", &numberOfValidMuonHits_innTrk);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numberOfHits_innTrk", &numberOfHits_innTrk);
R__insp.Inspect(R__cl, R__insp.GetParent(), "normalizedChi2", &normalizedChi2);
R__insp.Inspect(R__cl, R__insp.GetParent(), "trkLayerMeasure", &trkLayerMeasure);
R__insp.Inspect(R__cl, R__insp.GetParent(), "intrkLayerMeasure", &intrkLayerMeasure);
R__insp.Inspect(R__cl, R__insp.GetParent(), "intrkLayerpixel", &intrkLayerpixel);
R__insp.Inspect(R__cl, R__insp.GetParent(), "dxy_in", &dxy_in);
R__insp.Inspect(R__cl, R__insp.GetParent(), "dZ_in", &dZ_in);
R__insp.Inspect(R__cl, R__insp.GetParent(), "dxy_PV", &dxy_PV);
R__insp.Inspect(R__cl, R__insp.GetParent(), "dz_PV", &dz_PV);
R__insp.Inspect(R__cl, R__insp.GetParent(), "IP3D", &IP3D);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isFake", &isFake);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isValid", &isValid);
R__insp.Inspect(R__cl, R__insp.GetParent(), "ndof", &ndof);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Num_Vertex", &Num_Vertex);
R__insp.Inspect(R__cl, R__insp.GetParent(), "jetId_loose", &jetId_loose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "jetId_tight", &jetId_tight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "HoverE", &HoverE);
R__insp.Inspect(R__cl, R__insp.GetParent(), "deltaPhiSuperClusterTrackAtVtx", &deltaPhiSuperClusterTrackAtVtx);
R__insp.Inspect(R__cl, R__insp.GetParent(), "deltaEtaSuperClusterTrackAtVtx", &deltaEtaSuperClusterTrackAtVtx);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sigmaIetaIeta", &sigmaIetaIeta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sigmaEtaEta", &sigmaEtaEta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "ecalIso", &ecalIso);
R__insp.Inspect(R__cl, R__insp.GetParent(), "hcalIso", &hcalIso);
R__insp.Inspect(R__cl, R__insp.GetParent(), "caloIso", &caloIso);
R__insp.Inspect(R__cl, R__insp.GetParent(), "trackIso", &trackIso);
R__insp.Inspect(R__cl, R__insp.GetParent(), "hcalOverEcal", &hcalOverEcal);
R__insp.Inspect(R__cl, R__insp.GetParent(), "SIP", &SIP);
R__insp.Inspect(R__cl, R__insp.GetParent(), "passConversionVeto", &passConversionVeto);
R__insp.Inspect(R__cl, R__insp.GetParent(), "rawE_SC", &rawE_SC);
R__insp.Inspect(R__cl, R__insp.GetParent(), "preshowerE_SC", &preshowerE_SC);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isGsfCtfScPixChargeConsistent", &isGsfCtfScPixChargeConsistent);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isGsfScPixChargeConsistent", &isGsfScPixChargeConsistent);
R__insp.Inspect(R__cl, R__insp.GetParent(), "isGsfCtfChargeConsistent", &isGsfCtfChargeConsistent);
R__insp.Inspect(R__cl, R__insp.GetParent(), "bDiscriminatiors_CSV", &bDiscriminatiors_CSV);
R__insp.Inspect(R__cl, R__insp.GetParent(), "bDiscriminatiors_JP", &bDiscriminatiors_JP);
R__insp.Inspect(R__cl, R__insp.GetParent(), "bDiscriminatiors_TCHPT", &bDiscriminatiors_TCHPT);
R__insp.Inspect(R__cl, R__insp.GetParent(), "jetPt", &jetPt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "jetEta", &jetEta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "jetPhi", &jetPhi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "leadChargedParticlePt", &leadChargedParticlePt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "leadTrackD0", &leadTrackD0);
R__insp.Inspect(R__cl, R__insp.GetParent(), "puJetIdLoose", &puJetIdLoose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "puJetIdMedium", &puJetIdMedium);
R__insp.Inspect(R__cl, R__insp.GetParent(), "puJetIdTight", &puJetIdTight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mva_e_pi", &mva_e_pi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mva_pi_mu", &mva_pi_mu);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mva_e_mu", &mva_e_mu);
R__insp.Inspect(R__cl, R__insp.GetParent(), "hcalEnergy", &hcalEnergy);
R__insp.Inspect(R__cl, R__insp.GetParent(), "ecalEnergy", &ecalEnergy);
R__insp.Inspect(R__cl, R__insp.GetParent(), "trackRefPt", &trackRefPt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numChargedParticlesSignalCone", &numChargedParticlesSignalCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numNeutralHadronsSignalCone", &numNeutralHadronsSignalCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numPhotonsSignalCone", &numPhotonsSignalCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numParticlesSignalCone", &numParticlesSignalCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "signalPiZeroCandidates", &signalPiZeroCandidates);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numChargedParticlesIsoCone", &numChargedParticlesIsoCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numNeutralHadronsIsoCone", &numNeutralHadronsIsoCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numPhotonsIsoCone", &numPhotonsIsoCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "numParticlesIsoCone", &numParticlesIsoCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "ptSumChargedParticlesIsoCone", &ptSumChargedParticlesIsoCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "ptSumPhotonsIsoCone", &ptSumPhotonsIsoCone);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track1_pt", &sig_track1_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track1_phi", &sig_track1_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track1_eta", &sig_track1_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track1_m", &sig_track1_m);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track2_pt", &sig_track2_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track2_phi", &sig_track2_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track2_eta", &sig_track2_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track2_m", &sig_track2_m);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track3_pt", &sig_track3_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track3_phi", &sig_track3_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track3_eta", &sig_track3_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_track3_m", &sig_track3_m);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_pi0_1_pt", &sig_pi0_1_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_pi0_1_phi", &sig_pi0_1_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_pi0_1_eta", &sig_pi0_1_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_pi0_1_m", &sig_pi0_1_m);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_pi0_2_pt", &sig_pi0_2_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_pi0_2_phi", &sig_pi0_2_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_pi0_2_eta", &sig_pi0_2_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "sig_pi0_2_m", &sig_pi0_2_m);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByDecayModeFinding", &discriminationByDecayModeFinding);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByVeryLooseIsolation", &discriminationByVeryLooseIsolation);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByLooseIsolation", &discriminationByLooseIsolation);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMediumIsolation", &discriminationByMediumIsolation);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByTightIsolation", &discriminationByTightIsolation);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronLoose", &discriminationByElectronLoose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMedium", &discriminationByElectronMedium);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronTight", &discriminationByElectronTight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMVA", &discriminationByElectronMVA);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMVA2Loose", &discriminationByElectronMVA2Loose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMVA2Medium", &discriminationByElectronMVA2Medium);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMVA2Tight", &discriminationByElectronMVA2Tight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMVA3Loose", &discriminationByElectronMVA3Loose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMVA3Medium", &discriminationByElectronMVA3Medium);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMVA3Tight", &discriminationByElectronMVA3Tight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByElectronMVA3VTight", &discriminationByElectronMVA3VTight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMuonLoose", &discriminationByMuonLoose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMuonMedium", &discriminationByMuonMedium);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMuonTight", &discriminationByMuonTight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMuonLoose2", &discriminationByMuonLoose2);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMuonMedium2", &discriminationByMuonMedium2);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMuonTight2", &discriminationByMuonTight2);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMuonLoose3", &discriminationByMuonLoose3);
R__insp.Inspect(R__cl, R__insp.GetParent(), "discriminationByMuonTight3", &discriminationByMuonTight3);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byVLooseCombinedIsolationDeltaBetaCorr", &byVLooseCombinedIsolationDeltaBetaCorr);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byLooseCombinedIsolationDeltaBetaCorr", &byLooseCombinedIsolationDeltaBetaCorr);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byMediumCombinedIsolationDeltaBetaCorr", &byMediumCombinedIsolationDeltaBetaCorr);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byTightCombinedIsolationDeltaBetaCorr", &byTightCombinedIsolationDeltaBetaCorr);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byLooseCombinedIsolationDeltaBetaCorr3Hits", &byLooseCombinedIsolationDeltaBetaCorr3Hits);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byMediumCombinedIsolationDeltaBetaCorr3Hits", &byMediumCombinedIsolationDeltaBetaCorr3Hits);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byTightCombinedIsolationDeltaBetaCorr3Hits", &byTightCombinedIsolationDeltaBetaCorr3Hits);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byRawCombinedIsolationDeltaBetaCorr3Hits", &byRawCombinedIsolationDeltaBetaCorr3Hits);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byIsolationMVAraw", &byIsolationMVAraw);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byIsolationMVA2raw", &byIsolationMVA2raw);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byLooseIsolationMVA", &byLooseIsolationMVA);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byMediumIsolationMVA", &byMediumIsolationMVA);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byTightIsolationMVA", &byTightIsolationMVA);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byLooseIsolationMVA2", &byLooseIsolationMVA2);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byMediumIsolationMVA2", &byMediumIsolationMVA2);
R__insp.Inspect(R__cl, R__insp.GetParent(), "byTightIsolationMVA2", &byTightIsolationMVA2);
R__insp.Inspect(R__cl, R__insp.GetParent(), "hasTrgObject_loose", &hasTrgObject_loose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "TrgObjectEta_loose", &TrgObjectEta_loose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "TrgObjectPt_loose", &TrgObjectPt_loose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "TrgObjectPhi_loose", &TrgObjectPhi_loose);
R__insp.Inspect(R__cl, R__insp.GetParent(), "hasTrgObject_medium", &hasTrgObject_medium);
R__insp.Inspect(R__cl, R__insp.GetParent(), "TrgObjectEta_medium", &TrgObjectEta_medium);
R__insp.Inspect(R__cl, R__insp.GetParent(), "TrgObjectPt_medium", &TrgObjectPt_medium);
R__insp.Inspect(R__cl, R__insp.GetParent(), "TrgObjectPhi_medium", &TrgObjectPhi_medium);
TObject::ShowMembers(R__insp);
}
namespace ROOT {
// Wrappers around operator new
static void *new_myobject(void *p) {
return p ? new(p) ::myobject : new ::myobject;
}
static void *newArray_myobject(Long_t nElements, void *p) {
return p ? new(p) ::myobject[nElements] : new ::myobject[nElements];
}
// Wrapper around operator delete
static void delete_myobject(void *p) {
delete ((::myobject*)p);
}
static void deleteArray_myobject(void *p) {
delete [] ((::myobject*)p);
}
static void destruct_myobject(void *p) {
typedef ::myobject current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOT for class ::myobject
namespace ROOT {
// Wrappers around operator new
static void *new_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::vector<myobject,allocator<myobject> >::iterator : new ::vector<myobject,allocator<myobject> >::iterator;
}
static void *newArray_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(Long_t nElements, void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::vector<myobject,allocator<myobject> >::iterator[nElements] : new ::vector<myobject,allocator<myobject> >::iterator[nElements];
}
// Wrapper around operator delete
static void delete_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(void *p) {
delete ((::vector<myobject,allocator<myobject> >::iterator*)p);
}
static void deleteArray_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(void *p) {
delete [] ((::vector<myobject,allocator<myobject> >::iterator*)p);
}
static void destruct_vectorlEmyobjectcOallocatorlEmyobjectgRsPgRcLcLiterator(void *p) {
typedef ::vector<myobject,allocator<myobject> >::iterator current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOT for class ::vector<myobject,allocator<myobject> >::iterator
//______________________________________________________________________________
void myGenobject::Streamer(TBuffer &R__b)
{
// Stream an object of class myGenobject.
if (R__b.IsReading()) {
R__b.ReadClassBuffer(myGenobject::Class(),this);
} else {
R__b.WriteClassBuffer(myGenobject::Class(),this);
}
}
//______________________________________________________________________________
void myGenobject::ShowMembers(TMemberInspector &R__insp)
{
// Inspect the data members of an object of class myGenobject.
TClass *R__cl = ::myGenobject::IsA();
if (R__cl || R__insp.IsA()) { }
R__insp.Inspect(R__cl, R__insp.GetParent(), "pt", &pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "eta", &eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "phi", &phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "charge", &charge);
R__insp.Inspect(R__cl, R__insp.GetParent(), "z", &z);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mass", &mass);
R__insp.Inspect(R__cl, R__insp.GetParent(), "et", &et);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_pt", &mod_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_eta", &mod_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_phi", &mod_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_charge", &mod_charge);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_z", &mod_z);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_mass", &mod_mass);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_pt", &Gmod_pt);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_eta", &Gmod_eta);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_phi", &Gmod_phi);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_charge", &Gmod_charge);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_z", &Gmod_z);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_mass", &Gmod_mass);
R__insp.Inspect(R__cl, R__insp.GetParent(), "pdgId", &pdgId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "status", &status);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_pdgId", &mod_pdgId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "mod_status", &mod_status);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_pdgId", &Gmod_pdgId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Gmod_status", &Gmod_status);
R__insp.Inspect(R__cl, R__insp.GetParent(), "gen_index", &gen_index);
R__insp.Inspect(R__cl, R__insp.GetParent(), "decay_mode", &decay_mode);
TObject::ShowMembers(R__insp);
}
namespace ROOT {
// Wrappers around operator new
static void *new_myGenobject(void *p) {
return p ? new(p) ::myGenobject : new ::myGenobject;
}
static void *newArray_myGenobject(Long_t nElements, void *p) {
return p ? new(p) ::myGenobject[nElements] : new ::myGenobject[nElements];
}
// Wrapper around operator delete
static void delete_myGenobject(void *p) {
delete ((::myGenobject*)p);
}
static void deleteArray_myGenobject(void *p) {
delete [] ((::myGenobject*)p);
}
static void destruct_myGenobject(void *p) {
typedef ::myGenobject current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOT for class ::myGenobject
namespace ROOT {
// Wrappers around operator new
static void *new_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::vector<myGenobject,allocator<myGenobject> >::iterator : new ::vector<myGenobject,allocator<myGenobject> >::iterator;
}
static void *newArray_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(Long_t nElements, void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::vector<myGenobject,allocator<myGenobject> >::iterator[nElements] : new ::vector<myGenobject,allocator<myGenobject> >::iterator[nElements];
}
// Wrapper around operator delete
static void delete_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(void *p) {
delete ((::vector<myGenobject,allocator<myGenobject> >::iterator*)p);
}
static void deleteArray_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(void *p) {
delete [] ((::vector<myGenobject,allocator<myGenobject> >::iterator*)p);
}
static void destruct_vectorlEmyGenobjectcOallocatorlEmyGenobjectgRsPgRcLcLiterator(void *p) {
typedef ::vector<myGenobject,allocator<myGenobject> >::iterator current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOT for class ::vector<myGenobject,allocator<myGenobject> >::iterator
//______________________________________________________________________________
void myevent::Streamer(TBuffer &R__b)
{
// Stream an object of class myevent.
if (R__b.IsReading()) {
R__b.ReadClassBuffer(myevent::Class(),this);
} else {
R__b.WriteClassBuffer(myevent::Class(),this);
}
}
//______________________________________________________________________________
void myevent::ShowMembers(TMemberInspector &R__insp)
{
// Inspect the data members of an object of class myevent.
TClass *R__cl = ::myevent::IsA();
if (R__cl || R__insp.IsA()) { }
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFJetsAK5", (void*)&RecPFJetsAK5);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFJetsAK5, "RecPFJetsAK5.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFJetsAK5_Up_SubTotal", (void*)&RecPFJetsAK5_Up_SubTotal);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFJetsAK5_Up_SubTotal, "RecPFJetsAK5_Up_SubTotal.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFJetsAK5_Down_SubTotal", (void*)&RecPFJetsAK5_Down_SubTotal);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFJetsAK5_Down_SubTotal, "RecPFJetsAK5_Down_SubTotal.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFJetsAK5_Up_Total", (void*)&RecPFJetsAK5_Up_Total);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFJetsAK5_Up_Total, "RecPFJetsAK5_Up_Total.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFJetsAK5_Down_Total", (void*)&RecPFJetsAK5_Down_Total);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFJetsAK5_Down_Total, "RecPFJetsAK5_Down_Total.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecGenParticle", (void*)&RecGenParticle);
R__insp.InspectMember("vector<myGenobject>", (void*)&RecGenParticle, "RecGenParticle.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecGenMet", (void*)&RecGenMet);
R__insp.InspectMember("vector<myGenobject>", (void*)&RecGenMet, "RecGenMet.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecGenJet", (void*)&RecGenJet);
R__insp.InspectMember("vector<myGenobject>", (void*)&RecGenJet, "RecGenJet.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecGenTauVisible", (void*)&RecGenTauVisible);
R__insp.InspectMember("vector<myGenobject>", (void*)&RecGenTauVisible, "RecGenTauVisible.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "PreSelectedElectrons", (void*)&PreSelectedElectrons);
R__insp.InspectMember("vector<myobject>", (void*)&PreSelectedElectrons, "PreSelectedElectrons.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "PreSelectedMuons", (void*)&PreSelectedMuons);
R__insp.InspectMember("vector<myobject>", (void*)&PreSelectedMuons, "PreSelectedMuons.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "PreSelectedHPSTaus", (void*)&PreSelectedHPSTaus);
R__insp.InspectMember("vector<myobject>", (void*)&PreSelectedHPSTaus, "PreSelectedHPSTaus.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "SelectedHPSTaus", (void*)&SelectedHPSTaus);
R__insp.InspectMember("vector<myobject>", (void*)&SelectedHPSTaus, "SelectedHPSTaus.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMet", (void*)&RecPFMet);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMet, "RecPFMet.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCor", (void*)&RecPFMetCor);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCor, "RecPFMetCor.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecMVAMet", (void*)&RecMVAMet);
R__insp.InspectMember("vector<myobject>", (void*)&RecMVAMet, "RecMVAMet.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RectcMet", (void*)&RectcMet);
R__insp.InspectMember("vector<myobject>", (void*)&RectcMet, "RectcMet.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorElectronEnUp", (void*)&RecPFMetCorElectronEnUp);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorElectronEnUp, "RecPFMetCorElectronEnUp.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorElectronEnDown", (void*)&RecPFMetCorElectronEnDown);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorElectronEnDown, "RecPFMetCorElectronEnDown.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorMuonEnUp", (void*)&RecPFMetCorMuonEnUp);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorMuonEnUp, "RecPFMetCorMuonEnUp.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorMuonEnDown", (void*)&RecPFMetCorMuonEnDown);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorMuonEnDown, "RecPFMetCorMuonEnDown.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorTauEnUp", (void*)&RecPFMetCorTauEnUp);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorTauEnUp, "RecPFMetCorTauEnUp.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorTauEnDown", (void*)&RecPFMetCorTauEnDown);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorTauEnDown, "RecPFMetCorTauEnDown.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorJetEnUp", (void*)&RecPFMetCorJetEnUp);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorJetEnUp, "RecPFMetCorJetEnUp.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorJetEnDown", (void*)&RecPFMetCorJetEnDown);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorJetEnDown, "RecPFMetCorJetEnDown.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorJetResUp", (void*)&RecPFMetCorJetResUp);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorJetResUp, "RecPFMetCorJetResUp.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorJetResDown", (void*)&RecPFMetCorJetResDown);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorJetResDown, "RecPFMetCorJetResDown.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorUnclusteredEnUp", (void*)&RecPFMetCorUnclusteredEnUp);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorUnclusteredEnUp, "RecPFMetCorUnclusteredEnUp.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RecPFMetCorUnclusteredEnDown", (void*)&RecPFMetCorUnclusteredEnDown);
R__insp.InspectMember("vector<myobject>", (void*)&RecPFMetCorUnclusteredEnDown, "RecPFMetCorUnclusteredEnDown.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "smearedPatJets", (void*)&smearedPatJets);
R__insp.InspectMember("vector<myobject>", (void*)&smearedPatJets, "smearedPatJets.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "smearedPatJetsResUp", (void*)&smearedPatJetsResUp);
R__insp.InspectMember("vector<myobject>", (void*)&smearedPatJetsResUp, "smearedPatJetsResUp.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "smearedPatJetsResDown", (void*)&smearedPatJetsResDown);
R__insp.InspectMember("vector<myobject>", (void*)&smearedPatJetsResDown, "smearedPatJetsResDown.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "shiftedPatJetsEnUpForCorrMEt", (void*)&shiftedPatJetsEnUpForCorrMEt);
R__insp.InspectMember("vector<myobject>", (void*)&shiftedPatJetsEnUpForCorrMEt, "shiftedPatJetsEnUpForCorrMEt.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "shiftedPatJetsEnDownForCorrMEt", (void*)&shiftedPatJetsEnDownForCorrMEt);
R__insp.InspectMember("vector<myobject>", (void*)&shiftedPatJetsEnDownForCorrMEt, "shiftedPatJetsEnDownForCorrMEt.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "cleanPatJets", (void*)&cleanPatJets);
R__insp.InspectMember("vector<myobject>", (void*)&cleanPatJets, "cleanPatJets.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Vertex", (void*)&Vertex);
R__insp.InspectMember("vector<myobject>", (void*)&Vertex, "Vertex.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "HLT", (void*)&HLT);
R__insp.InspectMember("map<string,int>", (void*)&HLT, "HLT.", false);
R__insp.Inspect(R__cl, R__insp.GetParent(), "runNumber", &runNumber);
R__insp.Inspect(R__cl, R__insp.GetParent(), "eventNumber", &eventNumber);
R__insp.Inspect(R__cl, R__insp.GetParent(), "lumiNumber", &lumiNumber);
R__insp.Inspect(R__cl, R__insp.GetParent(), "HLT_DiElectron", &HLT_DiElectron);
R__insp.Inspect(R__cl, R__insp.GetParent(), "HLT_DiMuon", &HLT_DiMuon);
R__insp.Inspect(R__cl, R__insp.GetParent(), "PUInfo", &PUInfo);
R__insp.Inspect(R__cl, R__insp.GetParent(), "PUInfo_true", &PUInfo_true);
R__insp.Inspect(R__cl, R__insp.GetParent(), "PUInfo_Bunch0", &PUInfo_Bunch0);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RhoCorr", &RhoCorr);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RhoCenNeutral", &RhoCenNeutral);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RhoCenCharged", &RhoCenCharged);
R__insp.Inspect(R__cl, R__insp.GetParent(), "RhoCenNeutralTight", &RhoCenNeutralTight);
R__insp.Inspect(R__cl, R__insp.GetParent(), "Rho", &Rho);
R__insp.Inspect(R__cl, R__insp.GetParent(), "MET_sigMatrix_00", &MET_sigMatrix_00);
R__insp.Inspect(R__cl, R__insp.GetParent(), "MET_sigMatrix_01", &MET_sigMatrix_01);
R__insp.Inspect(R__cl, R__insp.GetParent(), "MET_sigMatrix_10", &MET_sigMatrix_10);
R__insp.Inspect(R__cl, R__insp.GetParent(), "MET_sigMatrix_11", &MET_sigMatrix_11);
R__insp.Inspect(R__cl, R__insp.GetParent(), "MVAMet_sigMatrix_00", &MVAMet_sigMatrix_00);
R__insp.Inspect(R__cl, R__insp.GetParent(), "MVAMet_sigMatrix_01", &MVAMet_sigMatrix_01);
R__insp.Inspect(R__cl, R__insp.GetParent(), "MVAMet_sigMatrix_10", &MVAMet_sigMatrix_10);
R__insp.Inspect(R__cl, R__insp.GetParent(), "MVAMet_sigMatrix_11", &MVAMet_sigMatrix_11);
TObject::ShowMembers(R__insp);
}
namespace ROOT {
// Wrappers around operator new
static void *new_myevent(void *p) {
return p ? new(p) ::myevent : new ::myevent;
}
static void *newArray_myevent(Long_t nElements, void *p) {
return p ? new(p) ::myevent[nElements] : new ::myevent[nElements];
}
// Wrapper around operator delete
static void delete_myevent(void *p) {
delete ((::myevent*)p);
}
static void deleteArray_myevent(void *p) {
delete [] ((::myevent*)p);
}
static void destruct_myevent(void *p) {
typedef ::myevent current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOT for class ::myevent
namespace ROOT {
void maplEstringcOintgR_ShowMembers(void *obj, TMemberInspector &R__insp);
static void maplEstringcOintgR_Dictionary();
static void *new_maplEstringcOintgR(void *p = 0);
static void *newArray_maplEstringcOintgR(Long_t size, void *p);
static void delete_maplEstringcOintgR(void *p);
static void deleteArray_maplEstringcOintgR(void *p);
static void destruct_maplEstringcOintgR(void *p);
// Function generating the singleton type initializer
static TGenericClassInfo *GenerateInitInstanceLocal(const map<string,int>*)
{
map<string,int> *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(map<string,int>),0);
static ::ROOT::TGenericClassInfo
instance("map<string,int>", -2, "map.dll", 0,
typeid(map<string,int>), DefineBehavior(ptr, ptr),
0, &maplEstringcOintgR_Dictionary, isa_proxy, 0,
sizeof(map<string,int>) );
instance.SetNew(&new_maplEstringcOintgR);
instance.SetNewArray(&newArray_maplEstringcOintgR);
instance.SetDelete(&delete_maplEstringcOintgR);
instance.SetDeleteArray(&deleteArray_maplEstringcOintgR);
instance.SetDestructor(&destruct_maplEstringcOintgR);
instance.AdoptCollectionProxyInfo(TCollectionProxyInfo::Generate(TCollectionProxyInfo::MapInsert< map<string,int> >()));
return &instance;
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const map<string,int>*)0x0); R__UseDummy(_R__UNIQUE_(Init));
// Dictionary for non-ClassDef classes
static void maplEstringcOintgR_Dictionary() {
::ROOT::GenerateInitInstanceLocal((const map<string,int>*)0x0)->GetClass();
}
} // end of namespace ROOT
namespace ROOT {
// Wrappers around operator new
static void *new_maplEstringcOintgR(void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) map<string,int> : new map<string,int>;
}
static void *newArray_maplEstringcOintgR(Long_t nElements, void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) map<string,int>[nElements] : new map<string,int>[nElements];
}
// Wrapper around operator delete
static void delete_maplEstringcOintgR(void *p) {
delete ((map<string,int>*)p);
}
static void deleteArray_maplEstringcOintgR(void *p) {
delete [] ((map<string,int>*)p);
}
static void destruct_maplEstringcOintgR(void *p) {
typedef map<string,int> current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOT for class map<string,int>
namespace ROOT {
void vectorlEmyGenobjectgR_ShowMembers(void *obj, TMemberInspector &R__insp);
static void vectorlEmyGenobjectgR_Dictionary();
static void *new_vectorlEmyGenobjectgR(void *p = 0);
static void *newArray_vectorlEmyGenobjectgR(Long_t size, void *p);
static void delete_vectorlEmyGenobjectgR(void *p);
static void deleteArray_vectorlEmyGenobjectgR(void *p);
static void destruct_vectorlEmyGenobjectgR(void *p);
// Function generating the singleton type initializer
static TGenericClassInfo *GenerateInitInstanceLocal(const vector<myGenobject>*)
{
vector<myGenobject> *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(vector<myGenobject>),0);
static ::ROOT::TGenericClassInfo
instance("vector<myGenobject>", -2, "prec_stl/vector", 49,
typeid(vector<myGenobject>), DefineBehavior(ptr, ptr),
0, &vectorlEmyGenobjectgR_Dictionary, isa_proxy, 0,
sizeof(vector<myGenobject>) );
instance.SetNew(&new_vectorlEmyGenobjectgR);
instance.SetNewArray(&newArray_vectorlEmyGenobjectgR);
instance.SetDelete(&delete_vectorlEmyGenobjectgR);
instance.SetDeleteArray(&deleteArray_vectorlEmyGenobjectgR);
instance.SetDestructor(&destruct_vectorlEmyGenobjectgR);
instance.AdoptCollectionProxyInfo(TCollectionProxyInfo::Generate(TCollectionProxyInfo::Pushback< vector<myGenobject> >()));
return &instance;
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const vector<myGenobject>*)0x0); R__UseDummy(_R__UNIQUE_(Init));
// Dictionary for non-ClassDef classes
static void vectorlEmyGenobjectgR_Dictionary() {
::ROOT::GenerateInitInstanceLocal((const vector<myGenobject>*)0x0)->GetClass();
}
} // end of namespace ROOT
namespace ROOT {
// Wrappers around operator new
static void *new_vectorlEmyGenobjectgR(void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) vector<myGenobject> : new vector<myGenobject>;
}
static void *newArray_vectorlEmyGenobjectgR(Long_t nElements, void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) vector<myGenobject>[nElements] : new vector<myGenobject>[nElements];
}
// Wrapper around operator delete
static void delete_vectorlEmyGenobjectgR(void *p) {
delete ((vector<myGenobject>*)p);
}
static void deleteArray_vectorlEmyGenobjectgR(void *p) {
delete [] ((vector<myGenobject>*)p);
}
static void destruct_vectorlEmyGenobjectgR(void *p) {
typedef vector<myGenobject> current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOT for class vector<myGenobject>
namespace ROOT {
void vectorlEmyobjectgR_ShowMembers(void *obj, TMemberInspector &R__insp);
static void vectorlEmyobjectgR_Dictionary();
static void *new_vectorlEmyobjectgR(void *p = 0);
static void *newArray_vectorlEmyobjectgR(Long_t size, void *p);
static void delete_vectorlEmyobjectgR(void *p);
static void deleteArray_vectorlEmyobjectgR(void *p);
static void destruct_vectorlEmyobjectgR(void *p);
// Function generating the singleton type initializer
static TGenericClassInfo *GenerateInitInstanceLocal(const vector<myobject>*)
{
vector<myobject> *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(vector<myobject>),0);
static ::ROOT::TGenericClassInfo
instance("vector<myobject>", -2, "prec_stl/vector", 49,
typeid(vector<myobject>), DefineBehavior(ptr, ptr),
0, &vectorlEmyobjectgR_Dictionary, isa_proxy, 0,
sizeof(vector<myobject>) );
instance.SetNew(&new_vectorlEmyobjectgR);
instance.SetNewArray(&newArray_vectorlEmyobjectgR);
instance.SetDelete(&delete_vectorlEmyobjectgR);
instance.SetDeleteArray(&deleteArray_vectorlEmyobjectgR);
instance.SetDestructor(&destruct_vectorlEmyobjectgR);
instance.AdoptCollectionProxyInfo(TCollectionProxyInfo::Generate(TCollectionProxyInfo::Pushback< vector<myobject> >()));
return &instance;
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const vector<myobject>*)0x0); R__UseDummy(_R__UNIQUE_(Init));
// Dictionary for non-ClassDef classes
static void vectorlEmyobjectgR_Dictionary() {
::ROOT::GenerateInitInstanceLocal((const vector<myobject>*)0x0)->GetClass();
}
} // end of namespace ROOT
namespace ROOT {
// Wrappers around operator new
static void *new_vectorlEmyobjectgR(void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) vector<myobject> : new vector<myobject>;
}
static void *newArray_vectorlEmyobjectgR(Long_t nElements, void *p) {
return p ? ::new((::ROOT::TOperatorNewHelper*)p) vector<myobject>[nElements] : new vector<myobject>[nElements];
}
// Wrapper around operator delete
static void delete_vectorlEmyobjectgR(void *p) {
delete ((vector<myobject>*)p);
}
static void deleteArray_vectorlEmyobjectgR(void *p) {
delete [] ((vector<myobject>*)p);
}
static void destruct_vectorlEmyobjectgR(void *p) {
typedef vector<myobject> current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOT for class vector<myobject>
/********************************************************
* eventdict.cc
* CAUTION: DON'T CHANGE THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED
* FROM HEADER FILES LISTED IN G__setup_cpp_environmentXXX().
* CHANGE THOSE HEADER FILES AND REGENERATE THIS FILE.
********************************************************/
#ifdef G__MEMTEST
#undef malloc
#undef free