GMR-542: deprecate Algorithm begin/end run methods
Algorithms should not know about begin and end run transitions, as these concepts become fuzzy if not entirely meaningless in an environment where multiple events are processed concurrently. In the vast majority of cases, anything done in Algorithm::beginRun can be migrated to Algorithm::start, and endRun -> stop.