Skip to content

Commit 7176ccb

Browse files
committed
turn off projection as it is not used in wick
1 parent 25215a0 commit 7176ccb

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

py/picca/bin/picca_wick.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,10 @@ def main(cmdargs=None):
189189
help='Equation of state of dark energy of fiducial LambdaCDM cosmology'
190190
)
191191

192-
parser.add_argument('--no-project',
193-
action='store_true',
194-
required=False,
195-
help='Do not project out continuum fitting modes')
192+
# parser.add_argument('--no-project',
193+
# action='store_true',
194+
# required=False,
195+
# help='Projection is not applicable to wick.')
196196

197197
parser.add_argument('--max-diagram',
198198
type=int,
@@ -321,7 +321,7 @@ def main(cmdargs=None):
321321
cf.z_ref,
322322
cosmo,
323323
max_num_spec=args.nspec,
324-
# no_project=args.no_project,
324+
no_project=True,
325325
nproc=args.nproc,
326326
rebin_factor=args.rebin_factor,
327327
wick_mode='D1',
@@ -433,6 +433,10 @@ def main(cmdargs=None):
433433
cpu_data[num_processor] = []
434434
cpu_data[num_processor].append(healpix)
435435

436+
userprint(" \nCompiling\n")
437+
# cf.reject = 1
438+
# _ = calc_wick_terms(cpu_data.values()[0])
439+
# cf.reject = args.rej
436440
# compute the covariance matrix
437441
userprint(" \nStarting\n")
438442
if args.nproc > 1:

0 commit comments

Comments
 (0)