Skip to content
Snippets Groups Projects
Commit a04f41dc authored by Simon Spannagel's avatar Simon Spannagel
Browse files

ROOTObjectWriter: fix copy-paste error

parent a01a2685
No related branches found
No related tags found
No related merge requests found
......@@ -75,8 +75,8 @@ void ROOTObjectWriterModule::initialize() {
auto inc_arr = config_.getArray<std::string>("include");
include_.insert(inc_arr.begin(), inc_arr.end());
check_objects(exclude_, "DepositedCharge", true);
check_objects(exclude_, "PropagatedCharge", true);
check_objects(include_, "DepositedCharge", true);
check_objects(include_, "PropagatedCharge", true);
} else if(config_.has("exclude")) {
auto exc_arr = config_.getArray<std::string>("exclude");
exclude_.insert(exc_arr.begin(), exc_arr.end());
......
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