Skip to content

Commit

Permalink
Fixed bug in call of flaapluc from flaapluc-allsources
Browse files Browse the repository at this point in the history
  • Loading branch information
LENAIN Jean philippe committed Aug 4, 2017
1 parent 9125d39 commit 27b5aab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/flaapluc-allsources
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Time-stamp: "2017-08-03 17:53:15 jlenain"
# Time-stamp: "2017-08-04 12:46:54 jlenain"

"""
Process all sources for automatic aperture photometry of interesting high energy sources.
Expand Down Expand Up @@ -200,7 +200,7 @@ I will process %i sources.
# Loop on sources
for i in range(nbSrc):
options.append(
'\"/bin/nice -n 10 ./automaticLightCurve.py ' + ' '.join(autoOptions) + ' ' + str(src[i]) + '\"')
'\"/bin/nice -n 10 flaapluc ' + ' '.join(autoOptions) + ' ' + str(src[i]) + '\"')
cmd = "parallel -j " + str(MAXCPU) + " ::: " + " ".join(options)
# use --dry-run just to test the parallel command
if not DRYRUN:
Expand Down

0 comments on commit 27b5aab

Please sign in to comment.