CMS 3D CMS Logo

PreMixingModule.cc
Go to the documentation of this file.
1 
9 
20 
25 
28 #include "PreMixingPileupCopy.h"
29 
30 #include <functional>
31 #include <vector>
32 
33 namespace edm {
35  public:
36  PreMixingModule(const edm::ParameterSet& ps, MixingCache::Config const* globalConf);
37 
38  ~PreMixingModule() override = default;
39 
40  void checkSignal(const edm::Event &e) override {};
41  void createnewEDProduct() override {}
42  void addSignals(const edm::Event &e, const edm::EventSetup& ES) override;
43  void doPileUp(edm::Event &e,const edm::EventSetup& ES) override;
44  void put(edm::Event &e,const edm::EventSetup& ES) override ;
45 
46  void initializeEvent(edm::Event const& e, edm::EventSetup const& eventSetup) override;
47  void beginRun(edm::Run const& run, edm::EventSetup const& eventSetup) override;
48  void beginLuminosityBlock(LuminosityBlock const& l1, EventSetup const& c) override;
49  void endLuminosityBlock(LuminosityBlock const& l1, EventSetup const& c) override;
50  void endRun(const edm::Run& r, const edm::EventSetup& setup) override;
51 
52  private:
53  void pileWorker(const edm::EventPrincipal&, int bcr, int EventId,const edm::EventSetup& ES, ModuleCallingContext const*);
54 
56  bool addedPileup_ = false;
57 
58  std::vector<std::unique_ptr<PreMixingWorker> > workers_;
59  };
60 
62  BMixingModule(ps, globalConf),
63  puWorker_(ps.getParameter<edm::ParameterSet>("workers").getParameter<edm::ParameterSet>("pileup"), *this, consumesCollector())
64  {
65  const auto& workers = ps.getParameter<edm::ParameterSet>("workers");
66  std::vector<std::string> names = workers.getParameterNames();
67 
68  // Hack to keep the random number sequence unchanged for migration
69  // from DataMixingModule to PreMixingModule. To be removed in a
70  // subsequent PR doing only that.
71  {
72  std::vector<std::string> tmp;
73  auto hack = [&](const std::string& name) {
74  auto i = std::find(names.begin(), names.end(), name);
75  if(i != names.end()) {
76  tmp.push_back(*i);
77  names.erase(i);
78  }
79  };
80  hack("ecal");
81  hack("hcal");
82  hack("strip");
83  hack("pixel");
84  std::copy(names.begin(), names.end(), std::back_inserter(tmp));
85  names = std::move(tmp);
86  }
87 
88  for(const auto& name: names) {
89  if(name == "pileup") {
90  continue;
91  }
92  const auto& pset = workers.getParameter<edm::ParameterSet>(name);
93  std::string type = pset.getParameter<std::string>("workerType");
94  workers_.emplace_back(PreMixingWorkerFactory::get()->create(type, pset, *this, consumesCollector()));
95  }
96  }
97 
98 
100  for(auto& w: workers_) {
101  w->initializeEvent(e, ES);
102  }
103  }
104 
105 
107  BMixingModule::beginRun( run, ES);
108  for(auto& w: workers_) {
109  w->beginRun(run, ES);
110  }
111  }
112 
114  for(auto& w: workers_) {
115  w->endRun();
116  }
117  BMixingModule::endRun( run, ES);
118  }
119 
121  // fill in maps of hits
122 
123  LogDebug("PreMixingModule")<<"===============> adding MC signals for "<<e.id();
124 
125  for(auto& w: workers_) {
126  w->addSignals(e, ES);
127  }
128 
129  addedPileup_ = false;
130  }
131 
132  void PreMixingModule::pileWorker(const EventPrincipal &ep, int bcr, int eventNr, const edm::EventSetup& ES, edm::ModuleCallingContext const* mcc) {
133  InternalContext internalContext(ep.id(), mcc);
134  ParentContext parentContext(&internalContext);
135  ModuleCallingContext moduleCallingContext(&moduleDescription());
136  ModuleContextSentry moduleContextSentry(&moduleCallingContext, parentContext);
137 
138  PileUpEventPrincipal pep(ep, &moduleCallingContext, bcr);
139 
140  LogDebug("PreMixingModule") <<"\n===============> adding pileups from event "<<ep.id()<<" for bunchcrossing "<<bcr;
141 
142  // Note: setupPileUpEvent may modify the run and lumi numbers of the EventPrincipal to match that of the primary event.
143  setupPileUpEvent(ES);
144 
145  // check and see if we need to copy the pileup information from
146  // secondary stream to the output stream
147  // We only have the pileup event here, so pick the first time and store the info
148  if(!addedPileup_) {
150  addedPileup_ = true;
151  }
152 
153  // fill in maps of hits; same code as addSignals, except now applied to the pileup events
154 
155  for(auto& w: workers_) {
156  w->addPileups(pep, ES);
157  }
158  }
159 
161  {
162  using namespace std::placeholders;
163 
164  std::vector<edm::SecondaryEventIDAndFileInfo> recordEventID;
165  std::vector<int> PileupList;
166  TrueNumInteractions_.clear();
167 
169 
170  for (int bunchCrossing=minBunch_;bunchCrossing<=maxBunch_;++bunchCrossing) {
171  for (unsigned int isource=0;isource<maxNbSources_;++isource) {
172  std::shared_ptr<PileUp> source = inputSources_[isource];
173  if (!source || !(source->doPileUp(bunchCrossing)))
174  continue;
175 
176  if (isource==0)
177  source->CalculatePileup(minBunch_, maxBunch_, PileupList, TrueNumInteractions_, e.streamID());
178 
179  int NumPU_Events = 0;
180  if (isource ==0) {
181  NumPU_Events = PileupList[bunchCrossing - minBunch_];
182  } else {
183  // non-minbias pileup only gets one event for now. Fix later if desired.
184  NumPU_Events = 1;
185  }
186 
187  for(auto& w: workers_) {
188  w->initializeBunchCrossing(e, ES, bunchCrossing);
189  }
190 
191  source->readPileUp(
192  e.id(),
193  recordEventID,
194  std::bind(&PreMixingModule::pileWorker, std::ref(*this),
195  _1, bunchCrossing, _2, std::cref(ES), mcc),
196  NumPU_Events,
197  e.streamID()
198  );
199 
200  for(auto& w: workers_) {
201  w->finalizeBunchCrossing(e, ES, bunchCrossing);
202  }
203  }
204  }
205  }
206 
208  // individual workers...
209  // move pileup first so we have access to the information for the put step
210  const auto& ps = puWorker_.getPileupSummaryInfo();
211  int bunchSpacing = puWorker_.getBunchSpacing();
212 
213  for(auto& w: workers_) {
214  w->put(e, ES, ps, bunchSpacing);
215  }
216 
218  }
219 
222  for(auto& w: workers_) {
223  w->beginLuminosityBlock(l1,c);
224  }
225  }
226 
229  }
230 }
231 
236 
237 
#define LogDebug(id)
type
Definition: HCALResponse.h:21
T getParameter(std::string const &) const
void createnewEDProduct() override
void beginRun(const edm::Run &r, const edm::EventSetup &setup) override
static std::string const source("source")
const double w
Definition: UKUtility.cc:23
def copy(args, dbName)
def create(alignables, pedeDump, additionalData, outputFile, config)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::vector< float > TrueNumInteractions_
void endRun(const edm::Run &r, const edm::EventSetup &setup) override
EventID const & id() const
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:1
void beginRun(edm::Run const &run, edm::EventSetup const &eventSetup) override
void putPileupInfo(edm::Event &e)
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
const std::string names[nVars_]
void endRun(const edm::Run &r, const edm::EventSetup &setup) override
void initializeEvent(edm::Event const &e, edm::EventSetup const &eventSetup) override
void endLuminosityBlock(LuminosityBlock const &l1, EventSetup const &c) override
void addPileupInfo(PileUpEventPrincipal const &pep)
ModuleCallingContext const * moduleCallingContext() const
Definition: Event.h:269
void put(edm::Event &e, const edm::EventSetup &ES) override
static const unsigned int maxNbSources_
void beginLuminosityBlock(LuminosityBlock const &l1, EventSetup const &c) override
void pileWorker(const edm::EventPrincipal &, int bcr, int EventId, const edm::EventSetup &ES, ModuleCallingContext const *)
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
edm::EventID id() const
Definition: EventBase.h:60
~PreMixingModule() override=default
HLT enums.
std::vector< std::shared_ptr< PileUp > > inputSources_
std::vector< std::unique_ptr< PreMixingWorker > > workers_
void checkSignal(const edm::Event &e) override
void addSignals(const edm::Event &e, const edm::EventSetup &ES) override
StreamID streamID() const
Definition: Event.h:96
void beginLuminosityBlock(const edm::LuminosityBlock &l, const edm::EventSetup &setup) override
PreMixingPileupCopy puWorker_
const std::vector< PileupSummaryInfo > & getPileupSummaryInfo() const
void setupPileUpEvent(const edm::EventSetup &setup)
void endLuminosityBlock(const edm::LuminosityBlock &l, const edm::EventSetup &setup) override
def move(src, dest)
Definition: eostools.py:510
T get(const Candidate &c)
Definition: component.h:55
Definition: Run.h:44
PreMixingModule(const edm::ParameterSet &ps, MixingCache::Config const *globalConf)
void doPileUp(edm::Event &e, const edm::EventSetup &ES) override