Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
460f86c
Some more optimisation in covariance constructor, more flexible file …
andrejdvornik Nov 18, 2025
98ac0f9
Include last element
andrejdvornik Nov 18, 2025
5943034
More changes to covariance constructor
andrejdvornik Nov 18, 2025
12e34cc
Some fixes
andrejdvornik Nov 19, 2025
60b9d07
Create separate make_cosmosis_nz for 3x2pt
andrejdvornik Nov 20, 2025
3125ef2
Merge remote-tracking branch 'upstream/master' into 3x2pt
andrejdvornik Nov 20, 2025
4da0590
Fixed capitalisation
andrejdvornik Nov 20, 2025
7539da0
Revert comment
andrejdvornik Nov 20, 2025
f368c83
Revert comment
andrejdvornik Nov 20, 2025
9771b88
Revert changes
andrejdvornik Nov 20, 2025
afdabe8
More fixes to covariance constructor
andrejdvornik Nov 20, 2025
1b9d5d3
Temp fix to psi_stats
andrejdvornik Nov 20, 2025
5891829
Fix blocklist
andrejdvornik Nov 21, 2025
477d2fa
Flexible stats selection given MODES
andrejdvornik Nov 21, 2025
4a9bb4e
Clearer error message
andrejdvornik Nov 21, 2025
00c695b
Better handling of nzs in make_cosmosis_nz_3x2pt
andrejdvornik Nov 21, 2025
c8d3724
Better logic in make_cosmosis_nz
andrejdvornik Nov 21, 2025
556090b
More fixes
andrejdvornik Nov 21, 2025
302c626
Remove message
andrejdvornik Nov 21, 2025
b7c232a
Fix patch message
andrejdvornik Nov 21, 2025
b7ccf10
Fix names of lens and obs nzs
andrejdvornik Nov 24, 2025
ced8fb2
More optimisation of prepare_cosmosis.sh
andrejdvornik Nov 24, 2025
866b72b
Implemented bin averaging for 1 point statistics
andrejdvornik Nov 27, 2025
02548be
Moved normalisation to sacc creation instead of likelihood code
andrejdvornik Dec 3, 2025
b024918
Fix covariance constructor
andrejdvornik Dec 5, 2025
fdfd749
Optimisation of cov filters handling
andrejdvornik Dec 9, 2025
5db397a
Update to onepower settings
andrejdvornik Jan 16, 2026
31e70ca
Rename variables
andrejdvornik Jan 16, 2026
d19abf0
Added check for zmin/zmax limits in calc_smf.py
andrejdvornik Jan 16, 2026
1d8dd80
Added working environment without conflicts that supports OnePower an…
andrejdvornik Feb 13, 2026
05caed4
Added an option to specify limits by hand
andrejdvornik Feb 23, 2026
40ccffc
Fix good_args
andrejdvornik Mar 18, 2026
8e41ed8
Add nz shifts and biases for lenses and smf
andrejdvornik Mar 19, 2026
761392a
Force 2d array
andrejdvornik Mar 19, 2026
e3d164e
Fix CSL branch
andrejdvornik Mar 19, 2026
6a0d647
More fix to CSL repo
andrejdvornik Mar 19, 2026
7132bbb
Add back OnePower as we need interface to it, that is in the
andrejdvornik Mar 19, 2026
4d33b6b
add dill (spice)
andrejdvornik Mar 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions COSMOPIPE_MASTER_INSTALL.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,7 @@ then
then
rm -fr cosmosis-standard-library
fi
git clone --single-branch -b two-point-one-point https://github.com/andrejdvornik/cosmosis-standard-library.git >> gitclone_output.log 2>&1
# The two-point-one-point branch has one-point function enabled and some further non-PR fixes to CAMB
# We will try to merge that with the oficial CSL, until then the rest of CSL is in sync!
#git clone https://github.com/joezuntz/cosmosis-standard-library.git >> gitclone_output.log 2>&1
git clone https://github.com/cosmosis-developers/cosmosis-standard-library.git >> gitclone_output.log 2>&1
_message "${BLU} - Done! ${DEF}\n"
_message " >${RED} Installing cosmosis-standard-library ${DEF}"
#Replace the cpdef instances with cdef in classy.pyx
Expand Down Expand Up @@ -234,6 +231,17 @@ EOF
_message "${BLU} - Done! ${DEF}\n"
#}}}

#Clone the OnePower repository {{{
_message " >${RED} Cloning the OnePower Git repository${DEF}"
#Clone the repository
if [ -d ${RUNROOT}/INSTALL/OnePower ]
then
rm -fr OnePower
fi
git clone https://github.com/KiDS-WL/onepower.git >> gitclone_output.log 2>&1
_message "${BLU} - Done! ${DEF}\n"
#}}}

#Clone the Datavec Blinding repository {{{
_message " >${RED} Cloning the Datavector Blinding Git repository${DEF}"
#Clone the repository
Expand Down
Loading