CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ThinningProducer.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_ThinningProducer_h
2 #define FWCore_Framework_ThinningProducer_h
3 
9 
23 
24 #include <memory>
25 #include <optional>
26 #include <type_traits>
27 
28 namespace edm {
29 
30  class EventSetup;
31 
32  namespace detail {
33  template <typename T>
34  struct IsStdOptional {
35  static constexpr bool value = false;
36  };
37  template <typename T>
38  struct IsStdOptional<std::optional<T>> {
39  static constexpr bool value = true;
40  };
41 
42  template <typename Item, typename Selector, typename Collection>
43  void fillCollectionForThinning(Item const& item,
44  Selector& selector,
45  unsigned int iIndex,
46  Collection& output,
48  using SelectorChooseReturnType = decltype(selector.choose(0U, std::declval<Item const&>()));
50  if constexpr (isSlimming) {
51  std::optional<typename SelectorChooseReturnType::value_type> obj = selector.choose(iIndex, item);
52  if (obj.has_value()) {
53  // move to support std::unique_ptr<T> with edm::OwnVector<T> or std::vector<unique_ptr<T>>
54  output.push_back(std::move(*obj));
55  association.push_back(iIndex);
56  }
57  } else {
58  if (selector.choose(iIndex, item)) {
59  output.push_back(item);
60  association.push_back(iIndex);
61  }
62  }
63  }
64 
65  } // namespace detail
66 
67  template <typename Collection, typename Selector>
69  public:
70  explicit ThinningProducer(ParameterSet const& pset);
71  ~ThinningProducer() override;
72 
73  static void fillDescriptions(ConfigurationDescriptions& descriptions);
74 
75  void produce(Event& event, EventSetup const& eventSetup) override;
76 
77  void registerThinnedAssociations(ProductRegistry const& productRegistry,
78  ThinnedAssociationsHelper& thinnedAssociationsHelper) override;
79 
80  private:
86 
88  decltype(selector_->choose(0U, std::declval<typename detail::ElementType<Collection>::type const>()));
90  static_assert(
91  std::is_same_v<SelectorChooseReturnType, bool> || isSlimming,
92  "Selector::choose() must return bool (for pure thinning) or std::optional<ElementType> (for slimming)");
93  };
94 
95  template <typename Collection, typename Selector>
97  : selector_(new Selector(pset, consumesCollector())) {
98  inputTag_ = pset.getParameter<InputTag>("inputTag");
99  inputToken_ = consumes<Collection>(inputTag_);
100 
101  outputToken_ = produces<Collection>();
102  thinnedOutToken_ = produces<ThinnedAssociation>();
103  }
104 
105  template <typename Collection, typename Selector>
107 
108  template <typename Collection, typename Selector>
111  desc.setComment("Produces thinned collections and associations to them");
112  desc.add<edm::InputTag>("inputTag");
114  descriptions.addWithDefaultLabel(desc);
115  }
116 
117  template <typename Collection, typename Selector>
119  auto inputCollection = event.getHandle(inputToken_);
120 
121  edm::Event const& constEvent = event;
122  selector_->preChoose(inputCollection, constEvent, eventSetup);
123 
124  Collection thinnedCollection;
125  ThinnedAssociation thinnedAssociation;
126 
127  unsigned int iIndex = 0;
128  for (auto iter = inputCollection->begin(), iterEnd = inputCollection->end(); iter != iterEnd; ++iter, ++iIndex) {
129  using namespace detail;
130  fillCollectionForThinning(*iter, *selector_, iIndex, thinnedCollection, thinnedAssociation);
131  }
132  selector_->reset();
133 
134  OrphanHandle<Collection> orphanHandle = event.emplace(outputToken_, std::move(thinnedCollection));
135 
136  thinnedAssociation.setParentCollectionID(inputCollection.id());
137  thinnedAssociation.setThinnedCollectionID(orphanHandle.id());
138  event.emplace(thinnedOutToken_, std::move(thinnedAssociation));
139  }
140 
141  template <typename Collection, typename Selector>
143  ProductRegistry const& productRegistry, ThinnedAssociationsHelper& thinnedAssociationsHelper) {
144  BranchID associationID;
145  BranchID thinnedCollectionID;
146 
147  // If the InputTag does not specify the process name, it is
148  // possible that there will be more than one match found below.
149  // For a particular event only one match is correct and the
150  // others will be false. It even possible for some events one
151  // match is correct and for others another is correct. This is
152  // a side effect of the lookup mechanisms when the process name
153  // is not specified.
154  // When using the registry this generates one would have to
155  // check the ProductIDs in ThinnedAssociation product to get
156  // the correct association. This ambiguity will probably be
157  // rare and possibly never occur in practice.
158  std::vector<BranchID> parentCollectionIDs;
159 
160  ProductRegistry::ProductList const& productList = productRegistry.productList();
161  for (auto const& product : productList) {
162  BranchDescription const& desc = product.second;
163  if (desc.unwrappedType().typeInfo() == typeid(Collection)) {
164  if (desc.produced() && desc.moduleLabel() == moduleDescription().moduleLabel() &&
165  desc.productInstanceName().empty()) {
166  thinnedCollectionID = desc.branchID();
167  }
168  if (desc.moduleLabel() == inputTag_.label() && desc.productInstanceName() == inputTag_.instance()) {
169  if (inputTag_.willSkipCurrentProcess()) {
170  if (!desc.produced()) {
171  parentCollectionIDs.push_back(desc.branchID());
172  }
173  } else if (inputTag_.process().empty() || inputTag_.process() == desc.processName()) {
174  if (desc.produced()) {
175  parentCollectionIDs.push_back(desc.originalBranchID());
176  } else {
177  parentCollectionIDs.push_back(desc.branchID());
178  }
179  }
180  }
181  }
182  if (desc.produced() && desc.unwrappedType().typeInfo() == typeid(ThinnedAssociation) &&
183  desc.moduleLabel() == moduleDescription().moduleLabel() && desc.productInstanceName().empty()) {
184  associationID = desc.branchID();
185  }
186  }
187  if (parentCollectionIDs.empty()) {
188  // This could happen if the input collection was dropped. Go ahead and add
189  // an entry and let the exception be thrown only if the module is run (when
190  // it cannot find the product).
191  thinnedAssociationsHelper.addAssociation(BranchID(), associationID, thinnedCollectionID, isSlimming);
192  } else {
193  for (auto const& parentCollectionID : parentCollectionIDs) {
194  thinnedAssociationsHelper.addAssociation(parentCollectionID, associationID, thinnedCollectionID, isSlimming);
195  }
196  }
197  }
198 } // namespace edm
199 #endif
tuple optional
Definition: Types.py:198
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
void setThinnedCollectionID(ProductID const &v)
void fillCollectionForThinning(Item const &item, Selector &selector, unsigned int iIndex, Collection &output, ThinnedAssociation &association)
std::map< BranchKey, BranchDescription > ProductList
std::string const & processName() const
decltype(selector_->choose(0U, std::declval< typename detail::ElementType< Collection >::type const >())) SelectorChooseReturnType
edm::propagate_const< std::unique_ptr< Selector > > selector_
ProductID id() const
edm::EDPutTokenT< Collection > outputToken_
ProductList const & productList() const
void setComment(std::string const &value)
typename std::remove_reference< decltype(*std::declval< Collection >().begin())>::type type
std::tuple< layerClusterToCaloParticle, caloParticleToLayerCluster > association
std::string const & moduleLabel() const
std::string const & productInstanceName() const
ThinningProducer(ParameterSet const &pset)
def move
Definition: eostools.py:511
edm::EDGetTokenT< Collection > inputToken_
edm::EDPutTokenT< ThinnedAssociation > thinnedOutToken_
void produce(Event &event, EventSetup const &eventSetup) override
BranchID const & branchID() const
TypeWithDict const & unwrappedType() const
void addAssociation(BranchID const &, BranchID const &, BranchID const &, bool slimmed)
std::type_info const & typeInfo() const
virtual void push_back(std::string const &s)
This is the registration of an individual cut string.
Definition: Selector.h:42
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Functor that operates on &lt;T&gt;
Definition: Selector.h:22
void push_back(unsigned int index)
void registerThinnedAssociations(ProductRegistry const &productRegistry, ThinnedAssociationsHelper &thinnedAssociationsHelper) override
static constexpr bool value
void fillPSetDescription(edm::ParameterSetDescription &desc)
void setParentCollectionID(ProductID const &v)
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
static constexpr bool isSlimming
BranchID const & originalBranchID() const
tuple inputCollection
static void fillDescriptions(ConfigurationDescriptions &descriptions)