CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
pat::PackedPFCandidateRefMixer Class Reference
Inheritance diagram for pat::PackedPFCandidateRefMixer:
edm::stream::EDProducer<>

Public Member Functions

 PackedPFCandidateRefMixer (const edm::ParameterSet &iConfig)
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 
 ~PackedPFCandidateRefMixer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Attributes

std::vector< edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > > pf2pcs_
 
edm::EDGetTokenT< edm::ValueMap< reco::PFCandidateRef > > pf2pf_
 
edm::EDGetTokenT< std::vector< reco::PFCandidate > > pf_
 

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

Definition at line 22 of file PackedPFCandidateRefMixer.cc.

Constructor & Destructor Documentation

pat::PackedPFCandidateRefMixer::PackedPFCandidateRefMixer ( const edm::ParameterSet iConfig)
explicit

Definition at line 38 of file PackedPFCandidateRefMixer.cc.

References edm::ParameterSet::getParameter(), pf2pcs_, and GlobalPosition_Frontier_DevDB_cff::tag.

38  :
39  pf_(consumes<std::vector<reco::PFCandidate>>(iConfig.getParameter<edm::InputTag>("pf"))),
41 {
42  for (edm::InputTag const& tag : iConfig.getParameter<std::vector<edm::InputTag>>("pf2packed")) {
44  }
45  produces<edm::ValueMap<reco::CandidatePtr>>();
46 }
T getParameter(std::string const &) const
edm::EDGetTokenT< std::vector< reco::PFCandidate > > pf_
edm::EDGetTokenT< edm::ValueMap< reco::PFCandidateRef > > pf2pf_
std::vector< edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > > pf2pcs_
pat::PackedPFCandidateRefMixer::~PackedPFCandidateRefMixer ( )
inlineoverride

Definition at line 25 of file PackedPFCandidateRefMixer.cc.

References iEvent, and produce().

25 { }

Member Function Documentation

void pat::PackedPFCandidateRefMixer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 50 of file PackedPFCandidateRefMixer.cc.

References DEFINE_FWK_MODULE, Exception, edm::helper::Filler< Map >::fill(), objects.autophobj::filler, runEdmFileComparison::found, edm::Event::getByToken(), mps_fire::i, edm::Ref< C, T, F >::id(), edm::helper::Filler< Map >::insert(), edm::Ref< C, T, F >::key(), eostools::move(), gen::n, MillePedeFileConverter_cfg::out, packedPFCandidateRefMixer_cfi::pf, pf2pcs_, packedPFCandidateRefMixer_cfi::pf2pf, pf2pf_, pf_, edm::Event::put(), and edm::refToPtr().

Referenced by ~PackedPFCandidateRefMixer().

50  {
53  std::vector<edm::Handle<edm::Association<pat::PackedCandidateCollection>>> pf2pcs(pf2pcs_.size());
54  iEvent.getByToken(pf_, pf);
55  iEvent.getByToken(pf2pf_, pf2pf);
56  for (unsigned int i = 0, n = pf2pcs.size(); i < n; ++i) {
57  iEvent.getByToken(pf2pcs_[i], pf2pcs[i]);
58  }
59  std::vector<reco::CandidatePtr> outptrs;
60  outptrs.reserve(pf->size());
61  for (unsigned int i = 0, n = pf->size(); i < n; ++i) {
62  reco::PFCandidateRef oldpfRef(pf, i);
63  const auto & newpfRef = (*pf2pf)[oldpfRef];
64  bool found = false;
65  for (const auto & pf2pc : pf2pcs) {
66  if (pf2pc->contains(newpfRef.id())) {
67  outptrs.push_back(refToPtr((*pf2pc)[newpfRef]));
68  found = true;
69  break;
70  }
71  }
72  if (!found) {
73  edm::LogPrint("PackedPFCandidateRefMixer") << "oldpfRef: " << oldpfRef.id() << " / " << oldpfRef.key() << "\n";
74  edm::LogPrint("PackedPFCandidateRefMixer") << "newpfRef: " << newpfRef.id() << " / " << newpfRef.key() << "\n";
75  edm::LogPrint("PackedPFCandidateRefMixer") << "and I have " << pf2pcs.size() << " rekey maps." << "\n";
76  for (const auto & pf2pc : pf2pcs) {
77  edm::LogPrint("PackedPFCandidateRefMixer") << "this map has keys in: " << "\n";
78  for (const auto & pair : pf2pc->ids()) { edm::LogPrint("PackedPFCandidateRefMixer") << "\t" << pair.first << "\n"; }
79  }
80  throw cms::Exception("LogicError") << "A packed candidate has refs that we don't understand\n";
81  }
82  }
83  std::unique_ptr<edm::ValueMap<reco::CandidatePtr>> out(new edm::ValueMap<reco::CandidatePtr>());
85  filler.insert(pf, outptrs.begin(), outptrs.end());
86  filler.fill();
87  iEvent.put(std::move(out));
88 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
Ptr< typename C::value_type > refToPtr(Ref< C, typename C::value_type, refhelper::FindUsingAdvance< C, typename C::value_type > > const &ref)
Definition: RefToPtr.h:18
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
edm::EDGetTokenT< std::vector< reco::PFCandidate > > pf_
edm::EDGetTokenT< edm::ValueMap< reco::PFCandidateRef > > pf2pf_
std::vector< edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > > pf2pcs_
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

std::vector<edm::EDGetTokenT<edm::Association<pat::PackedCandidateCollection> > > pat::PackedPFCandidateRefMixer::pf2pcs_
private

Definition at line 32 of file PackedPFCandidateRefMixer.cc.

Referenced by PackedPFCandidateRefMixer(), and produce().

edm::EDGetTokenT<edm::ValueMap<reco::PFCandidateRef> > pat::PackedPFCandidateRefMixer::pf2pf_
private

Definition at line 31 of file PackedPFCandidateRefMixer.cc.

Referenced by produce().

edm::EDGetTokenT<std::vector<reco::PFCandidate> > pat::PackedPFCandidateRefMixer::pf_
private

Definition at line 30 of file PackedPFCandidateRefMixer.cc.

Referenced by produce().