CMS 3D CMS Logo

PATPackedGenParticleProducer.cc
Go to the documentation of this file.
1 #include <string>
2 
21 
25 
32 #include "CLHEP/Vector/ThreeVector.h"
33 #include "CLHEP/Vector/LorentzVector.h"
34 #include "CLHEP/Matrix/Vector.h"
35 #include <string>
36 
37 namespace pat {
39  public:
42 
43  void produce(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;
44 
45  private:
50  const double maxRapidity_;
51  };
52 } // namespace pat
53 
55  : Cands_(consumes<reco::GenParticleCollection>(iConfig.getParameter<edm::InputTag>("inputCollection"))),
56  GenOrigs_(consumes<reco::GenParticleCollection>(iConfig.getParameter<edm::InputTag>("inputOriginal"))),
57  Asso_(consumes<edm::Association<reco::GenParticleCollection>>(iConfig.getParameter<edm::InputTag>("map"))),
58  AssoOriginal_(consumes<edm::Association<reco::GenParticleCollection>>(
59  iConfig.getParameter<edm::InputTag>("inputCollection"))),
60  maxRapidity_(iConfig.getParameter<double>("maxRapidity")) {
61  produces<std::vector<pat::PackedGenParticle>>();
62  produces<edm::Association<std::vector<pat::PackedGenParticle>>>();
63 }
64 
66 
69  const edm::EventSetup& iSetup) const {
71  iEvent.getByToken(Cands_, cands);
72 
73  //from prunedGenParticlesWithStatusOne to prunedGenParticles
75  iEvent.getByToken(Asso_, asso);
76 
78  iEvent.getByToken(AssoOriginal_, assoOriginal);
79 
81  iEvent.getByToken(GenOrigs_, genOrigs);
82  std::vector<int> mapping(genOrigs->size(), -1);
83 
84  //invert the value map from Orig2New to New2Orig
85  std::map<edm::Ref<reco::GenParticleCollection>, edm::Ref<reco::GenParticleCollection>> reverseMap;
86  for (unsigned int ic = 0, nc = genOrigs->size(); ic < nc; ++ic) {
88  edm::Ref<reco::GenParticleCollection> newRef = (*assoOriginal)[originalRef];
89  reverseMap.insert(
91  }
92 
93  auto outPtrP = std::make_unique<std::vector<pat::PackedGenParticle>>();
94 
95  unsigned int packed = 0;
96  for (unsigned int ic = 0, nc = cands->size(); ic < nc; ++ic) {
97  const reco::GenParticle& cand = (*cands)[ic];
98  if (cand.status() == 1 && std::abs(cand.y()) < maxRapidity_) {
99  // Obtain original gen particle collection reference from input reference and map
101  edm::Ref<reco::GenParticleCollection> originalRef = reverseMap[inputRef];
102  edm::Ref<reco::GenParticleCollection> finalPrunedRef = (*asso)[inputRef];
103  mapping[originalRef.key()] = packed;
104  packed++;
105  if (finalPrunedRef.isNonnull()) { //this particle exists also in the final pruned
106  outPtrP->push_back(pat::PackedGenParticle(cand, finalPrunedRef));
107  } else {
108  if (cand.numberOfMothers() > 0) {
109  edm::Ref<reco::GenParticleCollection> newRef = (*asso)[cand.motherRef(0)];
110  outPtrP->push_back(pat::PackedGenParticle(cand, newRef));
111  } else {
113  }
114  }
115  }
116  }
117 
119 
120  auto gp2pgp = std::make_unique<edm::Association<std::vector<pat::PackedGenParticle>>>(oh);
121  edm::Association<std::vector<pat::PackedGenParticle>>::Filler gp2pgpFiller(*gp2pgp);
122  gp2pgpFiller.insert(genOrigs, mapping.begin(), mapping.end());
123  gp2pgpFiller.fill();
124  iEvent.put(std::move(gp2pgp));
125 }
126 
edm::StreamID
Definition: StreamID.h:30
TrajectoryStateOnSurface.h
Muon.h
pat::PATPackedGenParticleProducer::PATPackedGenParticleProducer
PATPackedGenParticleProducer(const edm::ParameterSet &)
Definition: PATPackedGenParticleProducer.cc:54
AnalyticalImpactPointExtrapolator.h
ESHandle.h
reco::GenParticle
Definition: GenParticle.h:21
pat::PATPackedGenParticleProducer::GenOrigs_
const edm::EDGetTokenT< reco::GenParticleCollection > GenOrigs_
Definition: PATPackedGenParticleProducer.cc:47
edm::EDGetTokenT< reco::GenParticleCollection >
edm
HLT enums.
Definition: AlignableModifier.h:19
PackedGenParticle.h
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89285
reco::GenParticleCollection
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
Definition: GenParticleFwd.h:13
Measurement1D.h
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
TransientTrack.h
Association.h
pat::PATPackedGenParticleProducer::maxRapidity_
const double maxRapidity_
Definition: PATPackedGenParticleProducer.cc:50
edm::Handle< reco::GenParticleCollection >
edm::Ref
Definition: AssociativeIterator.h:58
GenParticle.h
MakerMacros.h
pat::PackedGenParticle
Definition: PackedGenParticle.h:19
pat::PATPackedGenParticleProducer::AssoOriginal_
const edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > > AssoOriginal_
Definition: PATPackedGenParticleProducer.cc:49
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
pat::PATPackedGenParticleProducer::~PATPackedGenParticleProducer
~PATPackedGenParticleProducer() override
Definition: PATPackedGenParticleProducer.cc:65
GenParticleFwd.h
edm::global::EDProducer
Definition: EDProducer.h:32
Vertex.h
pat::PATPackedGenParticleProducer::Asso_
const edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > > Asso_
Definition: PATPackedGenParticleProducer.cc:48
HLT_FULL_cff.cands
cands
Definition: HLT_FULL_cff.py:15146
TransientTrackBuilder.h
edm::ParameterSet
Definition: ParameterSet.h:47
Event.h
edm::Ref::isNonnull
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:238
cand
Definition: decayParser.h:32
iEvent
int iEvent
Definition: GenABIO.cc:224
GsfTrack.h
edm::Association
Definition: Association.h:18
edm::EventSetup
Definition: EventSetup.h:58
pat
Definition: HeavyIon.h:7
TransientTrackRecord.h
Jet.h
VertexFwd.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
IPTools.h
edm::OrphanHandle
Definition: EDProductfwd.h:39
Frameworkfwd.h
pat::PATPackedGenParticleProducer
Definition: PATPackedGenParticleProducer.cc:38
EventSetup.h
Exception.h
edm::Ref::key
key_type key() const
Accessor for product key.
Definition: Ref.h:250
Candidate.h
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
View.h
ParameterSet.h
EDProducer.h
pat::PATPackedGenParticleProducer::Cands_
const edm::EDGetTokenT< reco::GenParticleCollection > Cands_
Definition: PATPackedGenParticleProducer.cc:46
edm::Event
Definition: Event.h:73
taus_updatedMVAIds_cff.mapping
mapping
Definition: taus_updatedMVAIds_cff.py:29
pat::PATPackedGenParticleProducer::produce
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
Definition: PATPackedGenParticleProducer.cc:67
AnalyticalTrajectoryExtrapolatorToLine.h