Skip to content

Commit 2396607

Browse files
committed
doc update for Accuracy
1 parent d51ccd0 commit 2396607

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

camb/model.py

+6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ class TransferParams(CAMB_Structure):
6868
"""
6969
Object storing parameters for the matter power spectrum calculation.
7070
71+
Not intended to be separately instantiated, only used as part of CAMBparams.
7172
"""
7273
_fields_ = [
7374
("high_precision", c_bool, "True for more accuracy"),
@@ -87,6 +88,9 @@ class AccuracyParams(CAMB_Structure):
8788
parameters except for lSampleBoost (which is specific to the output interpolation) and lAccuracyBoost
8889
(which is specific to the multipole hierarchy evolution), e.g. setting AccuracyBoost=2, IntTolBoost=1.5, means
8990
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.
9094
"""
9195
_fields_ = [
9296
("AccuracyBoost", c_double, "general accuracy setting effecting everything related to step sizes etc. "
@@ -119,6 +123,8 @@ class AccuracyParams(CAMB_Structure):
119123
class SourceTermParams(CAMB_Structure):
120124
"""
121125
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.
122128
"""
123129
_fields_ = [
124130
("limber_windows", c_bool,

0 commit comments

Comments
 (0)