CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
reco::modulesNew::MCTruthCompositeMatcher Class Reference
Inheritance diagram for reco::modulesNew::MCTruthCompositeMatcher:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 MCTruthCompositeMatcher (const edm::ParameterSet &)
 
 ~MCTruthCompositeMatcher ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::vector< edm::EDGetTokenT
< reco::GenParticleMatch > > 
matchMapTokens_
 
std::vector< int > pdgId_
 
edm::EDGetTokenT< CandidateViewsrcToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 21 of file MCTruthCompositeMatcherNew.cc.

Constructor & Destructor Documentation

Definition at line 32 of file MCTruthCompositeMatcherNew.cc.

References GlobalPosition_Frontier_DevDB_cff::tag.

32  :
33  srcToken_(consumes<CandidateView>(cfg.getParameter<edm::InputTag>("src"))),
34  matchMapTokens_( edm::vector_transform(cfg.template getParameter<std::vector<edm::InputTag> >( "matchMaps" ), [this](edm::InputTag const & tag){return consumes<reco::GenParticleMatch>(tag);} ) ),
T getParameter(std::string const &) const
std::vector< edm::EDGetTokenT< reco::GenParticleMatch > > matchMapTokens_
auto vector_transform(std::vector< InputType > const &input, Function predicate) -> std::vector< typename std::remove_cv< typename std::remove_reference< decltype(predicate(input.front()))>::type >::type >
Definition: transform.h:11

Definition at line 39 of file MCTruthCompositeMatcherNew.cc.

39  {
40  }

Member Function Documentation

void MCTruthCompositeMatcher< C1, C2 >::produce ( edm::Event evt,
const edm::EventSetup  
)
overrideprivatevirtual

Implements edm::EDProducer.

Definition at line 42 of file MCTruthCompositeMatcherNew.cc.

References funct::abs(), begin, end, edm::helper::Filler< Map >::fill(), spr::find(), newFWLiteAna::found, edm::Event::getByToken(), i, edm::helper::Filler< Map >::insert(), edm::Ref< C, T, F >::isNull(), edm::Ref< C, T, F >::key(), edm::makeRefToBaseProdFrom(), match(), matchMapTokens_, pdgId_, edm::Event::put(), reco::utilsNew::CandMatcher< C >::ref(), findQualityFiles::size, and srcToken_.

42  {
43  using namespace edm;
44  using namespace std;
46  evt.getByToken(srcToken_, cands);
47  size_t nMaps = matchMapTokens_.size();
48  std::vector<const GenParticleMatch *> maps;
49  maps.reserve( nMaps );
50  for( size_t i = 0; i != nMaps; ++ i ) {
52  evt.getByToken(matchMapTokens_[i], matchMap);
53  maps.push_back(& * matchMap);
54  }
55  utilsNew::CandMatcher<GenParticleCollection> match(maps);
56  auto_ptr<GenParticleMatch> matchMap(new GenParticleMatch(match.ref()));
57  int size = cands->size();
58  vector<int>::const_iterator begin = pdgId_.begin(), end = pdgId_.end();
59  if(size != 0) {
60  GenParticleMatch::Filler filler(*matchMap);
61  vector<int> indices(size);
62  for(int i = 0; i != size; ++ i) {
63  const Candidate & cand = (* cands)[i];
64  GenParticleRef mc = match[cand];
65  if(mc.isNull()) {
66  indices[i] = -1;
67  } else {
68  bool found = true;
69  if(begin!=end) found = find(begin, end, std::abs(mc->pdgId())) != end;
70  indices[i] = found ? int(mc.key()) : -1;
71  }
72  }
73  CandidateBaseRefProd ref(edm::makeRefToBaseProdFrom(cands->refAt(0), evt));
74  filler.insert(ref, indices.begin(), indices.end());
75  filler.fill();
76  }
77  evt.put(matchMap);
78  }
int i
Definition: DBlmapReader.cc:9
std::vector< edm::EDGetTokenT< reco::GenParticleMatch > > matchMapTokens_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
key_type key() const
Accessor for product key.
Definition: Ref.h:264
edm::RefToBaseProd< Candidate > CandidateBaseRefProd
vector of references to objects in the same collection of Candidate objects via base type ...
Definition: CandidateFwd.h:39
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
#define end
Definition: vmac.h:37
bool isNull() const
Checks for null.
Definition: Ref.h:249
helper::Filler< ValueMap< int > > Filler
Definition: ValueMap.h:170
RefToBaseProd< T > makeRefToBaseProdFrom(RefToBase< T > const &iRef, Event const &iEvent)
#define begin
Definition: vmac.h:30
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
tuple size
Write out results.
edm::Association< GenParticleCollection > GenParticleMatch
vector of reference to GenParticle in the same collection

Member Data Documentation

std::vector<edm::EDGetTokenT<reco::GenParticleMatch> > reco::modulesNew::MCTruthCompositeMatcher::matchMapTokens_
private

Definition at line 27 of file MCTruthCompositeMatcherNew.cc.

Referenced by produce().

std::vector<int> reco::modulesNew::MCTruthCompositeMatcher::pdgId_
private

Definition at line 28 of file MCTruthCompositeMatcherNew.cc.

Referenced by produce().

edm::EDGetTokenT<CandidateView> reco::modulesNew::MCTruthCompositeMatcher::srcToken_
private

Definition at line 26 of file MCTruthCompositeMatcherNew.cc.

Referenced by produce().