CMS 3D CMS Logo

PATPackedGenParticleProducer.cc
Go to the documentation of this file.
1 #include <string>
2 
3 
22 
26 
33 #include "CLHEP/Vector/ThreeVector.h"
34 #include "CLHEP/Vector/LorentzVector.h"
35 #include "CLHEP/Matrix/Vector.h"
36 #include <string>
37 
38 
39 namespace pat {
41  public:
44 
45  void produce(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;
46 
47  private:
52  const double maxRapidity_;
53  };
54 }
55 
57  Cands_(consumes<reco::GenParticleCollection>(iConfig.getParameter<edm::InputTag>("inputCollection"))),
58  GenOrigs_(consumes<reco::GenParticleCollection>(iConfig.getParameter<edm::InputTag>("inputOriginal"))),
59  Asso_(consumes<edm::Association<reco::GenParticleCollection> >(iConfig.getParameter<edm::InputTag>("map"))),
60  AssoOriginal_(consumes<edm::Association<reco::GenParticleCollection> >(iConfig.getParameter<edm::InputTag>("inputCollection"))),
61  maxRapidity_(iConfig.getParameter<double>("maxRapidity"))
62 {
63  produces< std::vector<pat::PackedGenParticle> > ();
64  produces< edm::Association< std::vector<pat::PackedGenParticle> > >();
65 }
66 
68 
70 
71 
73  iEvent.getByToken( Cands_, cands );
74  std::vector<reco::Candidate>::const_iterator cand;
75 
76  //from prunedGenParticlesWithStatusOne to prunedGenParticles
78  iEvent.getByToken( Asso_, asso );
79 
81  iEvent.getByToken( AssoOriginal_, assoOriginal);
82 
84  iEvent.getByToken( GenOrigs_, genOrigs);
85  std::vector<int> mapping(genOrigs->size(), -1);
86 
87  //invert the value map from Orig2New to New2Orig
88  std::map< edm::Ref<reco::GenParticleCollection> , edm::Ref<reco::GenParticleCollection> > reverseMap;
89  for(unsigned int ic=0, nc = genOrigs->size(); ic < nc; ++ic)
90  {
92  edm::Ref<reco::GenParticleCollection> newRef = (*assoOriginal)[originalRef];
93  reverseMap.insert(std::pair<edm::Ref<reco::GenParticleCollection>,edm::Ref<reco::GenParticleCollection>>(newRef,originalRef));
94  }
95 
96  auto outPtrP = std::make_unique<std::vector<pat::PackedGenParticle>>();
97 
98  unsigned int packed=0;
99  for(unsigned int ic=0, nc = cands->size(); ic < nc; ++ic) {
100  const reco::GenParticle &cand=(*cands)[ic];
101  if(cand.status() ==1 && std::abs(cand.y()) < maxRapidity_)
102  {
103  // Obtain original gen particle collection reference from input reference and map
105  edm::Ref<reco::GenParticleCollection> originalRef=reverseMap[inputRef];
106  edm::Ref<reco::GenParticleCollection> finalPrunedRef=(*asso)[inputRef];
107  mapping[originalRef.key()]=packed;
108  packed++;
109  if(finalPrunedRef.isNonnull()){ //this particle exists also in the final pruned
110  outPtrP->push_back( pat::PackedGenParticle(cand,finalPrunedRef));
111  }else{
112  if(cand.numberOfMothers() > 0) {
113  edm::Ref<reco::GenParticleCollection> newRef=(*asso)[cand.motherRef(0)];
114  outPtrP->push_back( pat::PackedGenParticle(cand,newRef));
115  } else {
117  }
118  }
119 
120  }
121  }
122 
123 
125 
126  auto gp2pgp = std::make_unique<edm::Association<std::vector<pat::PackedGenParticle>>>(oh);
127  edm::Association< std::vector<pat::PackedGenParticle> >::Filler gp2pgpFiller(*gp2pgp);
128  gp2pgpFiller.insert(genOrigs, mapping.begin(), mapping.end());
129  gp2pgpFiller.fill();
130  iEvent.put(std::move(gp2pgp));
131 
132 
133 }
134 
135 
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:136
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:253
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
PATPackedGenParticleProducer(const edm::ParameterSet &)
size_t numberOfMothers() const override
number of mothers
double y() const final
rapidity
key_type key() const
Accessor for product key.
Definition: Ref.h:265
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Definition: HeavyIon.h:7
const edm::EDGetTokenT< reco::GenParticleCollection > Cands_
int iEvent
Definition: GenABIO.cc:230
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
const edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > > Asso_
daughters::value_type motherRef(size_type i=0) const
reference to mother at given position
fixed size matrix
HLT enums.
int status() const final
status word
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
const edm::EDGetTokenT< reco::GenParticleCollection > GenOrigs_
const edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > > AssoOriginal_
def move(src, dest)
Definition: eostools.py:510