IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 7773e3bf authored by ralfulrich's avatar ralfulrich
Browse files

fixes

parent 0394c2f6
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ namespace corsika {
template <typename TOutput>
inline ProcessReturn ObservationPlane<TOutput>::doContinuous(
corsika::setup::Stack::particle_type& particle,
corsika::setup::Trajectory& trajectory, bool const stepLimit) {
corsika::setup::Trajectory&, bool const stepLimit) {
/*
The current step did not yet reach the ObservationPlane, do nothing now and wait:
*/
......
......@@ -14,7 +14,7 @@ namespace corsika {
: output_() {}
void ObservationPlaneWriterParquet::startOfLibrary(
std::filesystem::path const& directory) {
boost::filesystem::path const& directory) {
// setup the streamer
output_.initStreamer((directory / "particles.parquet").string());
......
......@@ -13,7 +13,7 @@ namespace corsika {
TrackWriterParquet::TrackWriterParquet()
: output_() {}
void TrackWriterParquet::startOfLibrary(std::filesystem::path const& directory) {
void TrackWriterParquet::startOfLibrary(boost::filesystem::path const& directory) {
// setup the streamer
output_.initStreamer((directory / "tracks.parquet").string());
......
......@@ -49,7 +49,7 @@ namespace corsika {
void ParquetStreamer::closeStreamer() {
writer_.reset();
outfile_->Close();
[[maybe_unused]] auto status = outfile_->Close();
}
std::shared_ptr<parquet::StreamWriter> ParquetStreamer::getWriter() { return writer_; }
......
......@@ -30,7 +30,7 @@ namespace corsika {
/**
* Called at the start of each library.
*/
void startOfLibrary(std::filesystem::path const& directory) final override;
void startOfLibrary(boost::filesystem::path const& directory) final override;
/**
* Called at the end of each shower.
......
......@@ -30,7 +30,7 @@ namespace corsika {
/**
* Called at the start of each library.
*/
void startOfLibrary(std::filesystem::path const& directory) final override;
void startOfLibrary(boost::filesystem::path const& directory) final override;
/**
* Called at the end of each shower.
......
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