CMS 3D CMS Logo

GenJetFlavourTableProducer.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 
4 // user include files
7 
9 
13 
18 
20 
23 
25  public:
26  explicit GenJetFlavourTableProducer(const edm::ParameterSet &iConfig) :
27  name_(iConfig.getParameter<std::string>("name")),
28  src_(consumes<std::vector<reco::GenJet> >(iConfig.getParameter<edm::InputTag>("src"))),
29  cut_(iConfig.getParameter<std::string>("cut"), true),
30  deltaR_(iConfig.getParameter<double>("deltaR")),
31  jetFlavourInfosToken_(consumes<reco::JetFlavourInfoMatchingCollection>(iConfig.getParameter<edm::InputTag>("jetFlavourInfos")))
32  {
33  produces<nanoaod::FlatTable>();
34  }
35 
37 
38  static void fillDescriptions(edm::ConfigurationDescriptions & descriptions) {
40  desc.add<edm::InputTag>("src")->setComment("input genJet collection");
41  desc.add<edm::InputTag>("jetFlavourInfos")->setComment("input flavour info collection");
42  desc.add<std::string>("name")->setComment("name of the genJet FlatTable we are extending with flavour information");
43  desc.add<std::string>("cut")->setComment("cut on input genJet collection");
44  desc.add<double>("deltaR")->setComment("deltaR to match genjets");
45  descriptions.add("genJetFlavourTable", desc);
46  }
47 
48  private:
49  void produce(edm::Event&, edm::EventSetup const&) override ;
50 
54  const double deltaR_;
56 
57 };
58 
59 // ------------ method called to produce the data ------------
60 void
62 {
64  iEvent.getByToken(src_, jets);
65 
67  iEvent.getByToken(jetFlavourInfosToken_, jetFlavourInfos);
68 
69  unsigned int ncand = 0;
70  std::vector<int> partonFlavour;
71  std::vector<uint8_t> hadronFlavour;
72 
73  for (const reco::GenJet & jet : *jets) {
74  if (!cut_(jet)) continue;
75  ++ncand;
76  bool matched = false;
77  for (const reco::JetFlavourInfoMatching & jetFlavourInfoMatching : *jetFlavourInfos) {
78  if (deltaR(jet.p4(), jetFlavourInfoMatching.first->p4()) < deltaR_) {
79  partonFlavour.push_back(jetFlavourInfoMatching.second.getPartonFlavour());
80  hadronFlavour.push_back(jetFlavourInfoMatching.second.getHadronFlavour());
81  matched = true;
82  break;
83  }
84  }
85  if (!matched) {
86  partonFlavour.push_back(0);
87  hadronFlavour.push_back(0);
88  }
89  }
90 
91  auto tab = std::make_unique<nanoaod::FlatTable>(ncand, name_, false, true);
92  tab->addColumn<int>("partonFlavour", partonFlavour, "flavour from parton matching", nanoaod::FlatTable::IntColumn);
93  tab->addColumn<uint8_t>("hadronFlavour", hadronFlavour, "flavour from hadron ghost clustering", nanoaod::FlatTable::UInt8Column);
94 
95  iEvent.put(std::move(tab));
96 }
97 
99 //define this as a plug-in
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
GenJetFlavourTableProducer(const edm::ParameterSet &iConfig)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
int iEvent
Definition: GenABIO.cc:230
edm::EDGetTokenT< reco::JetFlavourInfoMatchingCollection > jetFlavourInfosToken_
vector< PseudoJet > jets
edm::EDGetTokenT< std::vector< reco::GenJet > > src_
Jets made from MC generator particles.
Definition: GenJet.h:24
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void produce(edm::Event &, edm::EventSetup const &) override
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
JetFlavourInfoMatchingCollection::value_type JetFlavourInfoMatching
const StringCutObjectSelector< reco::GenJet > cut_
hadronFlavour
Definition: jets_cff.py:532
void add(std::string const &label, ParameterSetDescription const &psetDescription)
fixed size matrix
HLT enums.
partonFlavour
Definition: jets_cff.py:531
def move(src, dest)
Definition: eostools.py:510