Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/Helpers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#include <Acts/Propagator/Navigator.hpp>
#include <Acts/Propagator/Propagator.hpp>

#include <streamlog/streamlog.h>
#include <marlin/VerbosityLevels.h>

using Stepper = Acts::EigenStepper<>;
using Navigator = Acts::Navigator;
Expand Down Expand Up @@ -360,7 +362,7 @@ EVENT::Track* ACTS2Marlin_track(
track->trackStates().push_back(trackStateAtCalo);
}
else{
std::cout << "Failed propagation! " << std::endl;
streamlog_out(DEBUG) << "Failed propagation! " << std::endl;
}
}
else{
Expand All @@ -375,7 +377,7 @@ EVENT::Track* ACTS2Marlin_track(
track->trackStates().push_back(trackStateAtCalo);
}
else{
std::cout << "Failed propagation!" << std::endl;
streamlog_out(DEBUG) << "Failed propagation!" << std::endl;
}
}
}
Expand Down