We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d952cf3 commit 5a18905Copy full SHA for 5a18905
k4FWCore/components/EfficiencyFilter.cpp
@@ -101,8 +101,7 @@ struct EfficiencyFilter final : k4FWCore::Transformer<podio::CollectionBase*(con
101
template <typename T>
102
podio::CollectionBase* createSubsetCollection(const podio::CollectionBase* source, const size_t uid) const {
103
104
- std::mt19937 randomGen(std::random_device{}());
105
- randomGen.seed(uid);
+ std::mt19937 randomGen(uid);
106
std::uniform_real_distribution<double> uniformDist(0.0, 1.0);
107
108
auto ret = new T();
0 commit comments