Skip to content

Commit

Permalink
Merge pull request #123 from wddgit/fixPlaybackInUnscheduledMode
Browse files Browse the repository at this point in the history
Fix playback so it will run in unscheduled mode. Without this fix the un...
  • Loading branch information
ktf committed Jul 22, 2013
2 parents 7251e9d + ee87694 commit 6bf2a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SimGeneral/MixingModule/plugins/MixingModule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace edm {
if (labelPlayback.empty()) {
labelPlayback = ps_mix.getParameter<std::string>("@module_label");
}
inputTagPlayback_ = InputTag(labelPlayback, "");
inputTagPlayback_ = InputTag(labelPlayback, "", edm::InputTag::kSkipCurrentProcess);

ParameterSet ps=ps_mix.getParameter<ParameterSet>("mixObjects");
std::vector<std::string> names = ps.getParameterNames();
Expand Down

0 comments on commit 6bf2a69

Please sign in to comment.