Skip to content
Snippets Groups Projects
Commit 02c0acc1 authored by Emilio Meschi's avatar Emilio Meschi :bicyclist_tone1: Committed by Thomas Owen James
Browse files

change signature of output filter constructor

parent f2ff87f3
No related branches found
No related tags found
No related merge requests found
......@@ -96,9 +96,8 @@ int run_pipeline(int nbThreads, ctrl &control, config &conf) {
// Create file-writing stage and add it to the pipeline
if (conf.getNOrbitsPerFile()) {
output_stream_by_orbit = std::make_shared<OutputByOrbitStream>(
conf.getOutputFilenameBase(), conf.getOutputFilenamePrefix(), control,
conf);
output_stream_by_orbit =
std::make_shared<OutputByOrbitStream>(control, conf);
pipeline.add_filter(*output_stream_by_orbit);
} else {
output_stream_by_size = std::make_shared<OutputBySizeStream>(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment