-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclhep.modulemap
More file actions
121 lines (109 loc) · 4.26 KB
/
clhep.modulemap
File metadata and controls
121 lines (109 loc) · 4.26 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
module clhep {
export *
requires cplusplus
umbrella "CLHEP"
module * { export *}
// The headers in this module are semantically one translation unit.
// The main header is AbsFunction.hh which then defines the rest
// implementing a PP macro-based covariant return type.
module CLHEP_AbsFunction_hh {
export *
header "CLHEP/GenericFunctions/AbsFunction.hh"
header "CLHEP/GenericFunctions/ConstMinusFunction.hh"
header "CLHEP/GenericFunctions/ConstOverFunction.hh"
header "CLHEP/GenericFunctions/ConstPlusFunction.hh"
header "CLHEP/GenericFunctions/ConstTimesFunction.hh"
header "CLHEP/GenericFunctions/FunctionComposition.hh"
header "CLHEP/GenericFunctions/FunctionConvolution.hh"
header "CLHEP/GenericFunctions/FunctionDifference.hh"
header "CLHEP/GenericFunctions/FunctionDirectProduct.hh"
header "CLHEP/GenericFunctions/FunctionNegation.hh"
header "CLHEP/GenericFunctions/FunctionNoop.hh"
header "CLHEP/GenericFunctions/FunctionPlusParameter.hh"
header "CLHEP/GenericFunctions/FunctionProduct.hh"
header "CLHEP/GenericFunctions/FunctionQuotient.hh"
header "CLHEP/GenericFunctions/FunctionSum.hh"
header "CLHEP/GenericFunctions/FunctionTimesParameter.hh"
header "CLHEP/GenericFunctions/ParameterComposition.hh"
}
// The headers in this module are semantically one translation unit.
// The main header is AbsParameter.hh which then defines the rest
// implementing a PP macro-based covariant return type.
module CLHEP_AbsParameter_hh {
export *
header "CLHEP/GenericFunctions/AbsParameter.hh"
header "CLHEP/GenericFunctions/ConstMinusParameter.hh"
header "CLHEP/GenericFunctions/ConstOverParameter.hh"
header "CLHEP/GenericFunctions/ConstPlusParameter.hh"
header "CLHEP/GenericFunctions/ConstTimesParameter.hh"
header "CLHEP/GenericFunctions/ParameterDifference.hh"
header "CLHEP/GenericFunctions/ParameterNegation.hh"
header "CLHEP/GenericFunctions/ParameterProduct.hh"
header "CLHEP/GenericFunctions/ParameterQuotient.hh"
header "CLHEP/GenericFunctions/ParameterSum.hh"
}
// FIXME: Exclude these headers they seem to implement a more
// complicated covariant return type mechanism. They should be
// exported from either AbsParameter.hh or AbsFunction.hh module
// context but seems not possible. Needs further investigation.
exclude header "CLHEP/GenericFunctions/DoubleParamToArgAdaptor.hh"
exclude header "CLHEP/GenericFunctions/DoubleParamToArgAdaptor.icc"
exclude header "CLHEP/GenericFunctions/ParamToArgAdaptor.hh"
exclude header "CLHEP/GenericFunctions/ParamToArgAdaptor.icc"
exclude header "CLHEP/GenericFunctions/SymToArgAdaptor.icc"
exclude header "CLHEP/GenericFunctions/SymToArgAdaptor.hh"
exclude header "CLHEP/RefCount/ZMuseCount.icc"
// For ZMthrowA macro
textual header "CLHEP/Vector/ZMxpv.h"
}
module clhep_gsl {
export *
module "GenericFunctions/SphericalHarmonicFit.hh" {
export *
header "CLHEP/GenericFunctions/SphericalHarmonicFit.hh"
}
module "GenericFunctions/Legendre.hh" {
export *
header "CLHEP/GenericFunctions/Legendre.hh"
}
module "GenericFunctions/Airy.hh" {
export *
header "CLHEP/GenericFunctions/Airy.hh"
}
module "GenericFunctions/SphericalNeumann.hh" {
export *
header "CLHEP/GenericFunctions/SphericalNeumann.hh"
}
module "GenericFunctions/Bessel.hh" {
export *
header "CLHEP/GenericFunctions/Bessel.hh"
}
module "GenericFunctions/LegendreExpansion.hh" {
export *
header "CLHEP/GenericFunctions/LegendreExpansion.hh"
}
module "GenericFunctions/AssociatedLegendre.hh" {
export *
header "CLHEP/GenericFunctions/AssociatedLegendre.hh"
}
module "GenericFunctions/SphericalBessel.hh" {
export *
header "CLHEP/GenericFunctions/SphericalBessel.hh"
}
module "GenericFunctions/SphericalHarmonicExpansion.hh" {
export *
header "CLHEP/GenericFunctions/SphericalHarmonicExpansion.hh"
}
module "GenericFunctions/LegendreFit.hh" {
export *
header "CLHEP/GenericFunctions/LegendreFit.hh"
}
module "GenericFunctions/Psi2Hydrogen.hh" {
export *
header "CLHEP/GenericFunctions/Psi2Hydrogen.hh"
}
module "GenericFunctions/EllipticIntegral.hh" {
export *
header "CLHEP/GenericFunctions/EllipticIntegral.hh"
}
}