LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
MergeSimSources_module.cc
Go to the documentation of this file.
1 // Class: MergeSimSources
3 // Module Type: producer
4 // File: MergeSimSources_module.cc
5 //
6 // Generated at Tue Feb 17 12:16:35 2015 by Wesley Ketchum using artmod
7 // from cetpkgsupport v1_08_02.
9 
17 #include "fhiclcpp/ParameterSet.h"
18 #include "fhiclcpp/types/Atom.h"
22 
26 
27 #include "range/v3/view/zip.hpp"
28 
29 #include <memory>
30 #include <optional>
31 #include <string>
32 #include <utility>
33 #include <vector>
34 
35 #include "MergeSimSources.h"
46 
47 namespace sim {
48  class MergeSimSources;
49 }
50 
52 public:
53  struct Config {
54 
56  fhicl::Name{"InputSourcesLabels"},
57  fhicl::Comment{"label of the LArG4 products to merge"}};
58 
60  fhicl::Name{"TrackIDOffsets"},
61  fhicl::Comment{"offset to add to the MC particles from each source"}};
62 
64  fhicl::Name{"StoreReflected"},
65  fhicl::Comment{"whether to merge also photons from reflections"},
66  false // default
67  };
68 
70  fhicl::Name{"FillMCParticles"},
71  fhicl::Comment{"whether to merge MCParticle"},
72  true // default
73  };
74 
76  fhicl::Name{"FillSimPhotons"},
77  fhicl::Comment{"whether to merge SimPhotons"},
78  true // default
79  };
80 
82  fhicl::Name{"FillSimChannels"},
83  fhicl::Comment{"whether to merge SimChannels"},
84  true // default
85  };
86 
88  fhicl::Name{"FillAuxDetSimChannels"},
89  fhicl::Comment{"whether to merge AuxDetSimChannels"},
90  true // default
91  };
92 
94  fhicl::Name{"FillSimEnergyDeposits"},
95  fhicl::Comment{"merges energy deposit collection; if omitted, follows LArG4Parmeters"}};
96 
98  fhicl::Name{"EnergyDepositInstanceLabels"},
99  fhicl::Comment{"labels of sim::SimEnergyDeposit collections to merge"},
100  std::vector<std::string>{"TPCActive", "Other"} // default
101  };
102 
104  fhicl::Name{"FillAuxDetHits"},
105  fhicl::Comment{"whether to merge aux det hit collections"},
106  false // default
107  };
108 
110  fhicl::Name{"AuxDetHitsInstanceLabels"},
111  fhicl::Comment{"labels of AuxDetHits collections to merge"},
112  std::vector<std::string>{"LArG4DetectorServicevolAuxDetSensitiveCRTStripY",
113  "Other"} // default
114  };
115 
117  fhicl::Name{"FillParticleAncestryMaps"},
118  fhicl::Comment{"whether to merge particle ancestry maps"},
119  true};
120 
121  }; // struct Config
122 
124 
125  explicit MergeSimSources(Parameters const& config);
126 
127  // Required functions.
128  void produce(art::Event& e) override;
129 
130 private:
131  std::vector<art::InputTag> const fInputSourcesLabels;
132  std::vector<int> const fTrackIDOffsets;
133  bool const fUseLitePhotons;
134  bool const fStoreReflected;
135  bool const fFillMCParticles;
136  bool const fFillSimPhotons;
137  bool const fFillSimChannels;
140  std::vector<std::string> const fEnergyDepositionInstances;
141  bool const fFillAuxDetHits;
142  std::vector<std::string> const fAuxDetHitsInstanceLabels;
144 
145  static std::string const ReflectedLabel;
146 
147  void dumpConfiguration() const;
148 };
149 
150 namespace {
151 
152  template <typename Optional>
153  std::optional<typename Optional::value_type> getOptionalValue(Optional const& parameter)
154  {
155 
156  using Value_t = typename Optional::value_type;
157 
158  if (!parameter.hasValue()) return std::nullopt;
159 
160  Value_t value;
161  parameter(value);
162  return {value};
163 
164  } // getOptionalValue(Optional& parameter)
165 
166 } // local namespace
167 
168 std::string const sim::MergeSimSources::ReflectedLabel{"Reflected"};
169 
171  : EDProducer{params}
172  , fInputSourcesLabels(params().InputSourcesLabels())
173  , fTrackIDOffsets(params().TrackIDOffsets())
175  , fStoreReflected(params().StoreReflected())
176  , fFillMCParticles(params().FillMCParticles())
177  , fFillSimPhotons(params().FillSimPhotons())
178  , fFillSimChannels(params().FillSimChannels())
179  , fFillAuxDetSimChannels(params().FillAuxDetSimChannels())
181  getOptionalValue(params().FillSimEnergyDeposits)
182  .value_or(art::ServiceHandle<sim::LArG4Parameters const>()->FillSimEnergyDeposits()))
183  , fEnergyDepositionInstances(params().EnergyDepositInstanceLabels())
184  , fFillAuxDetHits(params().FillAuxDetHits())
185  , fAuxDetHitsInstanceLabels(params().AuxDetHitsInstanceLabels())
186  , fFillParticleAncestryMaps(params().FillParticleAncestryMaps())
187 {
188 
189  if (fInputSourcesLabels.size() != fTrackIDOffsets.size()) {
191  << "Unequal input vector sizes: InputSourcesLabels and TrackIDOffsets.\n";
192  }
193 
194  for (art::InputTag const& tag : fInputSourcesLabels) {
195 
196  if (fFillMCParticles) {
197  consumes<std::vector<simb::MCParticle>>(tag);
198  consumes<art::Assns<simb::MCParticle, simb::MCTruth, sim::GeneratedParticleInfo>>(tag);
199  }
200 
201  if (fFillSimChannels) { consumes<std::vector<sim::SimChannel>>(tag); }
202 
203  if (fFillAuxDetSimChannels) { consumes<std::vector<sim::AuxDetSimChannel>>(tag); }
204 
205  if (fFillSimPhotons) {
206  if (!fUseLitePhotons)
207  consumes<std::vector<sim::SimPhotons>>(tag);
208  else
209  consumes<std::vector<sim::SimPhotonsLite>>(tag);
210 
211  if (fStoreReflected) {
212  art::InputTag const reflected_tag{tag.label(), ReflectedLabel};
213  if (!fUseLitePhotons)
214  consumes<std::vector<sim::SimPhotons>>(reflected_tag);
215  else
216  consumes<std::vector<sim::SimPhotonsLite>>(reflected_tag);
217  }
218  }
219 
221  for (std::string const& edep_inst : fEnergyDepositionInstances) {
222  art::InputTag const edep_tag{tag.label(), edep_inst};
223  consumes<std::vector<sim::SimEnergyDeposit>>(edep_tag);
224  }
225  } // if fill energy deposits
226 
227  if (fFillAuxDetHits) {
228  for (std::string const& auxdethit_inst : fAuxDetHitsInstanceLabels) {
229  art::InputTag const auxdethit_tag{tag.label(), auxdethit_inst};
230  consumes<std::vector<sim::AuxDetHit>>(auxdethit_tag);
231  }
232  }
233 
234  if (fFillParticleAncestryMaps) { consumes<sim::ParticleAncestryMap>(tag); }
235 
236  } // for input labels
237 
238  if (fFillMCParticles) {
239  produces<std::vector<simb::MCParticle>>();
240  produces<art::Assns<simb::MCTruth, simb::MCParticle, sim::GeneratedParticleInfo>>();
241  }
242  if (fFillSimChannels) { produces<std::vector<sim::SimChannel>>(); }
243  if (fFillAuxDetSimChannels) { produces<std::vector<sim::AuxDetSimChannel>>(); }
244 
245  if (fFillSimPhotons) {
246  if (!fUseLitePhotons)
247  produces<std::vector<sim::SimPhotons>>();
248  else
249  produces<std::vector<sim::SimPhotonsLite>>();
250 
251  if (fStoreReflected) {
252  if (!fUseLitePhotons)
253  produces<std::vector<sim::SimPhotons>>(ReflectedLabel);
254  else
255  produces<std::vector<sim::SimPhotonsLite>>(ReflectedLabel);
256  }
257  }
258 
260  for (std::string const& edep_inst : fEnergyDepositionInstances)
261  produces<std::vector<sim::SimEnergyDeposit>>(edep_inst);
262  } // if
263 
264  if (fFillAuxDetHits) {
265  for (std::string const& auxdethit_inst : fAuxDetHitsInstanceLabels)
266  produces<std::vector<sim::AuxDetHit>>(auxdethit_inst);
267  }
268 
269  if (fFillParticleAncestryMaps) { produces<std::vector<sim::ParticleAncestryMap>>(); }
270 
272 }
273 
275 {
276 
277  auto partCol = std::make_unique<std::vector<simb::MCParticle>>();
278  auto scCol = std::make_unique<std::vector<sim::SimChannel>>();
279  auto PhotonCol = std::make_unique<std::vector<sim::SimPhotons>>();
280  auto LitePhotonCol = std::make_unique<std::vector<sim::SimPhotonsLite>>();
281  auto ReflPhotonCol = std::make_unique<std::vector<sim::SimPhotons>>();
282  auto ReflLitePhotonCol = std::make_unique<std::vector<sim::SimPhotonsLite>>();
283  auto tpassn =
284  std::make_unique<art::Assns<simb::MCTruth, simb::MCParticle, sim::GeneratedParticleInfo>>();
285  auto adCol = std::make_unique<std::vector<sim::AuxDetSimChannel>>();
286  auto pamCol = std::make_unique<std::vector<sim::ParticleAncestryMap>>();
287 
288  using edeps_t = std::vector<sim::SimEnergyDeposit>;
289  std::vector<edeps_t> edepCols;
290  if (fFillSimEnergyDeposits) edepCols.resize(fEnergyDepositionInstances.size());
291 
292  using aux_det_hits_t = std::vector<sim::AuxDetHit>;
293  std::vector<aux_det_hits_t> auxdethitCols;
294  if (fFillAuxDetHits) auxdethitCols.resize(fAuxDetHitsInstanceLabels.size());
295 
297 
298  for (auto const& [i_source, input_label] : fInputSourcesLabels | ranges::views::enumerate) {
299 
300  if (fFillMCParticles) {
301  art::PtrMaker<simb::MCParticle> const makePartPtr{e};
302  auto const input_partCol = e.getValidHandle<std::vector<simb::MCParticle>>(input_label);
303  MergeUtility.MergeMCParticles(*partCol, *input_partCol, i_source);
304 
305  //truth-->particle assoc stuff here
306  const std::vector<size_t>& assocVectorPrimitive =
307  MergeUtility.GetMCParticleListMap().at(i_source);
309  input_partCol, e, input_label);
310  for (auto const i_p : util::counter(mctAssn.size()))
311  tpassn->addSingle(
312  mctAssn.at(i_p), makePartPtr(assocVectorPrimitive[i_p]), mctAssn.data(i_p).ref());
313  }
314 
315  if (fFillSimChannels) {
316  auto const& input_scCol = e.getProduct<std::vector<sim::SimChannel>>(input_label);
317  MergeUtility.MergeSimChannels(*scCol, input_scCol, i_source);
318  }
319 
321  auto const& input_adCol = e.getProduct<std::vector<sim::AuxDetSimChannel>>(input_label);
322  MergeUtility.MergeAuxDetSimChannels(*adCol, input_adCol, i_source);
323  }
324 
325  if (fFillSimPhotons) {
326  if (!fUseLitePhotons) {
327  auto const& input_PhotonCol = e.getProduct<std::vector<sim::SimPhotons>>(input_label);
328  MergeUtility.MergeSimPhotons(*PhotonCol, input_PhotonCol);
329  }
330  else {
331  auto const& input_LitePhotonCol =
332  e.getProduct<std::vector<sim::SimPhotonsLite>>(input_label);
333  MergeUtility.MergeSimPhotonsLite(*LitePhotonCol, input_LitePhotonCol);
334  }
335 
336  if (fStoreReflected) {
337  art::InputTag const input_reflected_label{input_label.label(), ReflectedLabel};
338  if (!fUseLitePhotons) {
339  auto const& input_PhotonCol =
340  e.getProduct<std::vector<sim::SimPhotons>>(input_reflected_label);
341  MergeUtility.MergeSimPhotons(*ReflPhotonCol, input_PhotonCol);
342  }
343  else {
344  auto const& input_LitePhotonCol =
345  e.getProduct<std::vector<sim::SimPhotonsLite>>(input_reflected_label);
346  MergeUtility.MergeSimPhotonsLite(*ReflLitePhotonCol, input_LitePhotonCol);
347  }
348  }
349  }
350 
352  for (auto const& [edep_inst, edepCol] :
354  art::InputTag const edep_tag{input_label.label(), edep_inst};
355  MergeUtility.MergeSimEnergyDeposits(edepCol, e.getProduct<edeps_t>(edep_tag), i_source);
356  } // for edep
357  } // if fill energy depositions
358 
359  if (fFillAuxDetHits) {
360  for (auto const& [auxdethit_inst, auxdethitCol] :
362  art::InputTag const auxdethit_tag{input_label.label(), auxdethit_inst};
363  MergeUtility.MergeAuxDetHits(
364  auxdethitCol, e.getProduct<aux_det_hits_t>(auxdethit_tag), i_source);
365  }
366 
368  auto const& input_pamCol = e.getProduct<sim::ParticleAncestryMap>(input_label);
369  MergeUtility.MergeParticleAncestryMaps(*pamCol, input_pamCol, i_source);
370  }
371  }
372  }
373 
374  if (fFillMCParticles) {
375  e.put(std::move(partCol));
376  e.put(std::move(tpassn));
377  }
378  if (fFillSimChannels) { e.put(std::move(scCol)); }
379  if (fFillAuxDetSimChannels) { e.put(std::move(adCol)); }
380  if (fFillSimPhotons) {
381  if (!fUseLitePhotons)
382  e.put(std::move(PhotonCol));
383  else
384  e.put(std::move(LitePhotonCol));
385  if (fStoreReflected) {
386  if (!fUseLitePhotons)
387  e.put(std::move(ReflPhotonCol), ReflectedLabel);
388  else
389  e.put(std::move(ReflLitePhotonCol), ReflectedLabel);
390  }
391  }
392 
394  for (auto&& [edep_inst, edepCol] : ranges::views::zip(fEnergyDepositionInstances, edepCols)) {
395  e.put(std::make_unique<edeps_t>(move(edepCol)), edep_inst);
396  } // for
397  } // if fill energy deposits
398 
399  if (fFillAuxDetHits) {
400  for (auto&& [auxdethit_inst, auxdethitCol] :
402  e.put(std::make_unique<aux_det_hits_t>(move(auxdethitCol)), auxdethit_inst);
403  }
404  }
405 
406  if (fFillParticleAncestryMaps) { e.put(std::move(pamCol)); }
407 }
408 
410 {
411 
412  mf::LogInfo log("MergeSimSources");
413  log << "Configuration:"
414  << "\n - " << fInputSourcesLabels.size() << " input sources:";
415  for (auto const& [i_source, tag, offset] :
417  log << "\n [" << i_source << "] '" << tag.encode() << "' (ID offset: " << offset << ")";
418  } // for
419  if (fFillMCParticles) log << "\n - filling MCParticles";
420 
421  if (fFillSimChannels) log << "\n - filling SimChannels";
422 
423  if (fFillAuxDetSimChannels) log << "\n - filling AuxDetSimChannels";
424 
425  if (fFillSimPhotons) {
426  log << "\n - filling Simulated Photons";
427  if (fUseLitePhotons)
428  log << "\n - using photon summary (`SimPhotonsLite`)";
429  else
430  log << "\n - using detailed photons (`SimPhotons`)";
431  if (fStoreReflected) log << "\n - also merging reflected light";
432  }
433 
435  log << "\n - filling simulated energy deposits (" << fEnergyDepositionInstances.size()
436  << " labels:";
437  for (std::string const& label : fEnergyDepositionInstances)
438  log << " '" << label << "'";
439  log << ")";
440  }
441 
442  if (fFillAuxDetHits) {
443  log << "\n - filling auxiliary detector hits (" << fAuxDetHitsInstanceLabels.size()
444  << " labels:";
445  for (std::string const& label : fAuxDetHitsInstanceLabels)
446  log << " '" << label << "'";
447  log << ")";
448  }
449 
450  if (fFillParticleAncestryMaps) log << "\n - filling ParticleAncestryMaps";
451 
452 } // sim::MergeSimSources::dumpConfiguration()
453 
Store parameters for running LArG4.
MergeSimSources(Parameters const &config)
fhicl::Sequence< int > TrackIDOffsets
Definition of util::enumerate().
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.cc:6
fhicl::Atom< bool > FillAuxDetSimChannels
Contains data associated to particles from detector simulation.
Particle class.
fhicl::OptionalAtom< bool > FillSimEnergyDeposits
fhicl::Sequence< std::string > EnergyDepositInstanceLabels
std::vector< art::InputTag > const fInputSourcesLabels
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: Event.h:77
auto enumerate(Iterables &&...iterables)
Range-for loop helper tracking the number of iteration.
Definition: enumerate.h:49
std::string const & label() const noexcept
Definition: InputTag.cc:79
Simulation objects for optical detectors.
std::vector< std::string > const fAuxDetHitsInstanceLabels
auto counter(T begin, T end)
Returns an object to iterate values from begin to end in a range-for loop.
Definition: counter.h:292
#define DEFINE_ART_MODULE(klass)
Definition: ModuleMacros.h:65
std::vector< int > const fTrackIDOffsets
Test of util::counter and support utilities.
Monte Carlo Simulation.
double value
Definition: spectrum.C:18
void produce(art::Event &e) override
fhicl::Sequence< std::string > AuxDetHitsInstanceLabels
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66
static std::string const ReflectedLabel
ValidHandle< PROD > getValidHandle(InputTag const &tag) const
contains information for a single step in the detector simulation
object containing MC truth information necessary for making RawDigits and doing back tracking ...
auto zip(Iterables &&...iterables)
Range-for loop helper iterating across many collections at the same time.
Definition: zip.h:232
cet::maybe_ref< Data const > data(size_type i) const
Definition: FindOneP.h:491
fhicl::Atom< bool > FillParticleAncestryMaps
Float_t e
Definition: plot.C:35
PROD const & getProduct(InputTag const &tag) const
fhicl::Sequence< art::InputTag > InputSourcesLabels
std::vector< std::string > const fEnergyDepositionInstances