@@ -68,6 +68,7 @@ class TransferParams(CAMB_Structure):
68
68
"""
69
69
Object storing parameters for the matter power spectrum calculation.
70
70
71
+ Not intended to be separately instantiated, only used as part of CAMBparams.
71
72
"""
72
73
_fields_ = [
73
74
("high_precision" , c_bool , "True for more accuracy" ),
@@ -87,6 +88,9 @@ class AccuracyParams(CAMB_Structure):
87
88
parameters except for lSampleBoost (which is specific to the output interpolation) and lAccuracyBoost
88
89
(which is specific to the multipole hierarchy evolution), e.g. setting AccuracyBoost=2, IntTolBoost=1.5, means
89
90
that internally the k sampling for integration will be boosted by AccuracyBoost*IntTolBoost = 3.
91
+
92
+ Not intended to be separately instantiated, only used as part of CAMBparams.
93
+ If you want to set fields with :func:`.camb.set_params`, use 'Accuracy.xxx':yyy in the parameter dictionary.
90
94
"""
91
95
_fields_ = [
92
96
("AccuracyBoost" , c_double , "general accuracy setting effecting everything related to step sizes etc. "
@@ -119,6 +123,8 @@ class AccuracyParams(CAMB_Structure):
119
123
class SourceTermParams (CAMB_Structure ):
120
124
"""
121
125
Structure with parameters determining how galaxy/lensing/21cm power spectra and transfer functions are calculated.
126
+
127
+ Not intended to be separately instantiated, only used as part of CAMBparams.
122
128
"""
123
129
_fields_ = [
124
130
("limber_windows" , c_bool ,
0 commit comments