From 3393d609a240a84338282672c0e192893e67c971 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Tue, 21 Apr 2020 12:35:02 +0200 Subject: [PATCH] Make the help menu nicer --- sf-writer/sf_h5_writer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sf-writer/sf_h5_writer.cpp b/sf-writer/sf_h5_writer.cpp index 0a0f1dc..5c9c028 100644 --- a/sf-writer/sf_h5_writer.cpp +++ b/sf-writer/sf_h5_writer.cpp @@ -15,9 +15,9 @@ int main (int argc, char *argv[]) cout << "Usage: sf_h5_writer [device_name] [root_folder]"; cout << " [output_file] [start_pulse_id] [stop_pulse_id]"; cout << endl; - cout << "\tdevice_name: Name of detector to write."; - cout << "\troot_folder: Base of the buffer."; - cout << "\toutput_file: Complete path to the output file."; + cout << "\tdevice_name: Name of detector to write." << endl; + cout << "\troot_folder: Base of the buffer." << endl; + cout << "\toutput_file: Complete path to the output file." << endl; cout << "\tstart_pulse_id: Start pulse_id of retrieval." << endl; cout << "\tstop_pulse_id: Stop pulse_id of retrieval." << endl; cout << endl;