CMS 3D CMS Logo

MixingModule.cc
Go to the documentation of this file.
1 // File: MixingModule.cc
2 // Description: see MixingModule.h
3 // Author: Ursula Berthon, LLR Palaiseau, Bill Tanenbaum
4 //
5 //--------------------------------------------
6 
7 #include <functional>
8 #include <memory>
9 
10 #include "MixingModule.h"
11 #include "MixingWorker.h"
12 #include "Adjuster.h"
13 
37 
38 namespace edm {
39 
40  // Constructor
42  : BMixingModule(ps_mix, globalConf),
43  inputTagPlayback_(),
44  mixProdStep2_(ps_mix.getParameter<bool>("mixProdStep2")),
45  mixProdStep1_(ps_mix.getParameter<bool>("mixProdStep1")),
46  digiAccumulators_() {
48  LogInfo("MixingModule") << " The MixingModule was run in the Standard mode.";
49  if (mixProdStep1_)
50  LogInfo("MixingModule") << " The MixingModule was run in the Step1 mode. It produces a mixed secondary source.";
51  if (mixProdStep2_)
52  LogInfo("MixingModule") << " The MixingModule was run in the Step2 mode. It uses a mixed secondary source.";
53 
54  useCurrentProcessOnly_ = false;
55  if (ps_mix.exists("useCurrentProcessOnly")) {
56  useCurrentProcessOnly_ = ps_mix.getParameter<bool>("useCurrentProcessOnly");
57  LogInfo("MixingModule") << " using given Parameter 'useCurrentProcessOnly' =" << useCurrentProcessOnly_;
58  }
59  std::string labelPlayback;
60  if (ps_mix.exists("LabelPlayback")) {
61  labelPlayback = ps_mix.getParameter<std::string>("LabelPlayback");
62  }
63  if (labelPlayback.empty()) {
64  labelPlayback = ps_mix.getParameter<std::string>("@module_label");
65  }
66  if (playback_) {
68  consumes<CrossingFramePlaybackInfoNew>(inputTagPlayback_);
69  }
70  wrapLongTimes_ = false;
71  if (ps_mix.exists("WrapLongTimes")) {
72  wrapLongTimes_ = ps_mix.getParameter<bool>("WrapLongTimes");
73  }
74 
75  ParameterSet ps = ps_mix.getParameter<ParameterSet>("mixObjects");
76  std::vector<std::string> names = ps.getParameterNames();
77  for (std::vector<std::string>::iterator it = names.begin(); it != names.end(); ++it) {
79  if (!pset.exists("type"))
80  continue; //to allow replacement by empty pset
81  std::string object = pset.getParameter<std::string>("type");
82  std::vector<InputTag> tags = pset.getParameter<std::vector<InputTag> >("input");
83 
84  //if (!mixProdStep2_) {
85 
86  InputTag tagCF = InputTag();
87  std::string labelCF = " ";
88 
89  if (object == "SimTrack") {
90  InputTag tag;
91  if (!tags.empty())
92  tag = tags[0];
94 
95  branchesActivate(TypeID(typeid(std::vector<SimTrack>)).friendlyClassName(), std::string(""), tag, label);
96  adjustersObjects_.push_back(new Adjuster<std::vector<SimTrack> >(tag, consumesCollector(), wrapLongTimes_));
97  bool makeCrossingFrame = pset.getUntrackedParameter<bool>("makeCrossingFrame", false);
98  if (makeCrossingFrame) {
100  minBunch_, maxBunch_, bunchSpace_, std::string(""), label, labelCF, maxNbSources_, tag, tagCF));
101  produces<CrossingFrame<SimTrack> >(label);
102  }
103  consumes<std::vector<SimTrack> >(tag);
104 
105  LogInfo("MixingModule") << "Will mix " << object << "s with InputTag= " << tag.encode() << ", label will be "
106  << label;
107  // std::cout <<"Will mix "<<object<<"s with InputTag= "<<tag.encode()<<", label will be "<<label<<std::endl;
108 
109  } else if (object == "RecoTrack") {
110  InputTag tag;
111  if (!tags.empty())
112  tag = tags[0];
114 
115  branchesActivate(TypeID(typeid(std::vector<reco::Track>)).friendlyClassName(), std::string(""), tag, label);
117  TypeID(typeid(std::vector<reco::TrackExtra>)).friendlyClassName(), std::string(""), tag, label);
120  std::string(""),
121  tag,
122  label);
123  adjustersObjects_.push_back(
124  new Adjuster<edm::OwnVector<TrackingRecHit> >(tag, consumesCollector(), wrapLongTimes_));
125  // note: no crossing frame is foreseen to be used for this object type
126 
127  LogInfo("MixingModule") << "Will mix " << object << "s with InputTag= " << tag.encode() << ", label will be "
128  << label;
129  //std::cout <<"Will mix "<<object<<"s with InputTag= "<<tag.encode()<<", label will be "<<label<<std::endl;
130 
131  } else if (object == "SimVertex") {
132  InputTag tag;
133  if (!tags.empty())
134  tag = tags[0];
136 
137  branchesActivate(TypeID(typeid(std::vector<SimVertex>)).friendlyClassName(), std::string(""), tag, label);
138  adjustersObjects_.push_back(new Adjuster<std::vector<SimVertex> >(tag, consumesCollector(), wrapLongTimes_));
139  bool makeCrossingFrame = pset.getUntrackedParameter<bool>("makeCrossingFrame", false);
140  if (makeCrossingFrame) {
142  minBunch_, maxBunch_, bunchSpace_, std::string(""), label, labelCF, maxNbSources_, tag, tagCF));
143  produces<CrossingFrame<SimVertex> >(label);
144  }
145  consumes<std::vector<SimVertex> >(tag);
146 
147  LogInfo("MixingModule") << "Will mix " << object << "s with InputTag " << tag.encode() << ", label will be "
148  << label;
149  // std::cout <<"Will mix "<<object<<"s with InputTag "<<tag.encode()<<", label will be "<<label<<std::endl;
150 
151  } else if (object == "HepMCProduct") {
152  InputTag tag;
153  if (!tags.empty())
154  tag = tags[0];
156 
157  branchesActivate(TypeID(typeid(HepMCProduct)).friendlyClassName(), std::string(""), tag, label);
158  bool makeCrossingFrame = pset.getUntrackedParameter<bool>("makeCrossingFrame", false);
159  if (makeCrossingFrame) {
161  minBunch_, maxBunch_, bunchSpace_, std::string(""), label, labelCF, maxNbSources_, tag, tagCF, tags));
162  produces<CrossingFrame<HepMCProduct> >(label);
163  }
164  consumes<HepMCProduct>(tag);
165 
166  LogInfo("MixingModule") << "Will mix " << object << "s with InputTag= " << tag.encode() << ", label will be "
167  << label;
168  // std::cout <<"Will mix "<<object<<"s with InputTag= "<<tag.encode()<<", label will be "<<label<<std::endl;
169  for (size_t i = 1; i < tags.size(); ++i) {
170  InputTag fallbackTag = tags[i];
171  std::string fallbackLabel;
173  TypeID(typeid(HepMCProduct)).friendlyClassName(), std::string(""), fallbackTag, fallbackLabel);
174  mayConsume<HepMCProduct>(fallbackTag);
175  }
176 
177  } else if (object == "PCaloHit") {
178  std::vector<std::string> subdets = pset.getParameter<std::vector<std::string> >("subdets");
179  std::vector<std::string> crossingFrames =
180  pset.getUntrackedParameter<std::vector<std::string> >("crossingFrames", std::vector<std::string>());
182  for (unsigned int ii = 0; ii < subdets.size(); ++ii) {
183  InputTag tag;
184  if (tags.size() == 1)
185  tag = tags[0];
186  else if (tags.size() > 1)
187  tag = tags[ii];
189 
190  branchesActivate(TypeID(typeid(std::vector<PCaloHit>)).friendlyClassName(), subdets[ii], tag, label);
191  adjustersObjects_.push_back(new Adjuster<std::vector<PCaloHit> >(tag, consumesCollector(), wrapLongTimes_));
192  if (binary_search_all(crossingFrames, tag.instance())) {
194  minBunch_, maxBunch_, bunchSpace_, subdets[ii], label, labelCF, maxNbSources_, tag, tagCF));
195  produces<CrossingFrame<PCaloHit> >(label);
196  consumes<std::vector<PCaloHit> >(tag);
197  }
198 
199  LogInfo("MixingModule") << "Will mix " << object << "s with InputTag= " << tag.encode() << ", label will be "
200  << label;
201  // std::cout <<"Will mix "<<object<<"s with InputTag= "<<tag.encode()<<", label will be "<<label<<std::endl;
202  }
203 
204  } else if (object == "PSimHit") {
205  std::vector<std::string> subdets = pset.getParameter<std::vector<std::string> >("subdets");
206  std::vector<std::string> crossingFrames =
207  pset.getUntrackedParameter<std::vector<std::string> >("crossingFrames", std::vector<std::string>());
209  std::vector<std::string> pcrossingFrames =
210  pset.getUntrackedParameter<std::vector<std::string> >("pcrossingFrames", std::vector<std::string>());
212  for (unsigned int ii = 0; ii < subdets.size(); ++ii) {
213  InputTag tag;
214  if (tags.size() == 1)
215  tag = tags[0];
216  else if (tags.size() > 1)
217  tag = tags[ii];
219 
220  branchesActivate(TypeID(typeid(std::vector<PSimHit>)).friendlyClassName(), subdets[ii], tag, label);
221  adjustersObjects_.push_back(new Adjuster<std::vector<PSimHit> >(tag, consumesCollector(), wrapLongTimes_));
222  if (binary_search_all(crossingFrames, tag.instance())) {
223  bool makePCrossingFrame = binary_search_all(pcrossingFrames, tag.instance());
225  maxBunch_,
226  bunchSpace_,
227  subdets[ii],
228  label,
229  labelCF,
231  tag,
232  tagCF,
233  makePCrossingFrame));
234  produces<CrossingFrame<PSimHit> >(label);
235  if (makePCrossingFrame) {
236  produces<PCrossingFrame<PSimHit> >(label);
237  }
238  consumes<std::vector<PSimHit> >(tag);
239  }
240 
241  LogInfo("MixingModule") << "Will mix " << object << "s with InputTag= " << tag.encode() << ", label will be "
242  << label;
243  // std::cout <<"Will mix "<<object<<"s with InputTag= "<<tag.encode()<<", label will be "<<label<<std::endl;
244  }
245  } else {
246  LogWarning("MixingModule")
247  << "You have asked to mix an unknown type of object(" << object
248  << ").\n If you want to include it in mixing, please contact the authors of the MixingModule!";
249  }
250  //} //if for mixProdStep2
251  } //while over the mixObjects parameters
252 
254  for (unsigned int branch = 0; branch < wantedBranches_.size(); ++branch)
255  LogDebug("MixingModule") << "Will keep branch " << wantedBranches_[branch] << " for mixing ";
256 
258 
259  produces<PileupMixingContent>();
260 
261  produces<CrossingFramePlaybackInfoNew>();
262 
263  edm::ConsumesCollector iC(consumesCollector());
264  // Create and configure digitizers
265  createDigiAccumulators(ps_mix, iC);
266  }
267 
269  ParameterSet const& digiPSet = mixingPSet.getParameterSet("digitizers");
270  std::vector<std::string> digiNames = digiPSet.getParameterNames();
271  for (auto const& digiName : digiNames) {
272  ParameterSet const& pset = digiPSet.getParameterSet(digiName);
273  if (pset.existsAs<edm::InputTag>("HepMCProductLabel")) {
274  consumes<HepMCProduct>(pset.getParameter<edm::InputTag>("HepMCProductLabel"));
275  }
276  std::unique_ptr<DigiAccumulatorMixMod> accumulator = std::unique_ptr<DigiAccumulatorMixMod>(
277  DigiAccumulatorMixModFactory::get()->makeDigiAccumulator(pset, producesCollector(), iC));
278  // Create appropriate DigiAccumulator
279  if (accumulator.get() != nullptr) {
280  digiAccumulators_.push_back(accumulator.release());
281  }
282  }
283  }
284 
286  //change the basic parameters.
288  setup.get<MixingRcd>().get(config);
289  minBunch_ = config->minBunch();
290  maxBunch_ = config->maxBunch();
291  bunchSpace_ = config->bunchSpace();
292  //propagate to change the workers
293  for (unsigned int ii = 0; ii < workersObjects_.size(); ++ii) {
294  workersObjects_[ii]->reload(setup);
295  }
296  }
297 
299  const std::string& subdet,
300  InputTag& tag,
301  std::string& label) {
302  label = tag.label() + tag.instance();
303  wantedBranches_.push_back(friendlyName + '_' + tag.label() + '_' + tag.instance());
304 
305  //if useCurrentProcessOnly, we have to change the input tag
308  tag = InputTag(tag.label(), tag.instance(), processName);
309  }
310  }
311 
313  if (adjusters_.empty()) {
314  for (auto const& adjuster : adjustersObjects_) {
315  if (adjuster->checkSignal(e)) {
316  adjusters_.push_back(adjuster);
317  }
318  }
319  }
320  if (workers_.empty()) {
321  for (auto const& worker : workersObjects_) {
322  if (worker->checkSignal(e)) {
323  workers_.push_back(worker);
324  }
325  }
326  }
327  }
328 
330  //create playback info
332  //and CrossingFrames
333  for (unsigned int ii = 0; ii < workers_.size(); ++ii) {
334  workers_[ii]->createnewEDProduct();
335  }
336  }
337 
338  // Virtual destructor needed.
340  for (auto& worker : workersObjects_) {
341  delete worker;
342  }
343 
344  for (auto& adjuster : adjustersObjects_) {
345  delete adjuster;
346  }
347 
348  for (auto& digiAccumulator : digiAccumulators_) {
349  delete digiAccumulator;
350  }
351  }
352 
354  LogDebug("MixingModule") << "===============> adding signals for " << e.id();
355 
357  // fill in signal part of CrossingFrame
358  for (unsigned int ii = 0; ii < workers_.size(); ++ii) {
359  workers_[ii]->addSignals(e);
360  }
361  }
362 
363  bool MixingModule::pileAllWorkers(EventPrincipal const& eventPrincipal,
364  ModuleCallingContext const* mcc,
365  int bunchCrossing,
366  int eventId,
367  int& vertexOffset,
368  const edm::EventSetup& setup,
369  StreamID const& streamID) {
370  InternalContext internalContext(eventPrincipal.id(), mcc);
371  ParentContext parentContext(&internalContext);
372  ModuleCallingContext moduleCallingContext(&moduleDescription());
373  ModuleContextSentry moduleContextSentry(&moduleCallingContext, parentContext);
374 
375  for (auto const& adjuster : adjusters_) {
376  adjuster->doOffset(bunchSpace_, bunchCrossing, eventPrincipal, &moduleCallingContext, eventId, vertexOffset);
377  }
378  PileUpEventPrincipal pep(eventPrincipal, &moduleCallingContext, bunchCrossing);
379 
380  accumulateEvent(pep, setup, streamID);
381 
382  for (auto const& worker : workers_) {
383  LogDebug("MixingModule") << " merging Event: id " << eventPrincipal.id();
384  // std::cout <<"PILEALLWORKERS merging Event: id " << eventPrincipal.id() << std::endl;
385 
386  worker->addPileups(eventPrincipal, &moduleCallingContext, eventId);
387  }
388 
389  return true;
390  }
391 
393  using namespace std::placeholders;
394 
395  // Don't allocate because PileUp will do it for us.
396  std::vector<edm::SecondaryEventIDAndFileInfo> recordEventID;
397  std::vector<size_t> sizes;
398  sizes.reserve(maxNbSources_ * (maxBunch_ + 1 - minBunch_));
399  size_t playbackCounter = 0U;
401  edm::Handle<CrossingFramePlaybackInfoExtended> oldFormatPlaybackInfo_H;
402  bool oldFormatPlayback = false;
403  if (playback_) {
404  bool got = e.getByLabel(inputTagPlayback_, playbackInfo_H);
405  if (!got) {
406  bool gotOld = e.getByLabel(inputTagPlayback_, oldFormatPlaybackInfo_H);
407  if (!gotOld) {
408  throw cms::Exception("MixingProductNotFound")
409  << " No "
410  "CrossingFramePlaybackInfoNew on the input file, but playback "
411  "option set!!!!! Please change the input file if you really want "
412  "playback!!!!!!"
413  << std::endl;
414  }
415  oldFormatPlayback = true;
416  }
417  }
418 
419  // source[0] is "real" pileup. Check to see that this is what we are doing.
420 
421  std::vector<int> PileupList;
422  PileupList.clear();
423  TrueNumInteractions_.clear();
424 
425  std::shared_ptr<PileUp> source0 = inputSources_[0];
426 
427  if ((source0 && source0->doPileUp(0)) && !playback_) {
428  // if((!inputSources_[0] || !inputSources_[0]->doPileUp()) && !playback_ )
429 
430  // Pre-calculate all pileup distributions before we go fishing for events
431 
432  source0->CalculatePileup(minBunch_, maxBunch_, PileupList, TrueNumInteractions_, e.streamID());
433  }
434 
435  // pre-populate Pileup information
436  // necessary for luminosity-dependent effects during hit accumulation
437 
438  std::vector<int> numInteractionList;
439  std::vector<int> bunchCrossingList;
440  std::vector<float> TrueInteractionList;
441  std::vector<edm::EventID> eventInfoList; // will be empty if we pre-populate, but it's not used in digitizers
442 
443  if (!playback_) {
444  //Makin' a list: Basically, we don't care about the "other" sources at this point.
445  for (int bunchCrossing = minBunch_; bunchCrossing <= maxBunch_; ++bunchCrossing) {
446  bunchCrossingList.push_back(bunchCrossing);
447  if (!inputSources_[0] || !inputSources_[0]->doPileUp(0)) {
448  numInteractionList.push_back(0);
449  TrueInteractionList.push_back(0);
450  } else {
451  numInteractionList.push_back(PileupList[bunchCrossing - minBunch_]);
452  TrueInteractionList.push_back((TrueNumInteractions_)[bunchCrossing - minBunch_]);
453  }
454  }
455  } else { // have to read PU information from playback info
456  for (int bunchIdx = minBunch_; bunchIdx <= maxBunch_; ++bunchIdx) {
457  bunchCrossingList.push_back(bunchIdx);
458  for (size_t readSrcIdx = 0; readSrcIdx < maxNbSources_; ++readSrcIdx) {
459  if (oldFormatPlayback) {
460  std::vector<edm::EventID> const& playEventID =
461  oldFormatPlaybackInfo_H->getStartEventId(readSrcIdx, bunchIdx);
462  size_t numberOfEvents = playEventID.size();
463  if (readSrcIdx == 0) {
464  PileupList.push_back(numberOfEvents);
465  TrueNumInteractions_.push_back(numberOfEvents);
466  numInteractionList.push_back(numberOfEvents);
467  TrueInteractionList.push_back(numberOfEvents);
468  }
469  } else {
470  size_t numberOfEvents = playbackInfo_H->getNumberOfEvents(bunchIdx, readSrcIdx);
471  if (readSrcIdx == 0) {
472  PileupList.push_back(numberOfEvents);
473  TrueNumInteractions_.push_back(numberOfEvents);
474  numInteractionList.push_back(numberOfEvents);
475  TrueInteractionList.push_back(numberOfEvents);
476  }
477  }
478  }
479  }
480  }
481 
482  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
483  accItr != accEnd;
484  ++accItr) {
485  (*accItr)->StorePileupInformation(
486  bunchCrossingList, numInteractionList, TrueInteractionList, eventInfoList, bunchSpace_);
487  }
488 
489  // for (int bunchIdx = minBunch_; bunchIdx <= maxBunch_; ++bunchIdx) {
490  // std::cout << " bunch ID, Pileup, True " << bunchIdx << " " << PileupList[bunchIdx-minBunch_] << " " << TrueNumInteractions_[bunchIdx-minBunch_] << std::endl;
491  //}
492 
493  for (int bunchIdx = minBunch_; bunchIdx <= maxBunch_; ++bunchIdx) {
494  for (size_t setBcrIdx = 0; setBcrIdx < workers_.size(); ++setBcrIdx) {
495  workers_[setBcrIdx]->setBcrOffset();
496  }
497  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
498  accItr != accEnd;
499  ++accItr) {
500  (*accItr)->initializeBunchCrossing(e, setup, bunchIdx);
501  }
502 
503  for (size_t readSrcIdx = 0; readSrcIdx < maxNbSources_; ++readSrcIdx) {
504  std::shared_ptr<PileUp> source = inputSources_[readSrcIdx]; // this looks like we create
505  // new PileUp objects for each
506  // source for each event?
507  // Why?
508  for (size_t setSrcIdx = 0; setSrcIdx < workers_.size(); ++setSrcIdx) {
509  workers_[setSrcIdx]->setSourceOffset(readSrcIdx);
510  }
511 
512  if (!source || !source->doPileUp(bunchIdx)) {
513  sizes.push_back(0U);
514  if (playback_ && !oldFormatPlayback) {
515  playbackCounter += playbackInfo_H->getNumberOfEvents(bunchIdx, readSrcIdx);
516  }
517  continue;
518  }
519 
520  // int eventId = 0;
521  int vertexOffset = 0;
522 
523  ModuleCallingContext const* mcc = e.moduleCallingContext();
524  if (!playback_) {
525  // non-minbias pileup only gets one event for now. Fix later if desired.
526  int numberOfEvents = (readSrcIdx == 0 ? PileupList[bunchIdx - minBunch_] : 1);
527  sizes.push_back(numberOfEvents);
528  inputSources_[readSrcIdx]->readPileUp(e.id(),
529  recordEventID,
530  std::bind(&MixingModule::pileAllWorkers,
531  std::ref(*this),
532  _1,
533  mcc,
534  bunchIdx,
535  _2,
536  vertexOffset,
537  std::ref(setup),
538  e.streamID()),
539  numberOfEvents,
540  e.streamID());
541  } else if (oldFormatPlayback) {
542  std::vector<edm::EventID> const& playEventID = oldFormatPlaybackInfo_H->getStartEventId(readSrcIdx, bunchIdx);
543  size_t numberOfEvents = playEventID.size();
544  if (readSrcIdx == 0) {
545  PileupList.push_back(numberOfEvents);
546  TrueNumInteractions_.push_back(numberOfEvents);
547  }
548  sizes.push_back(numberOfEvents);
549  std::vector<EventID>::const_iterator begin = playEventID.begin();
550  std::vector<EventID>::const_iterator end = playEventID.end();
551  inputSources_[readSrcIdx]->playOldFormatPileUp(begin,
552  end,
553  recordEventID,
554  std::bind(&MixingModule::pileAllWorkers,
555  std::ref(*this),
556  _1,
557  mcc,
558  bunchIdx,
559  _2,
560  vertexOffset,
561  std::ref(setup),
562  e.streamID()));
563  } else {
564  size_t numberOfEvents = playbackInfo_H->getNumberOfEvents(bunchIdx, readSrcIdx);
565  if (readSrcIdx == 0) {
566  PileupList.push_back(numberOfEvents);
567  TrueNumInteractions_.push_back(numberOfEvents);
568  }
569  sizes.push_back(numberOfEvents);
570  std::vector<SecondaryEventIDAndFileInfo>::const_iterator begin = playbackInfo_H->getEventId(playbackCounter);
571  playbackCounter += numberOfEvents;
572  std::vector<SecondaryEventIDAndFileInfo>::const_iterator end = playbackInfo_H->getEventId(playbackCounter);
573  inputSources_[readSrcIdx]->playPileUp(begin,
574  end,
575  recordEventID,
576  std::bind(&MixingModule::pileAllWorkers,
577  std::ref(*this),
578  _1,
579  mcc,
580  bunchIdx,
581  _2,
582  vertexOffset,
583  std::ref(setup),
584  e.streamID()));
585  }
586  }
587  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
588  accItr != accEnd;
589  ++accItr) {
590  (*accItr)->finalizeBunchCrossing(e, setup, bunchIdx);
591  }
592  }
593 
594  // Save playback information
595  for (auto const item : recordEventID) {
596  eventInfoList.emplace_back(item.eventID());
597  }
598 
599  // setInfo swaps recordEventID, so recordEventID is useless (empty) after the call.
600  playbackInfo_->setInfo(recordEventID, sizes);
601 
602  // Keep track of pileup accounting...
603 
604  std::unique_ptr<PileupMixingContent> PileupMixing_;
605 
606  PileupMixing_ = std::unique_ptr<PileupMixingContent>(new PileupMixingContent(
607  bunchCrossingList, numInteractionList, TrueInteractionList, eventInfoList, bunchSpace_));
608 
609  e.put(std::move(PileupMixing_));
610 
611  // we have to do the ToF transformation for PSimHits once all pileup has been added
612  for (unsigned int ii = 0; ii < workers_.size(); ++ii) {
613  workers_[ii]->setTof();
614  workers_[ii]->put(e);
615  }
616  }
617 
619  if (playbackInfo_) {
620  std::unique_ptr<CrossingFramePlaybackInfoNew> pOut(playbackInfo_);
621  e.put(std::move(pOut));
622  }
623  }
624 
626  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
627  accItr != accEnd;
628  ++accItr) {
629  (*accItr)->beginRun(run, setup);
630  }
632  }
633 
635  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
636  accItr != accEnd;
637  ++accItr) {
638  (*accItr)->endRun(run, setup);
639  }
641  }
642 
644  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
645  accItr != accEnd;
646  ++accItr) {
647  (*accItr)->beginLuminosityBlock(lumi, setup);
648  }
650  }
651 
653  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
654  accItr != accEnd;
655  ++accItr) {
656  (*accItr)->endLuminosityBlock(lumi, setup);
657  }
659  }
660 
662  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
663  accItr != accEnd;
664  ++accItr) {
665  (*accItr)->initializeEvent(event, setup);
666  }
667  }
668 
670  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
671  accItr != accEnd;
672  ++accItr) {
673  (*accItr)->accumulate(event, setup);
674  }
675  }
676 
678  edm::EventSetup const& setup,
679  edm::StreamID const& streamID) {
680  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
681  accItr != accEnd;
682  ++accItr) {
683  (*accItr)->accumulate(event, setup, streamID);
684  }
685  }
686 
688  for (Accumulators::const_iterator accItr = digiAccumulators_.begin(), accEnd = digiAccumulators_.end();
689  accItr != accEnd;
690  ++accItr) {
691  (*accItr)->finalizeEvent(event, setup);
692  }
693  }
694 } // namespace edm
edm::BMixingModule::endRun
void endRun(const edm::Run &r, const edm::EventSetup &setup) override
Definition: BMixingModule.cc:256
edm::BMixingModule::inputSources_
std::vector< std::shared_ptr< PileUp > > inputSources_
Definition: BMixingModule.h:108
edm::StreamID
Definition: StreamID.h:30
CrossingFramePlaybackInfoNew::getEventId
std::vector< edm::SecondaryEventIDAndFileInfo >::const_iterator getEventId(size_t offset) const
Definition: CrossingFramePlaybackInfoNew.h:42
edm::BMixingModule::endLuminosityBlock
void endLuminosityBlock(const edm::LuminosityBlock &l, const edm::EventSetup &setup) override
Definition: BMixingModule.cc:249
edm::source
static const std::string source("source")
edm::BMixingModule::bunchSpace_
int bunchSpace_
Definition: BMixingModule.h:91
Handle.h
ModuleCallingContext.h
electrons_cff.bool
bool
Definition: electrons_cff.py:372
MixingRcd
Definition: MixingRcd.h:24
mps_fire.i
i
Definition: mps_fire.py:355
edm::BMixingModule::minBunch_
int minBunch_
Definition: BMixingModule.h:94
MessageLogger.h
CrossingFramePlaybackInfoNew.h
ESHandle.h
edm::sort_all
void sort_all(RandomAccessSequence &s)
wrappers for std::sort
Definition: Algorithms.h:92
edm::ModuleContextSentry
Definition: ModuleContextSentry.h:11
edm::LuminosityBlock
Definition: LuminosityBlock.h:50
TriggerNamesService.h
edm::Run
Definition: Run.h:45
MixingModuleConfig.h
MicroEventContent_cff.branch
branch
Definition: MicroEventContent_cff.py:152
edm::MixingModule::reload
void reload(const edm::EventSetup &) override
Definition: MixingModule.cc:285
edm
HLT enums.
Definition: AlignableModifier.h:19
fireworks::subdets
static const std::string subdets[7]
Definition: TrackUtils.cc:60
edm::LogInfo
Definition: MessageLogger.h:254
edm::BMixingModule::maxBunch_
int maxBunch_
Definition: BMixingModule.h:95
Algorithms.h
TypeID.h
edm::ClonePolicy
Definition: ClonePolicy.h:6
CrossingFramePlaybackInfoExtended::getStartEventId
std::vector< edm::EventID > getStartEventId(const unsigned int s, const int bcr) const
Definition: CrossingFramePlaybackInfoExtended.h:32
PileUpEventPrincipal
Definition: PileUpEventPrincipal.h:19
edm::BMixingModule::TrueNumInteractions_
std::vector< float > TrueNumInteractions_
Definition: BMixingModule.h:103
edm::MixingModule::doPileUp
void doPileUp(edm::Event &e, const edm::EventSetup &es) override
Definition: MixingModule.cc:392
edm::Handle
Definition: AssociativeIterator.h:50
edm::EventPrincipal::id
EventID const & id() const
Definition: EventPrincipal.h:92
edm::BMixingModule
Definition: BMixingModule.h:40
edm::MixingWorker
Definition: MixingWorker.h:40
edm::MixingModule::playbackInfo_
CrossingFramePlaybackInfoNew * playbackInfo_
Definition: MixingModule.h:101
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
edm::MixingModule::wrapLongTimes_
bool wrapLongTimes_
Definition: MixingModule.h:109
edm::MixingModule::createnewEDProduct
void createnewEDProduct() override
Definition: MixingModule.cc:329
end
#define end
Definition: vmac.h:39
edm::BMixingModule::beginLuminosityBlock
void beginLuminosityBlock(const edm::LuminosityBlock &l, const edm::EventSetup &setup) override
Definition: BMixingModule.cc:233
edm::MixingModule::endRun
void endRun(Run const &r1, EventSetup const &c) override
Definition: MixingModule.cc:634
edm::MixingModule::endLuminosityBlock
void endLuminosityBlock(LuminosityBlock const &l1, EventSetup const &c) override
Definition: MixingModule.cc:652
CrossingFramePlaybackInfoNew
Definition: CrossingFramePlaybackInfoNew.h:23
CrossingFramePlaybackInfoExtended.h
edm::MixingModule::mixProdStep2_
bool mixProdStep2_
Definition: MixingModule.h:99
EDMException.h
config
Definition: config.py:1
edm::MixingModule::initializeEvent
void initializeEvent(Event const &event, EventSetup const &setup) override
Definition: MixingModule.cc:661
edm::EventPrincipal
Definition: EventPrincipal.h:46
edm::MixingModule::MixingModule
MixingModule(const edm::ParameterSet &ps, MixingCache::Config const *globalConf)
Definition: MixingModule.cc:41
MixingModule.h
edm::MixingModule::checkSignal
void checkSignal(const edm::Event &e) override
Definition: MixingModule.cc:312
names
const std::string names[nVars_]
Definition: PhotonIDValueMapProducer.cc:122
GlobalPosition_Frontier_DevDB_cff.tag
tag
Definition: GlobalPosition_Frontier_DevDB_cff.py:11
edm::BMixingModule::maxNbSources_
const static unsigned int maxNbSources_
Definition: BMixingModule.h:101
DigiAccumulatorMixMod.h
Service.h
edm::MixingModule::wantedBranches_
std::vector< std::string > wantedBranches_
Definition: MixingModule.h:107
edm::BMixingModule::playback_
bool playback_
Definition: BMixingModule.h:100
Provenance.h
edm::ESHandle
Definition: DTSurvey.h:22
edm::MixingModule::inputTagPlayback_
InputTag inputTagPlayback_
Definition: MixingModule.h:98
PileUpEventPrincipal.h
edm::InternalContext
Definition: InternalContext.h:23
edm::binary_search_all
bool binary_search_all(ForwardSequence const &s, Datum const &d)
wrappers for std::binary_search
Definition: Algorithms.h:58
edm::MixingModule::createDigiAccumulators
void createDigiAccumulators(const edm::ParameterSet &mixingPSet, edm::ConsumesCollector &iC)
Definition: MixingModule.cc:268
looper.config
config
Definition: looper.py:291
edm::MixingModule::workersObjects_
std::vector< MixingWorkerBase * > workersObjects_
Definition: MixingModule.h:106
mitigatedMETSequence_cff.U
U
Definition: mitigatedMETSequence_cff.py:36
edm::MixingModule::branchesActivate
virtual void branchesActivate(const std::string &friendlyName, const std::string &subdet, InputTag &tag, std::string &label)
Definition: MixingModule.cc:298
edm::ParentContext
Definition: ParentContext.h:27
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::MixingModule::useCurrentProcessOnly_
bool useCurrentProcessOnly_
Definition: MixingModule.h:108
edm::LogWarning
Definition: MessageLogger.h:141
edm::ParameterSet::exists
bool exists(std::string const &parameterName) const
checks if a parameter exists
Definition: ParameterSet.cc:674
BranchDescription.h
HLT_2018_cff.InputTag
InputTag
Definition: HLT_2018_cff.py:79016
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:670
edm::ParameterSet
Definition: ParameterSet.h:36
edm::MixingCache::Config
Definition: BMixingModule.h:29
edm::friendlyname::friendlyName
std::string friendlyName(std::string const &iFullName)
Definition: FriendlyName.cc:233
edm::get
T const & get(Event const &event, InputTag const &tag) noexcept(false)
Definition: Event.h:669
edm::ParameterSet::getParameterNames
std::vector< std::string > getParameterNames() const
Definition: ParameterSet.cc:656
edm::MixingModule::adjusters_
std::vector< AdjusterBase * > adjusters_
Definition: MixingModule.h:103
edm::Service
Definition: Service.h:30
DigiHGCalTB160_cff.crossingFrames
crossingFrames
Definition: DigiHGCalTB160_cff.py:7
PileupMixingContent
Definition: PileupMixingContent.h:24
genPUProtons_cfi.bunchCrossingList
bunchCrossingList
Definition: genPUProtons_cfi.py:5
edm::BMixingModule::dropUnwantedBranches
void dropUnwantedBranches(std::vector< std::string > const &wantedBranches)
Definition: BMixingModule.cc:305
InternalContext.h
edm::MixingModule::put
void put(edm::Event &e, const edm::EventSetup &es) override
Definition: MixingModule.cc:618
CrossingFramePlaybackInfoNew::setInfo
void setInfo(std::vector< edm::SecondaryEventIDAndFileInfo > &eventInfo, std::vector< size_t > &sizes)
Definition: CrossingFramePlaybackInfoNew.h:36
B2GTnPMonitor_cfi.item
item
Definition: B2GTnPMonitor_cfi.py:147
edm::EventSetup
Definition: EventSetup.h:57
edm::Adjuster
Definition: Adjuster.h:39
edm::MixingModule::accumulateEvent
void accumulateEvent(Event const &event, EventSetup const &setup)
Definition: MixingModule.cc:669
edm::MixingModule::~MixingModule
~MixingModule() override
Definition: MixingModule.cc:339
edm::MixingModule::workers_
std::vector< MixingWorkerBase * > workers_
Definition: MixingModule.h:105
edm::MixingModule::beginRun
void beginRun(Run const &r1, EventSetup const &c) override
Definition: MixingModule.cc:625
DigiHGCalTB160_cff.makeCrossingFrame
makeCrossingFrame
Definition: DigiHGCalTB160_cff.py:24
SimL1EmulatorRepack_CalouGT_cff.processName
processName
Definition: SimL1EmulatorRepack_CalouGT_cff.py:17
TrackingRecHit
Definition: TrackingRecHit.h:21
ValueMap.h
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
edm::MixingModule::pileAllWorkers
bool pileAllWorkers(EventPrincipal const &ep, ModuleCallingContext const *, int bcr, int id, int &offset, const edm::EventSetup &setup, edm::StreamID const &)
Definition: MixingModule.cc:363
edm::MixingModule::mixProdStep1_
bool mixProdStep1_
Definition: MixingModule.h:100
mixOne_premix_on_sim_cfi.accumulator
accumulator
Definition: mixOne_premix_on_sim_cfi.py:167
ParentContext.h
edm::TypeID
Definition: TypeID.h:22
eostools.move
def move(src, dest)
Definition: eostools.py:511
writedatasetfile.run
run
Definition: writedatasetfile.py:27
edm::MixingModule::addSignals
void addSignals(const edm::Event &e, const edm::EventSetup &es) override
Definition: MixingModule.cc:353
edm::MixingModule::adjustersObjects_
std::vector< AdjusterBase * > adjustersObjects_
Definition: MixingModule.h:104
edm::MixingModule::digiAccumulators_
Accumulators digiAccumulators_
Definition: MixingModule.h:112
Exception
Definition: hltDiff.cc:246
edm::MixingModule::finalizeEvent
void finalizeEvent(Event &event, EventSetup const &setup) override
Definition: MixingModule.cc:687
EventSetup.h
MixingWorker.h
triggerMatcherToHLTDebug_cfi.tags
tags
Definition: triggerMatcherToHLTDebug_cfi.py:9
edm::InputTag::kSkipCurrentProcess
static const std::string kSkipCurrentProcess
Definition: InputTag.h:53
ConsumesCollector.h
DigiAccumulatorMixModFactory.h
edm::HepMCProduct
Definition: HepMCProduct.h:18
event
Definition: event.py:1
edm::Event
Definition: Event.h:73
CrossingFramePlaybackInfoNew::getNumberOfEvents
size_t getNumberOfEvents(int bunchIdx, size_t sourceNumber) const
Definition: CrossingFramePlaybackInfoNew.h:48
lumi
Definition: LumiSectionData.h:20
mixObjects_cfi.pcrossingFrames
pcrossingFrames
Definition: mixObjects_cfi.py:50
ModuleContextSentry.h
edm::MixingModule::beginLuminosityBlock
void beginLuminosityBlock(LuminosityBlock const &l1, EventSetup const &c) override
Definition: MixingModule.cc:643
cuy.ii
ii
Definition: cuy.py:590
edm::BMixingModule::beginRun
void beginRun(const edm::Run &r, const edm::EventSetup &setup) override
Definition: BMixingModule.cc:241
edm::InputTag
Definition: InputTag.h:15
begin
#define begin
Definition: vmac.h:32
edm::ConsumesCollector
Definition: ConsumesCollector.h:39
label
const char * label
Definition: PFTauDecayModeTools.cc:11
edm::ParameterSet::getParameterSet
ParameterSet const & getParameterSet(std::string const &) const
Definition: ParameterSet.cc:2121
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
edm::OwnVector
Definition: OwnVector.h:24
edm::DigiAccumulatorMixModFactory::get
static DigiAccumulatorMixModFactory const * get()
Definition: DigiAccumulatorMixModFactory.cc:18
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
edm::ModuleCallingContext
Definition: ModuleCallingContext.h:29
Adjuster.h