/[PAMELA software]/PamVMC_update/aux/spectra_generator/PrimaryInfoDict.cxx
ViewVC logotype

Contents of /PamVMC_update/aux/spectra_generator/PrimaryInfoDict.cxx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (download) (vendor branch)
Tue Oct 15 15:51:56 2013 UTC (11 years, 4 months ago) by formato
Branch: MAIN, rel
CVS Tags: reltag, HEAD
Changes since 1.1: +0 -0 lines
PamVMC update

1 //
2 // File generated by rootcint at Tue Oct 1 10:46:42 2013
3
4 // Do NOT change. Changes will be lost next time file is generated
5 //
6
7 #define R__DICTIONARY_FILENAME PrimaryInfoDict
8 #include "RConfig.h" //rootcint 4834
9 #if !defined(R__ACCESS_IN_SYMBOL)
10 //Break the privacy of classes -- Disabled for the moment
11 #define private public
12 #define protected public
13 #endif
14
15 // Since CINT ignores the std namespace, we need to do so in this file.
16 namespace std {} using namespace std;
17 #include "PrimaryInfoDict.h"
18
19 #include "TClass.h"
20 #include "TBuffer.h"
21 #include "TMemberInspector.h"
22 #include "TError.h"
23
24 #ifndef G__ROOT
25 #define G__ROOT
26 #endif
27
28 #include "RtypesImp.h"
29 #include "TIsAProxy.h"
30 #include "TFileMergeInfo.h"
31
32 // START OF SHADOWS
33
34 namespace ROOT {
35 namespace Shadow {
36 } // of namespace Shadow
37 } // of namespace ROOT
38 // END OF SHADOWS
39
40 namespace ROOT {
41 void PrimaryInfo_ShowMembers(void *obj, TMemberInspector &R__insp);
42 static void *new_PrimaryInfo(void *p = 0);
43 static void *newArray_PrimaryInfo(Long_t size, void *p);
44 static void delete_PrimaryInfo(void *p);
45 static void deleteArray_PrimaryInfo(void *p);
46 static void destruct_PrimaryInfo(void *p);
47
48 // Function generating the singleton type initializer
49 static TGenericClassInfo *GenerateInitInstanceLocal(const ::PrimaryInfo*)
50 {
51 ::PrimaryInfo *ptr = 0;
52 static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::PrimaryInfo >(0);
53 static ::ROOT::TGenericClassInfo
54 instance("PrimaryInfo", ::PrimaryInfo::Class_Version(), "./PrimaryInfo.h", 5,
55 typeid(::PrimaryInfo), DefineBehavior(ptr, ptr),
56 &::PrimaryInfo::Dictionary, isa_proxy, 4,
57 sizeof(::PrimaryInfo) );
58 instance.SetNew(&new_PrimaryInfo);
59 instance.SetNewArray(&newArray_PrimaryInfo);
60 instance.SetDelete(&delete_PrimaryInfo);
61 instance.SetDeleteArray(&deleteArray_PrimaryInfo);
62 instance.SetDestructor(&destruct_PrimaryInfo);
63 return &instance;
64 }
65 TGenericClassInfo *GenerateInitInstance(const ::PrimaryInfo*)
66 {
67 return GenerateInitInstanceLocal((::PrimaryInfo*)0);
68 }
69 // Static variable to force the class initialization
70 static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::PrimaryInfo*)0x0); R__UseDummy(_R__UNIQUE_(Init));
71 } // end of namespace ROOT
72
73 //______________________________________________________________________________
74 TClass *PrimaryInfo::fgIsA = 0; // static to hold class pointer
75
76 //______________________________________________________________________________
77 const char *PrimaryInfo::Class_Name()
78 {
79 return "PrimaryInfo";
80 }
81
82 //______________________________________________________________________________
83 const char *PrimaryInfo::ImplFileName()
84 {
85 return ::ROOT::GenerateInitInstanceLocal((const ::PrimaryInfo*)0x0)->GetImplFileName();
86 }
87
88 //______________________________________________________________________________
89 int PrimaryInfo::ImplFileLine()
90 {
91 return ::ROOT::GenerateInitInstanceLocal((const ::PrimaryInfo*)0x0)->GetImplFileLine();
92 }
93
94 //______________________________________________________________________________
95 void PrimaryInfo::Dictionary()
96 {
97 fgIsA = ::ROOT::GenerateInitInstanceLocal((const ::PrimaryInfo*)0x0)->GetClass();
98 }
99
100 //______________________________________________________________________________
101 TClass *PrimaryInfo::Class()
102 {
103 if (!fgIsA) fgIsA = ::ROOT::GenerateInitInstanceLocal((const ::PrimaryInfo*)0x0)->GetClass();
104 return fgIsA;
105 }
106
107 //______________________________________________________________________________
108 void PrimaryInfo::Streamer(TBuffer &R__b)
109 {
110 // Stream an object of class PrimaryInfo.
111
112 if (R__b.IsReading()) {
113 R__b.ReadClassBuffer(PrimaryInfo::Class(),this);
114 } else {
115 R__b.WriteClassBuffer(PrimaryInfo::Class(),this);
116 }
117 }
118
119 //______________________________________________________________________________
120 void PrimaryInfo::ShowMembers(TMemberInspector &R__insp)
121 {
122 // Inspect the data members of an object of class PrimaryInfo.
123 TClass *R__cl = ::PrimaryInfo::IsA();
124 if (R__cl || R__insp.IsA()) { }
125 R__insp.Inspect(R__cl, R__insp.GetParent(), "X0", &X0);
126 R__insp.Inspect(R__cl, R__insp.GetParent(), "Y0", &Y0);
127 R__insp.Inspect(R__cl, R__insp.GetParent(), "Z0", &Z0);
128 R__insp.Inspect(R__cl, R__insp.GetParent(), "P0", &P0);
129 R__insp.Inspect(R__cl, R__insp.GetParent(), "Theta", &Theta);
130 R__insp.Inspect(R__cl, R__insp.GetParent(), "Phi", &Phi);
131 R__insp.Inspect(R__cl, R__insp.GetParent(), "PDG", &PDG);
132 TObject::ShowMembers(R__insp);
133 }
134
135 namespace ROOT {
136 // Wrappers around operator new
137 static void *new_PrimaryInfo(void *p) {
138 return p ? new(p) ::PrimaryInfo : new ::PrimaryInfo;
139 }
140 static void *newArray_PrimaryInfo(Long_t nElements, void *p) {
141 return p ? new(p) ::PrimaryInfo[nElements] : new ::PrimaryInfo[nElements];
142 }
143 // Wrapper around operator delete
144 static void delete_PrimaryInfo(void *p) {
145 delete ((::PrimaryInfo*)p);
146 }
147 static void deleteArray_PrimaryInfo(void *p) {
148 delete [] ((::PrimaryInfo*)p);
149 }
150 static void destruct_PrimaryInfo(void *p) {
151 typedef ::PrimaryInfo current_t;
152 ((current_t*)p)->~current_t();
153 }
154 } // end of namespace ROOT for class ::PrimaryInfo
155
156 /********************************************************
157 * PrimaryInfoDict.cxx
158 * CAUTION: DON'T CHANGE THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED
159 * FROM HEADER FILES LISTED IN G__setup_cpp_environmentXXX().
160 * CHANGE THOSE HEADER FILES AND REGENERATE THIS FILE.
161 ********************************************************/
162
163 #ifdef G__MEMTEST
164 #undef malloc
165 #undef free
166 #endif
167
168 #if defined(__GNUC__) && __GNUC__ >= 4 && ((__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ >= 1) || (__GNUC_MINOR__ >= 3))
169 #pragma GCC diagnostic ignored "-Wstrict-aliasing"
170 #endif
171
172 extern "C" void G__cpp_reset_tagtablePrimaryInfoDict();
173
174 extern "C" void G__set_cpp_environmentPrimaryInfoDict() {
175 G__add_compiledheader("TObject.h");
176 G__add_compiledheader("TMemberInspector.h");
177 G__add_compiledheader("PrimaryInfo.h");
178 G__cpp_reset_tagtablePrimaryInfoDict();
179 }
180 #include <new>
181 extern "C" int G__cpp_dllrevPrimaryInfoDict() { return(30051515); }
182
183 /*********************************************************
184 * Member function Interface Method
185 *********************************************************/
186
187 /* PrimaryInfo */
188 static int G__PrimaryInfoDict_168_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
189 {
190 PrimaryInfo* p = NULL;
191 char* gvp = (char*) G__getgvp();
192 int n = G__getaryconstruct();
193 if (n) {
194 if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
195 p = new PrimaryInfo[n];
196 } else {
197 p = new((void*) gvp) PrimaryInfo[n];
198 }
199 } else {
200 if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
201 p = new PrimaryInfo;
202 } else {
203 p = new((void*) gvp) PrimaryInfo;
204 }
205 }
206 result7->obj.i = (long) p;
207 result7->ref = (long) p;
208 G__set_tagnum(result7,G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo));
209 return(1 || funcname || hash || result7 || libp) ;
210 }
211
212 static int G__PrimaryInfoDict_168_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
213 {
214 PrimaryInfo* p = NULL;
215 char* gvp = (char*) G__getgvp();
216 //m: 7
217 if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
218 p = new PrimaryInfo(
219 (Double_t) G__double(libp->para[0]), (Double_t) G__double(libp->para[1])
220 , (Double_t) G__double(libp->para[2]), (Double_t) G__double(libp->para[3])
221 , (Double_t) G__double(libp->para[4]), (Double_t) G__double(libp->para[5])
222 , (Int_t) G__int(libp->para[6]));
223 } else {
224 p = new((void*) gvp) PrimaryInfo(
225 (Double_t) G__double(libp->para[0]), (Double_t) G__double(libp->para[1])
226 , (Double_t) G__double(libp->para[2]), (Double_t) G__double(libp->para[3])
227 , (Double_t) G__double(libp->para[4]), (Double_t) G__double(libp->para[5])
228 , (Int_t) G__int(libp->para[6]));
229 }
230 result7->obj.i = (long) p;
231 result7->ref = (long) p;
232 G__set_tagnum(result7,G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo));
233 return(1 || funcname || hash || result7 || libp) ;
234 }
235
236 static int G__PrimaryInfoDict_168_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
237 {
238 G__letint(result7, 85, (long) PrimaryInfo::Class());
239 return(1 || funcname || hash || result7 || libp) ;
240 }
241
242 static int G__PrimaryInfoDict_168_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
243 {
244 G__letint(result7, 67, (long) PrimaryInfo::Class_Name());
245 return(1 || funcname || hash || result7 || libp) ;
246 }
247
248 static int G__PrimaryInfoDict_168_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
249 {
250 G__letint(result7, 115, (long) PrimaryInfo::Class_Version());
251 return(1 || funcname || hash || result7 || libp) ;
252 }
253
254 static int G__PrimaryInfoDict_168_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
255 {
256 PrimaryInfo::Dictionary();
257 G__setnull(result7);
258 return(1 || funcname || hash || result7 || libp) ;
259 }
260
261 static int G__PrimaryInfoDict_168_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
262 {
263 ((PrimaryInfo*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref);
264 G__setnull(result7);
265 return(1 || funcname || hash || result7 || libp) ;
266 }
267
268 static int G__PrimaryInfoDict_168_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
269 {
270 G__letint(result7, 67, (long) PrimaryInfo::DeclFileName());
271 return(1 || funcname || hash || result7 || libp) ;
272 }
273
274 static int G__PrimaryInfoDict_168_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
275 {
276 G__letint(result7, 105, (long) PrimaryInfo::ImplFileLine());
277 return(1 || funcname || hash || result7 || libp) ;
278 }
279
280 static int G__PrimaryInfoDict_168_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
281 {
282 G__letint(result7, 67, (long) PrimaryInfo::ImplFileName());
283 return(1 || funcname || hash || result7 || libp) ;
284 }
285
286 static int G__PrimaryInfoDict_168_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
287 {
288 G__letint(result7, 105, (long) PrimaryInfo::DeclFileLine());
289 return(1 || funcname || hash || result7 || libp) ;
290 }
291
292 // automatic copy constructor
293 static int G__PrimaryInfoDict_168_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
294
295 {
296 PrimaryInfo* p;
297 void* tmp = (void*) G__int(libp->para[0]);
298 p = new PrimaryInfo(*(PrimaryInfo*) tmp);
299 result7->obj.i = (long) p;
300 result7->ref = (long) p;
301 G__set_tagnum(result7,G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo));
302 return(1 || funcname || hash || result7 || libp) ;
303 }
304
305 // automatic destructor
306 typedef PrimaryInfo G__TPrimaryInfo;
307 static int G__PrimaryInfoDict_168_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
308 {
309 char* gvp = (char*) G__getgvp();
310 long soff = G__getstructoffset();
311 int n = G__getaryconstruct();
312 //
313 //has_a_delete: 1
314 //has_own_delete1arg: 0
315 //has_own_delete2arg: 0
316 //
317 if (!soff) {
318 return(1);
319 }
320 if (n) {
321 if (gvp == (char*)G__PVOID) {
322 delete[] (PrimaryInfo*) soff;
323 } else {
324 G__setgvp((long) G__PVOID);
325 for (int i = n - 1; i >= 0; --i) {
326 ((PrimaryInfo*) (soff+(sizeof(PrimaryInfo)*i)))->~G__TPrimaryInfo();
327 }
328 G__setgvp((long)gvp);
329 }
330 } else {
331 if (gvp == (char*)G__PVOID) {
332 delete (PrimaryInfo*) soff;
333 } else {
334 G__setgvp((long) G__PVOID);
335 ((PrimaryInfo*) (soff))->~G__TPrimaryInfo();
336 G__setgvp((long)gvp);
337 }
338 }
339 G__setnull(result7);
340 return(1 || funcname || hash || result7 || libp) ;
341 }
342
343 // automatic assignment operator
344 static int G__PrimaryInfoDict_168_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
345 {
346 PrimaryInfo* dest = (PrimaryInfo*) G__getstructoffset();
347 *dest = *(PrimaryInfo*) libp->para[0].ref;
348 const PrimaryInfo& obj = *dest;
349 result7->ref = (long) (&obj);
350 result7->obj.i = (long) (&obj);
351 return(1 || funcname || hash || result7 || libp) ;
352 }
353
354
355 /* Setting up global function */
356
357 /*********************************************************
358 * Member function Stub
359 *********************************************************/
360
361 /* PrimaryInfo */
362
363 /*********************************************************
364 * Global function Stub
365 *********************************************************/
366
367 /*********************************************************
368 * Get size of pointer to member function
369 *********************************************************/
370 class G__Sizep2memfuncPrimaryInfoDict {
371 public:
372 G__Sizep2memfuncPrimaryInfoDict(): p(&G__Sizep2memfuncPrimaryInfoDict::sizep2memfunc) {}
373 size_t sizep2memfunc() { return(sizeof(p)); }
374 private:
375 size_t (G__Sizep2memfuncPrimaryInfoDict::*p)();
376 };
377
378 size_t G__get_sizep2memfuncPrimaryInfoDict()
379 {
380 G__Sizep2memfuncPrimaryInfoDict a;
381 G__setsizep2memfunc((int)a.sizep2memfunc());
382 return((size_t)a.sizep2memfunc());
383 }
384
385
386 /*********************************************************
387 * virtual base class offset calculation interface
388 *********************************************************/
389
390 /* Setting up class inheritance */
391
392 /*********************************************************
393 * Inheritance information setup/
394 *********************************************************/
395 extern "C" void G__cpp_setup_inheritancePrimaryInfoDict() {
396
397 /* Setting up class inheritance */
398 if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo))) {
399 PrimaryInfo *G__Lderived;
400 G__Lderived=(PrimaryInfo*)0x1000;
401 {
402 TObject *G__Lpbase=(TObject*)G__Lderived;
403 G__inheritance_setup(G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo),G__get_linked_tagnum(&G__PrimaryInfoDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1);
404 }
405 }
406 }
407
408 /*********************************************************
409 * typedef information setup/
410 *********************************************************/
411 extern "C" void G__cpp_setup_typetablePrimaryInfoDict() {
412
413 /* Setting up typedef entry */
414 G__search_typename2("Int_t",105,-1,0,-1);
415 G__setnewtype(-1,"Signed integer 4 bytes (int)",0);
416 G__search_typename2("Double_t",100,-1,0,-1);
417 G__setnewtype(-1,"Double 8 bytes",0);
418 G__search_typename2("Version_t",115,-1,0,-1);
419 G__setnewtype(-1,"Class version identifier (short)",0);
420 G__search_typename2("vector<ROOT::TSchemaHelper>",117,G__get_linked_tagnum(&G__PrimaryInfoDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR),0,-1);
421 G__setnewtype(-1,NULL,0);
422 G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__PrimaryInfoDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__PrimaryInfoDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR));
423 G__setnewtype(-1,NULL,0);
424 G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__PrimaryInfoDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__PrimaryInfoDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR));
425 G__setnewtype(-1,NULL,0);
426 G__search_typename2("vector<TVirtualArray*>",117,G__get_linked_tagnum(&G__PrimaryInfoDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR),0,-1);
427 G__setnewtype(-1,NULL,0);
428 G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__PrimaryInfoDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__PrimaryInfoDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR));
429 G__setnewtype(-1,NULL,0);
430 G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__PrimaryInfoDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__PrimaryInfoDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR));
431 G__setnewtype(-1,NULL,0);
432 }
433
434 /*********************************************************
435 * Data Member information setup/
436 *********************************************************/
437
438 /* Setting up class,struct,union tag member variable */
439
440 /* PrimaryInfo */
441 static void G__setup_memvarPrimaryInfo(void) {
442 G__tag_memvar_setup(G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo));
443 { PrimaryInfo *p; p=(PrimaryInfo*)0x1000; if (p) { }
444 G__memvar_setup((void*)((long)(&p->X0)-(long)(p)),100,0,0,-1,G__defined_typename("Double_t"),-1,1,"X0=",0,(char*)NULL);
445 G__memvar_setup((void*)((long)(&p->Y0)-(long)(p)),100,0,0,-1,G__defined_typename("Double_t"),-1,1,"Y0=",0,(char*)NULL);
446 G__memvar_setup((void*)((long)(&p->Z0)-(long)(p)),100,0,0,-1,G__defined_typename("Double_t"),-1,1,"Z0=",0,(char*)NULL);
447 G__memvar_setup((void*)((long)(&p->P0)-(long)(p)),100,0,0,-1,G__defined_typename("Double_t"),-1,1,"P0=",0,(char*)NULL);
448 G__memvar_setup((void*)((long)(&p->Theta)-(long)(p)),100,0,0,-1,G__defined_typename("Double_t"),-1,1,"Theta=",0,(char*)NULL);
449 G__memvar_setup((void*)((long)(&p->Phi)-(long)(p)),100,0,0,-1,G__defined_typename("Double_t"),-1,1,"Phi=",0,(char*)NULL);
450 G__memvar_setup((void*)((long)(&p->PDG)-(long)(p)),105,0,0,-1,G__defined_typename("Int_t"),-1,1,"PDG=",0,(char*)NULL);
451 G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__PrimaryInfoDictLN_TClass),-1,-2,4,"fgIsA=",0,(char*)NULL);
452 }
453 G__tag_memvar_reset();
454 }
455
456 extern "C" void G__cpp_setup_memvarPrimaryInfoDict() {
457 }
458 /***********************************************************
459 ************************************************************
460 ************************************************************
461 ************************************************************
462 ************************************************************
463 ************************************************************
464 ************************************************************
465 ***********************************************************/
466
467 /*********************************************************
468 * Member function information setup for each class
469 *********************************************************/
470 static void G__setup_memfuncPrimaryInfo(void) {
471 /* PrimaryInfo */
472 G__tag_memfunc_setup(G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo));
473 G__memfunc_setup("PrimaryInfo",1136,G__PrimaryInfoDict_168_0_1, 105, G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
474 G__memfunc_setup("PrimaryInfo",1136,G__PrimaryInfoDict_168_0_2, 105, G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo), -1, 0, 7, 1, 1, 0,
475 "d - 'Double_t' 0 - x0 d - 'Double_t' 0 - y0 "
476 "d - 'Double_t' 0 - z0 d - 'Double_t' 0 - p0 "
477 "d - 'Double_t' 0 - theta d - 'Double_t' 0 - phi "
478 "i - 'Int_t' 0 - pdg", (char*)NULL, (void*) NULL, 0);
479 G__memfunc_setup("Class",502,G__PrimaryInfoDict_168_0_3, 85, G__get_linked_tagnum(&G__PrimaryInfoDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&PrimaryInfo::Class) ), 0);
480 G__memfunc_setup("Class_Name",982,G__PrimaryInfoDict_168_0_4, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&PrimaryInfo::Class_Name) ), 0);
481 G__memfunc_setup("Class_Version",1339,G__PrimaryInfoDict_168_0_5, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&PrimaryInfo::Class_Version) ), 0);
482 G__memfunc_setup("Dictionary",1046,G__PrimaryInfoDict_168_0_6, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&PrimaryInfo::Dictionary) ), 0);
483 G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__PrimaryInfoDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1);
484 G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1);
485 G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1);
486 G__memfunc_setup("StreamerNVirtual",1656,G__PrimaryInfoDict_168_0_10, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0);
487 G__memfunc_setup("DeclFileName",1145,G__PrimaryInfoDict_168_0_11, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&PrimaryInfo::DeclFileName) ), 0);
488 G__memfunc_setup("ImplFileLine",1178,G__PrimaryInfoDict_168_0_12, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&PrimaryInfo::ImplFileLine) ), 0);
489 G__memfunc_setup("ImplFileName",1171,G__PrimaryInfoDict_168_0_13, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&PrimaryInfo::ImplFileName) ), 0);
490 G__memfunc_setup("DeclFileLine",1152,G__PrimaryInfoDict_168_0_14, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&PrimaryInfo::DeclFileLine) ), 0);
491 // automatic copy constructor
492 G__memfunc_setup("PrimaryInfo", 1136, G__PrimaryInfoDict_168_0_15, (int) ('i'), G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo), -1, 0, 1, 1, 1, 0, "u 'PrimaryInfo' - 11 - -", (char*) NULL, (void*) NULL, 0);
493 // automatic destructor
494 G__memfunc_setup("~PrimaryInfo", 1262, G__PrimaryInfoDict_168_0_16, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 0);
495 // automatic assignment operator
496 G__memfunc_setup("operator=", 937, G__PrimaryInfoDict_168_0_17, (int) ('u'), G__get_linked_tagnum(&G__PrimaryInfoDictLN_PrimaryInfo), -1, 1, 1, 1, 1, 0, "u 'PrimaryInfo' - 11 - -", (char*) NULL, (void*) NULL, 0);
497 G__tag_memfunc_reset();
498 }
499
500
501 /*********************************************************
502 * Member function information setup
503 *********************************************************/
504 extern "C" void G__cpp_setup_memfuncPrimaryInfoDict() {
505 }
506
507 /*********************************************************
508 * Global variable information setup for each class
509 *********************************************************/
510 static void G__cpp_setup_global0() {
511
512 /* Setting up global variables */
513 G__resetplocal();
514
515 }
516
517 static void G__cpp_setup_global1() {
518
519 G__resetglobalenv();
520 }
521 extern "C" void G__cpp_setup_globalPrimaryInfoDict() {
522 G__cpp_setup_global0();
523 G__cpp_setup_global1();
524 }
525
526 /*********************************************************
527 * Global function information setup for each class
528 *********************************************************/
529 static void G__cpp_setup_func0() {
530 G__lastifuncposition();
531
532 }
533
534 static void G__cpp_setup_func1() {
535 }
536
537 static void G__cpp_setup_func2() {
538 }
539
540 static void G__cpp_setup_func3() {
541 }
542
543 static void G__cpp_setup_func4() {
544 }
545
546 static void G__cpp_setup_func5() {
547 }
548
549 static void G__cpp_setup_func6() {
550 }
551
552 static void G__cpp_setup_func7() {
553 }
554
555 static void G__cpp_setup_func8() {
556 }
557
558 static void G__cpp_setup_func9() {
559 }
560
561 static void G__cpp_setup_func10() {
562 }
563
564 static void G__cpp_setup_func11() {
565 }
566
567 static void G__cpp_setup_func12() {
568
569 G__resetifuncposition();
570 }
571
572 extern "C" void G__cpp_setup_funcPrimaryInfoDict() {
573 G__cpp_setup_func0();
574 G__cpp_setup_func1();
575 G__cpp_setup_func2();
576 G__cpp_setup_func3();
577 G__cpp_setup_func4();
578 G__cpp_setup_func5();
579 G__cpp_setup_func6();
580 G__cpp_setup_func7();
581 G__cpp_setup_func8();
582 G__cpp_setup_func9();
583 G__cpp_setup_func10();
584 G__cpp_setup_func11();
585 G__cpp_setup_func12();
586 }
587
588 /*********************************************************
589 * Class,struct,union,enum tag information setup
590 *********************************************************/
591 /* Setup class/struct taginfo */
592 G__linked_taginfo G__PrimaryInfoDictLN_TClass = { "TClass" , 99 , -1 };
593 G__linked_taginfo G__PrimaryInfoDictLN_TBuffer = { "TBuffer" , 99 , -1 };
594 G__linked_taginfo G__PrimaryInfoDictLN_TMemberInspector = { "TMemberInspector" , 99 , -1 };
595 G__linked_taginfo G__PrimaryInfoDictLN_TObject = { "TObject" , 99 , -1 };
596 G__linked_taginfo G__PrimaryInfoDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR = { "vector<ROOT::TSchemaHelper,allocator<ROOT::TSchemaHelper> >" , 99 , -1 };
597 G__linked_taginfo G__PrimaryInfoDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR = { "reverse_iterator<vector<ROOT::TSchemaHelper,allocator<ROOT::TSchemaHelper> >::iterator>" , 99 , -1 };
598 G__linked_taginfo G__PrimaryInfoDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR = { "vector<TVirtualArray*,allocator<TVirtualArray*> >" , 99 , -1 };
599 G__linked_taginfo G__PrimaryInfoDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<TVirtualArray*,allocator<TVirtualArray*> >::iterator>" , 99 , -1 };
600 G__linked_taginfo G__PrimaryInfoDictLN_PrimaryInfo = { "PrimaryInfo" , 115 , -1 };
601
602 /* Reset class/struct taginfo */
603 extern "C" void G__cpp_reset_tagtablePrimaryInfoDict() {
604 G__PrimaryInfoDictLN_TClass.tagnum = -1 ;
605 G__PrimaryInfoDictLN_TBuffer.tagnum = -1 ;
606 G__PrimaryInfoDictLN_TMemberInspector.tagnum = -1 ;
607 G__PrimaryInfoDictLN_TObject.tagnum = -1 ;
608 G__PrimaryInfoDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR.tagnum = -1 ;
609 G__PrimaryInfoDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR.tagnum = -1 ;
610 G__PrimaryInfoDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR.tagnum = -1 ;
611 G__PrimaryInfoDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR.tagnum = -1 ;
612 G__PrimaryInfoDictLN_PrimaryInfo.tagnum = -1 ;
613 }
614
615
616 extern "C" void G__cpp_setup_tagtablePrimaryInfoDict() {
617
618 /* Setting up class,struct,union tag entry */
619 G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_TClass);
620 G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_TBuffer);
621 G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_TMemberInspector);
622 G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_TObject);
623 G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR);
624 G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR);
625 G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR);
626 G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR);
627 G__tagtable_setup(G__get_linked_tagnum_fwd(&G__PrimaryInfoDictLN_PrimaryInfo),sizeof(PrimaryInfo),-1,323840,(char*)NULL,G__setup_memvarPrimaryInfo,G__setup_memfuncPrimaryInfo);
628 }
629 extern "C" void G__cpp_setupPrimaryInfoDict(void) {
630 G__check_setup_version(30051515,"G__cpp_setupPrimaryInfoDict()");
631 G__set_cpp_environmentPrimaryInfoDict();
632 G__cpp_setup_tagtablePrimaryInfoDict();
633
634 G__cpp_setup_inheritancePrimaryInfoDict();
635
636 G__cpp_setup_typetablePrimaryInfoDict();
637
638 G__cpp_setup_memvarPrimaryInfoDict();
639
640 G__cpp_setup_memfuncPrimaryInfoDict();
641 G__cpp_setup_globalPrimaryInfoDict();
642 G__cpp_setup_funcPrimaryInfoDict();
643
644 if(0==G__getsizep2memfunc()) G__get_sizep2memfuncPrimaryInfoDict();
645 return;
646 }
647 class G__cpp_setup_initPrimaryInfoDict {
648 public:
649 G__cpp_setup_initPrimaryInfoDict() { G__add_setup_func("PrimaryInfoDict",(G__incsetup)(&G__cpp_setupPrimaryInfoDict)); G__call_setup_funcs(); }
650 ~G__cpp_setup_initPrimaryInfoDict() { G__remove_setup_func("PrimaryInfoDict"); }
651 };
652 G__cpp_setup_initPrimaryInfoDict G__cpp_setup_initializerPrimaryInfoDict;
653

  ViewVC Help
Powered by ViewVC 1.1.23