Advertisement
Guest User

Untitled

a guest
Jun 21st, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. // Do NOT change. Changes will be lost next time file is generated
  2.  
  3. #define R__DICTIONARY_FILENAME event_dict
  4.  
  5. /*******************************************************************/
  6. #include <stddef.h>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <assert.h>
  11. #define G__DICTIONARY
  12. #include "RConfig.h"
  13. #include "TClass.h"
  14. #include "TDictAttributeMap.h"
  15. #include "TInterpreter.h"
  16. #include "TROOT.h"
  17. #include "TBuffer.h"
  18. #include "TMemberInspector.h"
  19. #include "TInterpreter.h"
  20. #include "TVirtualMutex.h"
  21. #include "TError.h"
  22.  
  23. #ifndef G__ROOT
  24. #define G__ROOT
  25. #endif
  26.  
  27. #include "RtypesImp.h"
  28. #include "TIsAProxy.h"
  29. #include "TFileMergeInfo.h"
  30. #include <algorithm>
  31. #include "TCollectionProxyInfo.h"
  32. /*******************************************************************/
  33.  
  34. #include "TDataMember.h"
  35.  
  36. // Since CINT ignores the std namespace, we need to do so in this file.
  37. namespace std {} using namespace std;
  38.  
  39. // Header files passed as explicit arguments
  40. #include "event.h"
  41.  
  42. // Header files passed via #pragma extra_include
  43.  
  44. namespace {
  45. void TriggerDictionaryInitialization_event_dict_Impl() {
  46. static const char* headers[] = {
  47. "event.h",
  48. 0
  49. };
  50. static const char* includePaths[] = {
  51. "/Applications/root_v6.11.02/include",
  52. "/Users/daq/Documents/SIS3316 Root/SIS3316 interface/SIS3316 interface/",
  53. 0
  54. };
  55. static const char* fwdDeclCode = R"DICTFWDDCLS(
  56. #line 1 "event_dict dictionary forward declarations' payload"
  57. #pragma clang diagnostic ignored "-Wkeyword-compat"
  58. #pragma clang diagnostic ignored "-Wignored-attributes"
  59. #pragma clang diagnostic ignored "-Wreturn-type-c-linkage"
  60. extern int __Cling_Autoloading_Map;
  61. )DICTFWDDCLS";
  62. static const char* payloadCode = R"DICTPAYLOAD(
  63. #line 1 "event_dict dictionary payload"
  64.  
  65. #ifndef G__VECTOR_HAS_CLASS_ITERATOR
  66. #define G__VECTOR_HAS_CLASS_ITERATOR 1
  67. #endif
  68.  
  69. #define _BACKWARD_BACKWARD_WARNING_H
  70. #include "event.h"
  71.  
  72. #undef _BACKWARD_BACKWARD_WARNING_H
  73. )DICTPAYLOAD";
  74. static const char* classesHeaders[]={
  75. nullptr};
  76.  
  77. static bool isInitialized = false;
  78. if (!isInitialized) {
  79. TROOT::RegisterModule("event_dict",
  80. headers, includePaths, payloadCode, fwdDeclCode,
  81. TriggerDictionaryInitialization_event_dict_Impl, {}, classesHeaders);
  82. isInitialized = true;
  83. }
  84. }
  85. static struct DictInit {
  86. DictInit() {
  87. TriggerDictionaryInitialization_event_dict_Impl();
  88. }
  89. } __TheDictionaryInitializer;
  90. }
  91. void TriggerDictionaryInitialization_event_dict() {
  92. TriggerDictionaryInitialization_event_dict_Impl();
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement