Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bayeswave
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marcella Wijngaarden
bayeswave
Commits
557ab156
Commit
557ab156
authored
4 years ago
by
Sudarshan Ghonge
Browse files
Options
Downloads
Patches
Plain Diff
Put caution message in help output and in the code about hard-coding the DCC number
parent
18e718c9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/BayesWaveCleanFrame.c
+4
-1
4 additions, 1 deletion
src/BayesWaveCleanFrame.c
with
4 additions
and
1 deletion
src/BayesWaveCleanFrame.c
+
4
−
1
View file @
557ab156
...
...
@@ -150,6 +150,8 @@ int main(int argc, char *argv[])
FILE
*
vFile
;
//file pointer for verbose products
// Put in a default clean_suffix
// FIXME: We want to make this a required option
// to be supplied in the config file in the future
char
*
version
=
"T1700406_v4"
;
sprintf
(
data
->
clean_suffix
,
"%s"
,
version
);
...
...
@@ -609,6 +611,7 @@ void parse_command_line_args(int argc, char **argv, struct CleanFrameData *data)
fprintf
(
stdout
,
"bayeswave start time.......%li
\n
"
,(
long
)
data
->
bw_start
);
fprintf
(
stdout
,
"bayeswave trigger time.....%li
\n
"
,(
long
)
data
->
bw_trigtime
);
fprintf
(
stdout
,
"clean suffix...............%s
\n
"
,
data
->
clean_suffix
);
fprintf
(
stdout
,
"output directory...........%s
\n
"
,
data
->
outdir
);
fprintf
(
stdout
,
"
\n
"
);
}
...
...
@@ -630,7 +633,7 @@ void print_usage()
fprintf
(
stdout
,
"Optional Arguments:
\n
"
);
fprintf
(
stdout
,
"--clean-suffix Suffix to be placed after frame and channel
\n
"
);
fprintf
(
stdout
,
" names to indicate the cleaned frames
\n
"
);
fprintf
(
stdout
,
" defaults to T1700406_v4
\n
"
);
fprintf
(
stdout
,
" defaults to T1700406_v4
(FIXME)
\n
"
);
fprintf
(
stdout
,
"--outdir Output directory. Default is current directory ('.')
\n
"
);
fprintf
(
stdout
,
"--verbose print intermediate data products to disk
\n
"
);
fprintf
(
stdout
,
"--median use median glitch reconstruction
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment