CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
edm::ThinningProducer< Collection, Selector > Class Template Reference

#include <ThinningProducer.h>

Inheritance diagram for edm::ThinningProducer< Collection, Selector >:
edm::stream::EDProducer<>

Public Member Functions

virtual void produce (Event &event, EventSetup const &eventSetup) override
 
virtual void registerThinnedAssociations (ProductRegistry const &productRegistry, ThinnedAssociationsHelper &thinnedAssociationsHelper) override
 
 ThinningProducer (ParameterSet const &pset)
 
virtual ~ThinningProducer ()
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Static Public Member Functions

static void fillDescriptions (ConfigurationDescriptions &descriptions)
 

Private Attributes

edm::InputTag inputTag_
 
edm::EDGetTokenT< Collection > inputToken_
 
edm::EDPutTokenT< Collection > outputToken_
 
edm::propagate_const< std::unique_ptr< Selector > > selector_
 
edm::EDPutTokenT< ThinnedAssociationthinnedOutToken_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

template<typename Collection, typename Selector>
class edm::ThinningProducer< Collection, Selector >

Author
W. David Dagenhart, created 11 June 2014

Definition at line 30 of file ThinningProducer.h.

Constructor & Destructor Documentation

template<typename Collection , typename Selector >
edm::ThinningProducer< Collection, Selector >::ThinningProducer ( ParameterSet const &  pset)
explicit

Definition at line 51 of file ThinningProducer.h.

References edm::ParameterSet::getParameter(), edm::ThinningProducer< Collection, Selector >::inputTag_, edm::ThinningProducer< Collection, Selector >::inputToken_, edm::ThinningProducer< Collection, Selector >::outputToken_, and edm::ThinningProducer< Collection, Selector >::thinnedOutToken_.

52  : selector_(new Selector(pset, consumesCollector())) {
53  inputTag_ = pset.getParameter<InputTag>("inputTag");
54  inputToken_ = consumes<Collection>(inputTag_);
55 
56  outputToken_ = produces<Collection>();
57  thinnedOutToken_ = produces<ThinnedAssociation>();
58  }
edm::propagate_const< std::unique_ptr< Selector > > selector_
edm::EDPutTokenT< Collection > outputToken_
edm::EDGetTokenT< Collection > inputToken_
edm::EDPutTokenT< ThinnedAssociation > thinnedOutToken_
template<typename Collection , typename Selector >
edm::ThinningProducer< Collection, Selector >::~ThinningProducer ( )
virtual

Definition at line 61 of file ThinningProducer.h.

61 {}

Member Function Documentation

template<typename Collection , typename Selector >
void edm::ThinningProducer< Collection, Selector >::fillDescriptions ( ConfigurationDescriptions descriptions)
static

Definition at line 64 of file ThinningProducer.h.

References edm::ParameterSetDescription::add(), edm::ConfigurationDescriptions::addDefault(), and edm::ParameterSetDescription::setComment().

64  {
66  desc.setComment("Produces thinned collections and associations to them");
67  desc.add<edm::InputTag>("inputTag");
68  Selector::fillDescription(desc);
69  descriptions.addDefault(desc);
70  }
template<typename Collection , typename Selector >
void edm::ThinningProducer< Collection, Selector >::produce ( Event event,
EventSetup const &  eventSetup 
)
overridevirtual

Definition at line 73 of file ThinningProducer.h.

References event(), edm::OrphanHandleBase::id(), genParticles_cff::inputCollection, edm::ThinningProducer< Collection, Selector >::inputToken_, eostools::move(), edm::ThinningProducer< Collection, Selector >::outputToken_, edm::ThinnedAssociation::push_back(), edm::ThinningProducer< Collection, Selector >::selector_, edm::ThinnedAssociation::setParentCollectionID(), edm::ThinnedAssociation::setThinnedCollectionID(), and edm::ThinningProducer< Collection, Selector >::thinnedOutToken_.

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

73  {
74  auto inputCollection = event.getHandle(inputToken_);
75 
76  edm::Event const& constEvent = event;
77  selector_->preChoose(inputCollection, constEvent, eventSetup);
78 
79  Collection thinnedCollection;
80  ThinnedAssociation thinnedAssociation;
81 
82  unsigned int iIndex = 0;
83  for (auto iter = inputCollection->begin(), iterEnd = inputCollection->end(); iter != iterEnd; ++iter, ++iIndex) {
84  if (selector_->choose(iIndex, *iter)) {
85  thinnedCollection.push_back(*iter);
86  thinnedAssociation.push_back(iIndex);
87  }
88  }
89  OrphanHandle<Collection> orphanHandle = event.emplace(outputToken_, std::move(thinnedCollection));
90 
91  thinnedAssociation.setParentCollectionID(inputCollection.id());
92  thinnedAssociation.setThinnedCollectionID(orphanHandle.id());
93  event.emplace(thinnedOutToken_, std::move(thinnedAssociation));
94  }
edm::propagate_const< std::unique_ptr< Selector > > selector_
edm::EDPutTokenT< Collection > outputToken_
edm::EDGetTokenT< Collection > inputToken_
edm::EDPutTokenT< ThinnedAssociation > thinnedOutToken_
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
def move(src, dest)
Definition: eostools.py:511
template<typename Collection , typename Selector >
void edm::ThinningProducer< Collection, Selector >::registerThinnedAssociations ( ProductRegistry const &  productRegistry,
ThinnedAssociationsHelper thinnedAssociationsHelper 
)
overridevirtual

Definition at line 97 of file ThinningProducer.h.

References edm::ThinnedAssociationsHelper::addAssociation(), edm::BranchDescription::branchID(), edm::ThinningProducer< Collection, Selector >::inputTag_, edm::InputTag::instance(), edm::InputTag::label(), edm::BranchDescription::moduleLabel(), edm::BranchDescription::originalBranchID(), edm::InputTag::process(), edm::BranchDescription::processName(), edm::BranchDescription::produced(), edm::BranchDescription::productInstanceName(), edm::ProductRegistry::productList(), edm::TypeWithDict::typeInfo(), edm::BranchDescription::unwrappedType(), and edm::InputTag::willSkipCurrentProcess().

98  {
99  BranchID associationID;
100  BranchID thinnedCollectionID;
101 
102  // If the InputTag does not specify the process name, it is
103  // possible that there will be more than one match found below.
104  // For a particular event only one match is correct and the
105  // others will be false. It even possible for some events one
106  // match is correct and for others another is correct. This is
107  // a side effect of the lookup mechanisms when the process name
108  // is not specified.
109  // When using the registry this generates one would have to
110  // check the ProductIDs in ThinnedAssociation product to get
111  // the correct association. This ambiguity will probably be
112  // rare and possibly never occur in practice.
113  std::vector<BranchID> parentCollectionIDs;
114 
115  ProductRegistry::ProductList const& productList = productRegistry.productList();
116  for (auto const& product : productList) {
117  BranchDescription const& desc = product.second;
118  if (desc.unwrappedType().typeInfo() == typeid(Collection)) {
119  if (desc.produced() && desc.moduleLabel() == moduleDescription().moduleLabel() &&
120  desc.productInstanceName().empty()) {
121  thinnedCollectionID = desc.branchID();
122  }
123  if (desc.moduleLabel() == inputTag_.label() && desc.productInstanceName() == inputTag_.instance()) {
125  if (!desc.produced()) {
126  parentCollectionIDs.push_back(desc.branchID());
127  }
128  } else if (inputTag_.process().empty() || inputTag_.process() == desc.processName()) {
129  if (desc.produced()) {
130  parentCollectionIDs.push_back(desc.originalBranchID());
131  } else {
132  parentCollectionIDs.push_back(desc.branchID());
133  }
134  }
135  }
136  }
137  if (desc.produced() && desc.unwrappedType().typeInfo() == typeid(ThinnedAssociation) &&
138  desc.moduleLabel() == moduleDescription().moduleLabel() && desc.productInstanceName().empty()) {
139  associationID = desc.branchID();
140  }
141  }
142  if (parentCollectionIDs.empty()) {
143  // This could happen if the input collection was dropped. Go ahead and add
144  // an entry and let the exception be thrown only if the module is run (when
145  // it cannot find the product).
146  thinnedAssociationsHelper.addAssociation(BranchID(), associationID, thinnedCollectionID);
147  } else {
148  for (auto const& parentCollectionID : parentCollectionIDs) {
149  thinnedAssociationsHelper.addAssociation(parentCollectionID, associationID, thinnedCollectionID);
150  }
151  }
152  }
std::map< BranchKey, BranchDescription > ProductList
bool willSkipCurrentProcess() const
Definition: InputTag.h:42
std::string const & label() const
Definition: InputTag.h:36
std::string const & process() const
Definition: InputTag.h:40
std::string const & instance() const
Definition: InputTag.h:37

Member Data Documentation

template<typename Collection , typename Selector >
edm::InputTag edm::ThinningProducer< Collection, Selector >::inputTag_
private
template<typename Collection , typename Selector >
edm::EDGetTokenT<Collection> edm::ThinningProducer< Collection, Selector >::inputToken_
private
template<typename Collection , typename Selector >
edm::EDPutTokenT<Collection> edm::ThinningProducer< Collection, Selector >::outputToken_
private
template<typename Collection , typename Selector >
edm::propagate_const<std::unique_ptr<Selector> > edm::ThinningProducer< Collection, Selector >::selector_
private
template<typename Collection , typename Selector >
edm::EDPutTokenT<ThinnedAssociation> edm::ThinningProducer< Collection, Selector >::thinnedOutToken_
private