CMS 3D CMS Logo

L1GenTreeProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: L1TriggerDPG/L1Ntuples
4 // Class: L1GenTreeProducer
5 //
13 //
14 // Original Author:
15 // Created:
16 // $Id: L1GenTreeProducer.cc,v 1.8 2012/08/29 12:44:03 jbrooke Exp $
17 //
18 //
19 
20 // system include files
21 #include <memory>
22 
23 // framework
30 
31 // input data formats
34 
37 #include "HepMC/GenParticle.h"
38 #include "HepMC/GenVertex.h"
40 
42 
43 // ROOT output stuff
46 #include "TTree.h"
47 
49 
50 //
51 // class declaration
52 //
53 
54 class L1GenTreeProducer : public edm::one::EDAnalyzer<edm::one::SharedResources> {
55 public:
56  explicit L1GenTreeProducer(const edm::ParameterSet&);
57  ~L1GenTreeProducer() override;
58 
59 private:
60  void beginJob(void) override;
61  void analyze(const edm::Event&, const edm::EventSetup&) override;
62  void endJob() override;
63 
64 private:
65  unsigned maxL1Upgrade_;
66 
67  // output file
69 
70  // tree
71  TTree* tree_;
72 
73  // data format
74  std::unique_ptr<L1Analysis::L1AnalysisGeneratorDataFormat> l1GenData_;
75 
76  // EDM input tags
81 };
82 
84  genJetToken_ = consumes<reco::GenJetCollection>(iConfig.getUntrackedParameter<edm::InputTag>("genJetToken"));
86  consumes<reco::GenParticleCollection>(iConfig.getUntrackedParameter<edm::InputTag>("genParticleToken"));
88  consumes<std::vector<PileupSummaryInfo>>(iConfig.getUntrackedParameter<edm::InputTag>("pileupInfoToken"));
89  genInfoToken_ = consumes<GenEventInfoProduct>(iConfig.getParameter<edm::InputTag>("genInfoToken"));
90 
91  l1GenData_ = std::make_unique<L1Analysis::L1AnalysisGeneratorDataFormat>();
92 
93  usesResource(TFileService::kSharedResource);
94  // set up output
95  tree_ = fs_->make<TTree>("L1GenTree", "L1GenTree");
96  tree_->Branch("Generator", "L1Analysis::L1AnalysisGeneratorDataFormat", l1GenData_.get(), 32000, 3);
97 }
98 
100  // do anything here that needs to be done at desctruction time
101  // (e.g. close files, deallocate resources etc.)
102 }
103 
104 //
105 // member functions
106 //
107 
108 // ------------ method called to for each event ------------
111  iEvent.getByToken(genInfoToken_, genInfo);
112 
113  l1GenData_->Reset();
114 
115  if (genInfo.isValid()) {
116  l1GenData_->weight = genInfo->weight();
117  l1GenData_->pthat = genInfo->hasBinningValues() ? (genInfo->binningValues())[0] : 0.0;
118  }
119 
121  iEvent.getByToken(genJetToken_, genJets);
122 
123  if (genJets.isValid()) {
124  reco::GenJetCollection::const_iterator jetItr = genJets->begin();
125  reco::GenJetCollection::const_iterator jetEnd = genJets->end();
126  for (; jetItr != jetEnd; ++jetItr) {
127  l1GenData_->jetPt.push_back(jetItr->pt());
128  l1GenData_->jetEta.push_back(jetItr->eta());
129  l1GenData_->jetPhi.push_back(jetItr->phi());
130  l1GenData_->nJet++;
131  }
132 
133  } else {
134  edm::LogWarning("MissingProduct") << "Gen jets not found. Branch will not be filled" << std::endl;
135  }
136 
139 
140  if (genParticles.isValid()) {
141  int nPart{0};
142 
143  for (size_t i = 0; i < genParticles->size(); ++i) {
144  const reco::GenParticle& p = (*genParticles)[i];
145  int id = p.pdgId();
146 
147  // See if the parent was interesting
148  int parentID = -10000;
149  unsigned int nMo = p.numberOfMothers();
150  for (unsigned int i = 0; i < nMo; ++i) {
151  int thisParentID = dynamic_cast<const reco::GenParticle*>(p.mother(i))->pdgId();
152  //
153  // Is this a bottom hadron?
154  int hundredsIndex = abs(thisParentID) / 100;
155  int thousandsIndex = abs(thisParentID) / 1000;
156  if (((abs(thisParentID) >= 23) && (abs(thisParentID) <= 25)) || (abs(thisParentID) == 6) ||
157  (hundredsIndex == 5) || (hundredsIndex == 4) || (thousandsIndex == 5) || (thousandsIndex == 4))
158  parentID = thisParentID;
159  }
160  if ((parentID == -10000) && (nMo > 0))
161  parentID = dynamic_cast<const reco::GenParticle*>(p.mother(0))->pdgId();
162  //
163  // If the parent of this particle is interesting, store all of the info
164  if ((parentID != p.pdgId()) &&
165  ((parentID > -9999) || (abs(id) == 11) || (abs(id) == 13) || (abs(id) == 23) || (abs(id) == 24) ||
166  (abs(id) == 25) || (abs(id) == 4) || (abs(id) == 5) || (abs(id) == 6))) {
167  l1GenData_->partId.push_back(p.pdgId());
168  l1GenData_->partStat.push_back(p.status());
169  l1GenData_->partPt.push_back(p.pt());
170  l1GenData_->partEta.push_back(p.eta());
171  l1GenData_->partPhi.push_back(p.phi());
172  l1GenData_->partE.push_back(p.energy());
173  l1GenData_->partParent.push_back(parentID);
174  l1GenData_->partCh.push_back(p.charge());
175  ++nPart;
176  }
177  }
178  l1GenData_->nPart = nPart;
179  }
180 
182  iEvent.getByToken(pileupInfoToken_, puInfoCollection);
183 
184  if (!puInfoCollection.isValid()) {
185  throw cms::Exception("ProductNotValid") << "pileupInfoSource not valid";
186  }
187 
188  // Loop over vector, find in-time entry, then store the relevant info
189  std::vector<PileupSummaryInfo>::const_iterator puItr = puInfoCollection->begin();
190  std::vector<PileupSummaryInfo>::const_iterator puEnd = puInfoCollection->end();
191  for (; puItr != puEnd; ++puItr) {
192  int bx = puItr->getBunchCrossing();
193  if (bx == 0) {
194  l1GenData_->nMeanPU = puItr->getTrueNumInteractions();
195  l1GenData_->nVtx = puItr->getPU_NumInteractions();
196  break;
197  }
198  }
199 
200  tree_->Fill();
201 }
202 
203 // ------------ method called once each job just before starting event loop ------------
205 
206 // ------------ method called once each job just after ending the event loop ------------
208 
209 //define this as a plug-in
static const std::string kSharedResource
Definition: TFileService.h:76
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
const std::vector< double > & binningValues() const
edm::EDGetTokenT< std::vector< PileupSummaryInfo > > pileupInfoToken_
void analyze(const edm::Event &, const edm::EventSetup &) override
edm::EDGetTokenT< GenEventInfoProduct > genInfoToken_
T getUntrackedParameter(std::string const &, T const &) const
~L1GenTreeProducer() override
edm::Service< TFileService > fs_
int iEvent
Definition: GenABIO.cc:224
void beginJob(void) override
edm::EDGetTokenT< reco::GenJetCollection > genJetToken_
edm::EDGetTokenT< reco::GenParticleCollection > genParticleToken_
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
TString nPart(Int_t part, TString string, TString delimit=";", Bool_t removerest=true)
std::unique_ptr< L1Analysis::L1AnalysisGeneratorDataFormat > l1GenData_
L1GenTreeProducer(const edm::ParameterSet &)
bool isValid() const
Definition: HandleBase.h:70
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
bool hasBinningValues() const
Log< level::Warning, false > LogWarning
void endJob() override