Commit 75e9cb39 authored by Simon Spannagel's avatar Simon Spannagel
Browse files

NetlistWriter: implement suggestions by @hwennlof

parent 3b52d251
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ NetlistWriterModule::NetlistWriterModule(Configuration& config, Messenger* messe
    netlist_path_ = config.getPath("netlist_template", true);

    // Get the generated netlist name
    config_.setDefault<std::string>("file_name", "output_netlist_event_");
    config_.setDefault<std::string>("file_name", "output_netlist_event");
    file_name_ = config.get<std::string>("file_name");

    // Default source type set to ISOURCE_PULSE
+0 −4
Original line number Diff line number Diff line
@@ -7,10 +7,6 @@
 * In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as an
 * Intergovernmental Organization or submit itself to any jurisdiction.
 * SPDX-License-Identifier: MIT
 *
 * Contains minimal dummy module to use as a start for the development of your own module
 *
 * Please refer to the User Manual for more details on the different files of a module and the methods of the module class..
 */

#include <filesystem>