27 #include "range/v3/view/zip.hpp" 48 class MergeSimSources;
61 fhicl::Comment{
"offset to add to the MC particles from each source"}};
95 fhicl::Comment{
"merges energy deposit collection; if omitted, follows LArG4Parmeters"}};
99 fhicl::Comment{
"labels of sim::SimEnergyDeposit collections to merge"},
100 std::vector<std::string>{
"TPCActive",
"Other"}
112 std::vector<std::string>{
"LArG4DetectorServicevolAuxDetSensitiveCRTStripY",
152 template <
typename Optional>
153 std::optional<typename Optional::value_type> getOptionalValue(Optional
const& parameter)
156 using Value_t =
typename Optional::value_type;
158 if (!parameter.hasValue())
return std::nullopt;
181 getOptionalValue(params().FillSimEnergyDeposits)
191 <<
"Unequal input vector sizes: InputSourcesLabels and TrackIDOffsets.\n";
197 consumes<std::vector<simb::MCParticle>>(tag);
198 consumes<art::Assns<simb::MCParticle, simb::MCTruth, sim::GeneratedParticleInfo>>(tag);
207 consumes<std::vector<sim::SimPhotons>>(tag);
209 consumes<std::vector<sim::SimPhotonsLite>>(tag);
214 consumes<std::vector<sim::SimPhotons>>(reflected_tag);
216 consumes<std::vector<sim::SimPhotonsLite>>(reflected_tag);
223 consumes<std::vector<sim::SimEnergyDeposit>>(edep_tag);
230 consumes<std::vector<sim::AuxDetHit>>(auxdethit_tag);
239 produces<std::vector<simb::MCParticle>>();
240 produces<art::Assns<simb::MCTruth, simb::MCParticle, sim::GeneratedParticleInfo>>();
247 produces<std::vector<sim::SimPhotons>>();
249 produces<std::vector<sim::SimPhotonsLite>>();
261 produces<std::vector<sim::SimEnergyDeposit>>(edep_inst);
266 produces<std::vector<sim::AuxDetHit>>(auxdethit_inst);
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>>();
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>>();
288 using edeps_t = std::vector<sim::SimEnergyDeposit>;
289 std::vector<edeps_t> edepCols;
292 using aux_det_hits_t = std::vector<sim::AuxDetHit>;
293 std::vector<aux_det_hits_t> auxdethitCols;
302 auto const input_partCol = e.
getValidHandle<std::vector<simb::MCParticle>>(input_label);
303 MergeUtility.MergeMCParticles(*partCol, *input_partCol, i_source);
306 const std::vector<size_t>& assocVectorPrimitive =
307 MergeUtility.GetMCParticleListMap().at(i_source);
309 input_partCol, e, input_label);
312 mctAssn.at(i_p), makePartPtr(assocVectorPrimitive[i_p]), mctAssn.
data(i_p).ref());
316 auto const& input_scCol = e.
getProduct<std::vector<sim::SimChannel>>(input_label);
317 MergeUtility.MergeSimChannels(*scCol, input_scCol, i_source);
321 auto const& input_adCol = e.
getProduct<std::vector<sim::AuxDetSimChannel>>(input_label);
322 MergeUtility.MergeAuxDetSimChannels(*adCol, input_adCol, i_source);
327 auto const& input_PhotonCol = e.
getProduct<std::vector<sim::SimPhotons>>(input_label);
328 MergeUtility.MergeSimPhotons(*PhotonCol, input_PhotonCol);
331 auto const& input_LitePhotonCol =
332 e.
getProduct<std::vector<sim::SimPhotonsLite>>(input_label);
333 MergeUtility.MergeSimPhotonsLite(*LitePhotonCol, input_LitePhotonCol);
339 auto const& input_PhotonCol =
340 e.
getProduct<std::vector<sim::SimPhotons>>(input_reflected_label);
341 MergeUtility.MergeSimPhotons(*ReflPhotonCol, input_PhotonCol);
344 auto const& input_LitePhotonCol =
345 e.
getProduct<std::vector<sim::SimPhotonsLite>>(input_reflected_label);
346 MergeUtility.MergeSimPhotonsLite(*ReflLitePhotonCol, input_LitePhotonCol);
352 for (
auto const& [edep_inst, edepCol] :
355 MergeUtility.MergeSimEnergyDeposits(edepCol, e.
getProduct<edeps_t>(edep_tag), i_source);
360 for (
auto const& [auxdethit_inst, auxdethitCol] :
363 MergeUtility.MergeAuxDetHits(
364 auxdethitCol, e.
getProduct<aux_det_hits_t>(auxdethit_tag), i_source);
369 MergeUtility.MergeParticleAncestryMaps(*pamCol, input_pamCol, i_source);
375 e.
put(std::move(partCol));
376 e.
put(std::move(tpassn));
382 e.
put(std::move(PhotonCol));
384 e.
put(std::move(LitePhotonCol));
395 e.
put(std::make_unique<edeps_t>(move(edepCol)), edep_inst);
400 for (
auto&& [auxdethit_inst, auxdethitCol] :
402 e.
put(std::make_unique<aux_det_hits_t>(move(auxdethitCol)), auxdethit_inst);
413 log <<
"Configuration:" 415 for (
auto const& [i_source, tag, offset] :
417 log <<
"\n [" << i_source <<
"] '" << tag.encode() <<
"' (ID offset: " << offset <<
")";
426 log <<
"\n - filling Simulated Photons";
428 log <<
"\n - using photon summary (`SimPhotonsLite`)";
430 log <<
"\n - using detailed photons (`SimPhotons`)";
438 log <<
" '" << label <<
"'";
446 log <<
" '" << label <<
"'";
bool const fFillSimChannels
bool const fFillMCParticles
Store parameters for running LArG4.
MergeSimSources(Parameters const &config)
fhicl::Sequence< int > TrackIDOffsets
Definition of util::enumerate().
bool const fFillSimEnergyDeposits
EDProducer(fhicl::ParameterSet const &pset)
fhicl::Atom< bool > FillAuxDetSimChannels
Contains data associated to particles from detector simulation.
fhicl::OptionalAtom< bool > FillSimEnergyDeposits
fhicl::Atom< bool > FillSimChannels
fhicl::Sequence< std::string > EnergyDepositInstanceLabels
std::vector< art::InputTag > const fInputSourcesLabels
bool const fUseLitePhotons
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
auto enumerate(Iterables &&...iterables)
Range-for loop helper tracking the number of iteration.
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.
#define DEFINE_ART_MODULE(klass)
bool const fFillSimPhotons
bool const fFillParticleAncestryMaps
fhicl::Atom< bool > FillSimPhotons
std::vector< int > const fTrackIDOffsets
Test of util::counter and support utilities.
void dumpConfiguration() const
fhicl::Atom< bool > StoreReflected
void produce(art::Event &e) override
fhicl::Sequence< std::string > AuxDetHitsInstanceLabels
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
static std::string const ReflectedLabel
fhicl::Atom< bool > FillMCParticles
ValidHandle< PROD > getValidHandle(InputTag const &tag) const
bool const fStoreReflected
bool const fFillAuxDetHits
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.
fhicl::Atom< bool > FillAuxDetHits
cet::maybe_ref< Data const > data(size_type i) const
bool const fFillAuxDetSimChannels
fhicl::Atom< bool > FillParticleAncestryMaps
PROD const & getProduct(InputTag const &tag) const
fhicl::Sequence< art::InputTag > InputSourcesLabels
std::vector< std::string > const fEnergyDepositionInstances