ncrystal-core 4.0.0__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. _ncrystal_core/__init__.py +1 -0
  2. _ncrystal_core/data/bin/ncrystal-config.exe +0 -0
  3. _ncrystal_core/data/include/NCrystal/NCPluginBoilerplate.hh +124 -0
  4. _ncrystal_core/data/include/NCrystal/NCRNG.hh +30 -0
  5. _ncrystal_core/data/include/NCrystal/NCrystal.hh +119 -0
  6. _ncrystal_core/data/include/NCrystal/cinterface/ncrystal.h +1321 -0
  7. _ncrystal_core/data/include/NCrystal/core/NCDefs.hh +1490 -0
  8. _ncrystal_core/data/include/NCrystal/core/NCException.hh +183 -0
  9. _ncrystal_core/data/include/NCrystal/core/NCFmt.hh +213 -0
  10. _ncrystal_core/data/include/NCrystal/core/NCImmutBuf.hh +341 -0
  11. _ncrystal_core/data/include/NCrystal/core/NCMem.hh +529 -0
  12. _ncrystal_core/data/include/NCrystal/core/NCSmallVector.hh +1033 -0
  13. _ncrystal_core/data/include/NCrystal/core/NCTypes.hh +1026 -0
  14. _ncrystal_core/data/include/NCrystal/core/NCVariant.hh +320 -0
  15. _ncrystal_core/data/include/NCrystal/dump/NCDump.hh +55 -0
  16. _ncrystal_core/data/include/NCrystal/factories/NCDataSources.hh +182 -0
  17. _ncrystal_core/data/include/NCrystal/factories/NCFact.hh +74 -0
  18. _ncrystal_core/data/include/NCrystal/factories/NCFactImpl.hh +243 -0
  19. _ncrystal_core/data/include/NCrystal/factories/NCFactRequests.hh +315 -0
  20. _ncrystal_core/data/include/NCrystal/factories/NCFactRequestsImpl.hh +170 -0
  21. _ncrystal_core/data/include/NCrystal/factories/NCFactTypes.hh +234 -0
  22. _ncrystal_core/data/include/NCrystal/factories/NCMatCfg.hh +451 -0
  23. _ncrystal_core/data/include/NCrystal/interfaces/NCAtomData.hh +278 -0
  24. _ncrystal_core/data/include/NCrystal/interfaces/NCInfo.hh +628 -0
  25. _ncrystal_core/data/include/NCrystal/interfaces/NCInfoTypes.hh +380 -0
  26. _ncrystal_core/data/include/NCrystal/interfaces/NCProc.hh +184 -0
  27. _ncrystal_core/data/include/NCrystal/interfaces/NCProcImpl.hh +498 -0
  28. _ncrystal_core/data/include/NCrystal/interfaces/NCRNG.hh +200 -0
  29. _ncrystal_core/data/include/NCrystal/interfaces/NCSABData.hh +98 -0
  30. _ncrystal_core/data/include/NCrystal/interfaces/NCSCOrientation.hh +151 -0
  31. _ncrystal_core/data/include/NCrystal/interfaces/NCVersion.hh +64 -0
  32. _ncrystal_core/data/include/NCrystal/internal/absoov/NCAbsOOV.hh +63 -0
  33. _ncrystal_core/data/include/NCrystal/internal/atomdb/NCAtomDB.hh +58 -0
  34. _ncrystal_core/data/include/NCrystal/internal/atomdb/NCAtomDBExtender.hh +87 -0
  35. _ncrystal_core/data/include/NCrystal/internal/bkgdextcurve/NCBkgdExtCurve.hh +51 -0
  36. _ncrystal_core/data/include/NCrystal/internal/cfgutils/NCCfgManip.hh +481 -0
  37. _ncrystal_core/data/include/NCrystal/internal/cfgutils/NCCfgTypes.hh +775 -0
  38. _ncrystal_core/data/include/NCrystal/internal/cfgutils/NCCfgVars.hh +771 -0
  39. _ncrystal_core/data/include/NCrystal/internal/dyninfoutils/NCDynInfoUtils.hh +69 -0
  40. _ncrystal_core/data/include/NCrystal/internal/elincscatter/NCElIncScatter.hh +98 -0
  41. _ncrystal_core/data/include/NCrystal/internal/extd_utils/NCABIUtils.hh +137 -0
  42. _ncrystal_core/data/include/NCrystal/internal/extd_utils/NCFillHKL.hh +75 -0
  43. _ncrystal_core/data/include/NCrystal/internal/extd_utils/NCLCRefModels.hh +80 -0
  44. _ncrystal_core/data/include/NCrystal/internal/extd_utils/NCLCUtils.hh +284 -0
  45. _ncrystal_core/data/include/NCrystal/internal/extd_utils/NCOrientUtils.hh +49 -0
  46. _ncrystal_core/data/include/NCrystal/internal/extd_utils/NCPlaneProvider.hh +150 -0
  47. _ncrystal_core/data/include/NCrystal/internal/extd_utils/NCProcCompBldr.hh +65 -0
  48. _ncrystal_core/data/include/NCrystal/internal/extd_utils/NCSANSUtils.hh +168 -0
  49. _ncrystal_core/data/include/NCrystal/internal/fact_utils/NCFactoryJobs.hh +86 -0
  50. _ncrystal_core/data/include/NCrystal/internal/fact_utils/NCFactoryUtils.hh +327 -0
  51. _ncrystal_core/data/include/NCrystal/internal/freegas/NCFreeGas.hh +62 -0
  52. _ncrystal_core/data/include/NCrystal/internal/gasmix/NCGasMixUtils.hh +101 -0
  53. _ncrystal_core/data/include/NCrystal/internal/infobld/NCInfoBuilder.hh +121 -0
  54. _ncrystal_core/data/include/NCrystal/internal/lcbragg/NCLCBragg.hh +78 -0
  55. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_Basket.hh +172 -0
  56. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_BasketMgr.hh +359 -0
  57. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_BasketSrcFiller.hh +218 -0
  58. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_Defs.hh +63 -0
  59. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_Geom.hh +63 -0
  60. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_RunSim.hh +69 -0
  61. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_SimMgrMT.hh +273 -0
  62. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_Source.hh +71 -0
  63. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_StdEngine.hh +154 -0
  64. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_StdTallies.hh +203 -0
  65. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_Tally.hh +90 -0
  66. _ncrystal_core/data/include/NCrystal/internal/minimc/NCMMC_Utils.hh +61 -0
  67. _ncrystal_core/data/include/NCrystal/internal/ncmat/NCLoadNCMAT.hh +90 -0
  68. _ncrystal_core/data/include/NCrystal/internal/ncmat/NCNCMATData.hh +162 -0
  69. _ncrystal_core/data/include/NCrystal/internal/ncmat/NCParseNCMAT.hh +46 -0
  70. _ncrystal_core/data/include/NCrystal/internal/phys_utils/NCDebyeMSD.hh +48 -0
  71. _ncrystal_core/data/include/NCrystal/internal/phys_utils/NCElIncXS.hh +135 -0
  72. _ncrystal_core/data/include/NCrystal/internal/phys_utils/NCEqRefl.hh +175 -0
  73. _ncrystal_core/data/include/NCrystal/internal/phys_utils/NCFreeGasUtils.hh +160 -0
  74. _ncrystal_core/data/include/NCrystal/internal/phys_utils/NCGaussMos.hh +217 -0
  75. _ncrystal_core/data/include/NCrystal/internal/phys_utils/NCGaussOnSphere.hh +215 -0
  76. _ncrystal_core/data/include/NCrystal/internal/phys_utils/NCIofQHelper.hh +108 -0
  77. _ncrystal_core/data/include/NCrystal/internal/phys_utils/NCKinUtils.hh +208 -0
  78. _ncrystal_core/data/include/NCrystal/internal/powderbragg/NCPowderBragg.hh +100 -0
  79. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABEval.hh +430 -0
  80. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABExtender.hh +79 -0
  81. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABFactory.hh +51 -0
  82. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABIntegrator.hh +74 -0
  83. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABSampler.hh +100 -0
  84. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABSamplerModels.hh +112 -0
  85. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABScatterHelper.hh +61 -0
  86. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABUCN.hh +191 -0
  87. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABUtils.hh +319 -0
  88. _ncrystal_core/data/include/NCrystal/internal/sab/NCSABXSProvider.hh +54 -0
  89. _ncrystal_core/data/include/NCrystal/internal/sab/NCScatKnlData.hh +108 -0
  90. _ncrystal_core/data/include/NCrystal/internal/sabscatter/NCSABScatter.hh +79 -0
  91. _ncrystal_core/data/include/NCrystal/internal/sanshardsphere/NCSANSSphScat.hh +77 -0
  92. _ncrystal_core/data/include/NCrystal/internal/scbragg/NCSCBragg.hh +78 -0
  93. _ncrystal_core/data/include/NCrystal/internal/utils/NCAtomUtils.hh +136 -0
  94. _ncrystal_core/data/include/NCrystal/internal/utils/NCCFileUtils.hh +220 -0
  95. _ncrystal_core/data/include/NCrystal/internal/utils/NCDynLoader.hh +88 -0
  96. _ncrystal_core/data/include/NCrystal/internal/utils/NCFastConvolve.hh +62 -0
  97. _ncrystal_core/data/include/NCrystal/internal/utils/NCFileUtils.hh +78 -0
  98. _ncrystal_core/data/include/NCrystal/internal/utils/NCHists.hh +575 -0
  99. _ncrystal_core/data/include/NCrystal/internal/utils/NCIter.hh +89 -0
  100. _ncrystal_core/data/include/NCrystal/internal/utils/NCLatticeUtils.hh +104 -0
  101. _ncrystal_core/data/include/NCrystal/internal/utils/NCMath.hh +705 -0
  102. _ncrystal_core/data/include/NCrystal/internal/utils/NCMatrix.hh +242 -0
  103. _ncrystal_core/data/include/NCrystal/internal/utils/NCMsg.hh +119 -0
  104. _ncrystal_core/data/include/NCrystal/internal/utils/NCPointwiseDist.hh +79 -0
  105. _ncrystal_core/data/include/NCrystal/internal/utils/NCRandUtils.hh +243 -0
  106. _ncrystal_core/data/include/NCrystal/internal/utils/NCRomberg.hh +78 -0
  107. _ncrystal_core/data/include/NCrystal/internal/utils/NCRotMatrix.hh +187 -0
  108. _ncrystal_core/data/include/NCrystal/internal/utils/NCSpan.hh +154 -0
  109. _ncrystal_core/data/include/NCrystal/internal/utils/NCSpline.hh +208 -0
  110. _ncrystal_core/data/include/NCrystal/internal/utils/NCStrView.hh +489 -0
  111. _ncrystal_core/data/include/NCrystal/internal/utils/NCString.hh +417 -0
  112. _ncrystal_core/data/include/NCrystal/internal/utils/NCVector.hh +268 -0
  113. _ncrystal_core/data/include/NCrystal/internal/vdos/NCVDOSEval.hh +138 -0
  114. _ncrystal_core/data/include/NCrystal/internal/vdos/NCVDOSGn.hh +160 -0
  115. _ncrystal_core/data/include/NCrystal/internal/vdos/NCVDOSToScatKnl.hh +59 -0
  116. _ncrystal_core/data/include/NCrystal/misc/NCCompositionUtils.hh +154 -0
  117. _ncrystal_core/data/include/NCrystal/misc/NCMsgCtrl.hh +47 -0
  118. _ncrystal_core/data/include/NCrystal/ncapi.h +227 -0
  119. _ncrystal_core/data/include/NCrystal/ncrystal.h +26 -0
  120. _ncrystal_core/data/include/NCrystal/plugins/NCPluginMgmt.hh +91 -0
  121. _ncrystal_core/data/include/NCrystal/text/NCTextData.hh +361 -0
  122. _ncrystal_core/data/include/NCrystal/threads/NCFactThreads.hh +82 -0
  123. _ncrystal_core/data/lib/NCrystal.lib +0 -0
  124. _ncrystal_core/data/lib/cmake/NCrystal/NCrystalConfig.cmake +126 -0
  125. _ncrystal_core/data/lib/cmake/NCrystal/NCrystalConfigVersion.cmake +43 -0
  126. _ncrystal_core/data/lib/cmake/NCrystal/NCrystalTargets-release.cmake +21 -0
  127. _ncrystal_core/data/lib/cmake/NCrystal/NCrystalTargets.cmake +109 -0
  128. _ncrystal_core/info.py +108 -0
  129. ncrystal_core-4.0.0.data/scripts/NCrystal.dll +0 -0
  130. ncrystal_core-4.0.0.dist-info/METADATA +506 -0
  131. ncrystal_core-4.0.0.dist-info/RECORD +134 -0
  132. ncrystal_core-4.0.0.dist-info/WHEEL +5 -0
  133. ncrystal_core-4.0.0.dist-info/entry_points.txt +3 -0
  134. ncrystal_core-4.0.0.dist-info/licenses/LICENSE +206 -0
@@ -0,0 +1 @@
1
+ __version__='4.0.0'
@@ -0,0 +1,124 @@
1
+ #ifndef NCrystal_PluginBoilerplate_hh
2
+ #define NCrystal_PluginBoilerplate_hh
3
+
4
+ ////////////////////////////////////////////////////////////////////////////////
5
+ // //
6
+ // This file is part of NCrystal (see https://mctools.github.io/ncrystal/) //
7
+ // //
8
+ // Copyright 2015-2025 NCrystal developers //
9
+ // //
10
+ // Licensed under the Apache License, Version 2.0 (the "License"); //
11
+ // you may not use this file except in compliance with the License. //
12
+ // You may obtain a copy of the License at //
13
+ // //
14
+ // http://www.apache.org/licenses/LICENSE-2.0 //
15
+ // //
16
+ // Unless required by applicable law or agreed to in writing, software //
17
+ // distributed under the License is distributed on an "AS IS" BASIS, //
18
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //
19
+ // See the License for the specific language governing permissions and //
20
+ // limitations under the License. //
21
+ // //
22
+ ////////////////////////////////////////////////////////////////////////////////
23
+
24
+ //Header file which should be included by code creating plugins (and nowhere
25
+ //else). It contains macros for creating required namespaces and symbols. It
26
+ //exists purely as a matter of convenience, to avoid duplicating code in a lot
27
+ //of plugins, and to ensure all plugins have a C++ namespace which contains the
28
+ //name of the plugin (to avoid symbol clashes). Of course, usage of the present
29
+ //header file is not strictly required: the actual basic requirements of a
30
+ //plugin is just a shared object (module) which defines two functions with
31
+ //C-mangling: void ncplugin_register(void) and const char * ncplugin_getname().
32
+
33
+ #ifndef NCPLUGIN_NAME
34
+ # error NCPLUGIN_NAME undefined
35
+ #endif
36
+
37
+ //Internal macros needed below:
38
+ #define ncpluginhh_str2(s) #s
39
+ #define ncpluginhh_str(s) ncpluginhh_str2(s)
40
+ #define ncpluginhh_nsgen0(m) NCrystalPlugin_##m
41
+ #define ncpluginhh_nsgen(m) ncpluginhh_nsgen0(m)
42
+
43
+ //Macros which can/should be used in plugin code. In fact, ALL plugin code
44
+ //should be in the NCPluginNamespace!
45
+ #define NCPLUGIN_NAME_CSTR ncpluginhh_str(NCPLUGIN_NAME)
46
+ #define NCPluginNamespace ncpluginhh_nsgen(NCPLUGIN_NAME)
47
+
48
+ //All plugins must implement the following registerPlugin function:
49
+ namespace NCPluginNamespace {
50
+ void registerPlugin();
51
+ }
52
+
53
+ //For convenience we include the public NCrystal API and create a few aliases:
54
+ #include "NCrystal/NCrystal.hh"
55
+
56
+ namespace NC = NCrystal;
57
+ namespace NCP = NCPluginNamespace;
58
+
59
+ //In addition to the NCPLUGIN_NAME_CSTR macro above, the plugin name is also
60
+ //available via functions return strings (including upper/lower cased):
61
+ namespace NCPluginNamespace {
62
+ const std::string& pluginName();
63
+ const std::string& pluginNameUpperCase();
64
+ const std::string& pluginNameLowerCase();
65
+ }
66
+
67
+ ////////////////////////////////////////////////////////////////////////////////////
68
+ //Exactly one .cc file in a plugin must define NCPLUGIN_BOILERPLATE_CC before
69
+ //including the file, which will then generate the C-mangled hooks needed for
70
+ //dynamic access to the plugin:
71
+ #if defined(NCPLUGIN_BOILERPLATE_CC)
72
+ //C-mangled hooks (only for dynamic plugins)
73
+ # if defined (_WIN32) || defined (__CYGWIN__) || defined (WIN32)
74
+ # define ncpluginhh_export __declspec(dllexport)
75
+ # elif defined(__GNUC__) || defined(__clang__)
76
+ # define ncpluginhh_export __attribute__ ((visibility ("default")))
77
+ # else
78
+ # define ncpluginhh_export
79
+ # endif
80
+
81
+ extern "C" {
82
+ ncpluginhh_export void ncplugin_register()
83
+ {
84
+ NCP::registerPlugin();
85
+ }
86
+ ncpluginhh_export const char * ncplugin_getname()
87
+ {
88
+ return NCPLUGIN_NAME_CSTR;
89
+ }
90
+ }
91
+
92
+ const std::string& NCP::pluginName()
93
+ {
94
+ static std::string s_name(NCPLUGIN_NAME_CSTR);
95
+ return s_name;
96
+ }
97
+
98
+ const std::string& NCP::pluginNameUpperCase()
99
+ {
100
+ static std::string s_name = [](){
101
+ std::string s( NCPLUGIN_NAME_CSTR );
102
+ for (auto& c : s)
103
+ if ( c >= 'a' && c <= 'z' )
104
+ c -= 32;
105
+ return s;
106
+ }();
107
+ return s_name;
108
+ }
109
+
110
+ const std::string& NCP::pluginNameLowerCase()
111
+ {
112
+ static std::string s_name = [](){
113
+ std::string s( NCPLUGIN_NAME_CSTR );
114
+ for (auto& c : s)
115
+ if ( c >= 'A' && c <= 'Z' )
116
+ c += 32;
117
+ return s;
118
+ }();
119
+ return s_name;
120
+ }
121
+
122
+ #endif//NCPLUGIN_BOILERPLATE_CC
123
+
124
+ #endif
@@ -0,0 +1,30 @@
1
+ #ifndef NCrystal_NCRNG_redirectionhdr_hh
2
+ #define NCrystal_NCRNG_redirectionhdr_hh
3
+
4
+ ////////////////////////////////////////////////////////////////////////////////
5
+ // //
6
+ // This file is part of NCrystal (see https://mctools.github.io/ncrystal/) //
7
+ // //
8
+ // Copyright 2015-2025 NCrystal developers //
9
+ // //
10
+ // Licensed under the Apache License, Version 2.0 (the "License"); //
11
+ // you may not use this file except in compliance with the License. //
12
+ // You may obtain a copy of the License at //
13
+ // //
14
+ // http://www.apache.org/licenses/LICENSE-2.0 //
15
+ // //
16
+ // Unless required by applicable law or agreed to in writing, software //
17
+ // distributed under the License is distributed on an "AS IS" BASIS, //
18
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //
19
+ // See the License for the specific language governing permissions and //
20
+ // limitations under the License. //
21
+ // //
22
+ ////////////////////////////////////////////////////////////////////////////////
23
+
24
+ // Obsolete redirection header (mostly added to not break OpenMC builds during
25
+ // the transition).
26
+
27
+ #pragma message("Header `NCrystal/NCRNG.hh` is deprecated in favour of `NCrystal/NCrystal.hh`")
28
+ #include "NCrystal/interfaces/NCRNG.hh"
29
+
30
+ #endif
@@ -0,0 +1,119 @@
1
+ #ifndef NCrystal_hh
2
+ #define NCrystal_hh
3
+
4
+ ////////////////////////////////////////////////////////////////////////////////
5
+ // //
6
+ // This file is part of NCrystal (see https://mctools.github.io/ncrystal/) //
7
+ // //
8
+ // Copyright 2015-2025 NCrystal developers //
9
+ // //
10
+ // Licensed under the Apache License, Version 2.0 (the "License"); //
11
+ // you may not use this file except in compliance with the License. //
12
+ // You may obtain a copy of the License at //
13
+ // //
14
+ // http://www.apache.org/licenses/LICENSE-2.0 //
15
+ // //
16
+ // Unless required by applicable law or agreed to in writing, software //
17
+ // distributed under the License is distributed on an "AS IS" BASIS, //
18
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //
19
+ // See the License for the specific language governing permissions and //
20
+ // limitations under the License. //
21
+ // //
22
+ ////////////////////////////////////////////////////////////////////////////////
23
+
24
+ ////////////////////////////////////////////////////
25
+ // Convenience header for all NCrystal interfaces //
26
+ ////////////////////////////////////////////////////
27
+
28
+ #ifndef NCrystal_Dump_hh
29
+ # include "NCrystal/dump/NCDump.hh"
30
+ #endif
31
+ #ifndef NCrystal_Defs_hh
32
+ # include "NCrystal/core/NCDefs.hh"
33
+ #endif
34
+ #ifndef NCrystal_Exception_hh
35
+ # include "NCrystal/core/NCException.hh"
36
+ #endif
37
+ #ifndef NCrystal_Mem_hh
38
+ # include "NCrystal/core/NCMem.hh"
39
+ #endif
40
+ #ifndef NCrystal_SmallVector_hh
41
+ # include "NCrystal/core/NCSmallVector.hh"
42
+ #endif
43
+ #ifndef NCrystal_Variant_hh
44
+ # include "NCrystal/core/NCVariant.hh"
45
+ #endif
46
+ #ifndef NCrystal_Fmt_hh
47
+ # include "NCrystal/core/NCFmt.hh"
48
+ #endif
49
+ #ifndef NCrystal_PluginMgmt_hh
50
+ # include "NCrystal/plugins/NCPluginMgmt.hh"
51
+ #endif
52
+ #ifndef NCrystal_AtomData_hh
53
+ # include "NCrystal/interfaces/NCAtomData.hh"
54
+ #endif
55
+ #ifndef NCrystal_TextData_hh
56
+ # include "NCrystal/text/NCTextData.hh"
57
+ #endif
58
+ #ifndef NCrystal_Info_hh
59
+ # include "NCrystal/interfaces/NCInfo.hh"
60
+ #endif
61
+ #ifndef NCrystal_InfoTypes_hh
62
+ # include "NCrystal/interfaces/NCInfoTypes.hh"
63
+ #endif
64
+ #ifndef NCrystal_SABData_hh
65
+ # include "NCrystal/interfaces/NCSABData.hh"
66
+ #endif
67
+ #ifndef NCrystal_MatCfg_hh
68
+ # include "NCrystal/factories/NCMatCfg.hh"
69
+ #endif
70
+ #ifndef NCrystal_RNG_hh
71
+ # include "NCrystal/interfaces/NCRNG.hh"
72
+ #endif
73
+ #ifndef NCrystal_SCOrientation_hh
74
+ # include "NCrystal/interfaces/NCSCOrientation.hh"
75
+ #endif
76
+ #ifndef NCrystal_Version_hh
77
+ # include "NCrystal/interfaces/NCVersion.hh"
78
+ #endif
79
+ #ifndef NCrystal_CompositionUtils_hh
80
+ # include "NCrystal/misc/NCCompositionUtils.hh"
81
+ #endif
82
+ #ifndef NCrystal_ProcImpl_hh
83
+ # include "NCrystal/interfaces/NCProcImpl.hh"
84
+ #endif
85
+ #ifndef NCrystal_Proc_hh
86
+ # include "NCrystal/interfaces/NCProc.hh"
87
+ #endif
88
+ #ifndef NCrystal_MsgCtrl_hh
89
+ # include "NCrystal/misc/NCMsgCtrl.hh"
90
+ #endif
91
+ #ifndef NCrystal_FactTypes_hh
92
+ # include "NCrystal/factories/NCFactTypes.hh"
93
+ #endif
94
+ #ifndef NCrystal_FactImpl_hh
95
+ # include "NCrystal/factories/NCFactImpl.hh"
96
+ #endif
97
+ #ifndef NCrystal_FactRequests_hh
98
+ # include "NCrystal/factories/NCFactRequests.hh"
99
+ #endif
100
+ #ifndef NCrystal_FactRequestsImpl_hh
101
+ # include "NCrystal/factories/NCFactRequestsImpl.hh"
102
+ #endif
103
+ #ifndef NCrystal_DataSources_hh
104
+ # include "NCrystal/factories/NCDataSources.hh"
105
+ #endif
106
+ #ifndef NCrystal_Fact_hh
107
+ # include "NCrystal/factories/NCFact.hh"
108
+ #endif
109
+ #ifndef NCrystal_Types_hh
110
+ # include "NCrystal/core/NCTypes.hh"
111
+ #endif
112
+ #ifndef NCrystal_ImmutBuf_hh
113
+ # include "NCrystal/core/NCImmutBuf.hh"
114
+ #endif
115
+ #ifndef NCrystal_FactThreads_hh
116
+ # include "NCrystal/threads/NCFactThreads.hh"
117
+ #endif
118
+
119
+ #endif