CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
BasicGenParticleValidation.cc
Go to the documentation of this file.
1 /*class BasicGenParticleValidation
2  *
3  * Class to fill dqm monitor elements from existing EDM file
4  *
5  */
6 
8 
9 #include "CLHEP/Units/defs.h"
10 #include "CLHEP/Units/PhysicalConstants.h"
12 
13 using namespace edm;
14 
16  wmanager_(iPSet,consumesCollector()),
17  hepmcCollection_(iPSet.getParameter<edm::InputTag>("hepmcCollection")),
18  genparticleCollection_(iPSet.getParameter<edm::InputTag>("genparticleCollection")),
19  genjetCollection_(iPSet.getParameter<edm::InputTag>("genjetsCollection")),
20  matchPr_(iPSet.getParameter<double>("matchingPrecision")),
21  verbosity_(iPSet.getUntrackedParameter<unsigned int>("verbosity",0))
22 {
23 
24  hepmcCollectionToken_=consumes<HepMCProduct>(hepmcCollection_);
25  genparticleCollectionToken_=consumes<reco::GenParticleCollection>(genparticleCollection_);
26  genjetCollectionToken_=consumes<reco::GenJetCollection>(genjetCollection_);
27 
28 }
29 
31 
32 
33 
36  DQMHelper dqm(&i); i.setCurrentFolder("Generator/GenParticles");
38 
39  // Number of analyzed events
40  nEvt = dqm.book1dHisto("nEvt", "n analyzed Events", 1, 0., 1.,"","Number of Events");
41 
43  genPMultiplicity = dqm.book1dHisto("genPMultiplicty", "Log(No. all GenParticles)", 50, -1, 5,"log_{10}(N_{All GenParticles})","Number of Events"); //Log
44  //difference in HepMC and reco multiplicity
45  genMatched = dqm.book1dHisto("genMatched", "Difference reco - matched", 50, -25, 25,"N_{All GenParticles}-N_{Matched}","Number of Events");
46  //multiple matching
47  multipleMatching = dqm.book1dHisto("multipleMatching", "multiple reco HepMC matching", 50, 0, 50,"N_{multiple reco HepMC matching}","Number of Events");
48  //momentum difference of matched particles
49  matchedResolution = dqm.book1dHisto("matchedResolution", "log10(momentum difference of matched particles)", 70, -10., -3.,"log_{10}(#DeltaP_{matched Particles})","Number of Events");
50 
51  // GenJet general distributions
52  genJetMult = dqm.book1dHisto("genJetMult", "GenJet multiplicity", 50, 0, 50,"N_{gen-jets}","Number of Events");
53  genJetEnergy = dqm.book1dHisto("genJetEnergy", "Log10(GenJet energy)", 60, -1, 5,"log_{10}(E^{gen-jets}) (log_{10}(GeV))","Number of Events");
54  genJetPt = dqm.book1dHisto("genJetPt", "Log10(GenJet pt)", 60, -1, 5,"log_{10}(P_{t}^{gen-jets}) (log_{10}(GeV))","Number of Events");
55  genJetEta = dqm.book1dHisto("genJetEta", "GenJet eta", 220, -11, 11,"#eta^{gen-jets}","Number of Events");
56  genJetPhi = dqm.book1dHisto("genJetPhi", "GenJet phi", 360, -180, 180,"#phi^{gen-jets} (rad)","Number of Events");
57  genJetDeltaEtaMin = dqm.book1dHisto("genJetDeltaEtaMin", "GenJet minimum rapidity gap", 30, 0, 30,"#delta#eta_{min}^{gen-jets}","Number of Events");
58 
59  genJetPto1 = dqm.book1dHisto("genJetPto1", "GenJet multiplicity above 1 GeV", 50, 0, 50,"N_{gen-jets P_{t}>1GeV}","Number of Events");
60  genJetPto10 = dqm.book1dHisto("genJetPto10", "GenJet multiplicity above 10 GeV", 50, 0, 50,"N_{gen-jets P_{t}>10GeV}","Number of Events");
61  genJetPto100 = dqm.book1dHisto("genJetPto100", "GenJet multiplicity above 100 GeV", 50, 0, 50,"N_{gen-jets P_{t}>100GeV}","Number of Events");
62  genJetCentral = dqm.book1dHisto("genJetCentral", "GenJet multiplicity |eta|.lt.2.5", 50, 0, 50,"N_{gen-jets |#eta|#leq2.5}","Number of Events");
63 
64  genJetTotPt = dqm.book1dHisto("genJetTotPt", "Log10(GenJet total pt)", 100, -5, 5,"log_{10}(#SigmaP_{t}^{gen-jets}) (log_{10}(GeV))","Number of Events");
65 
66  return;
67 }
68 
70 {
71 
72  unsigned int initSize = 1000;
73 
76  iEvent.getByToken(hepmcCollectionToken_, evt);
77 
78  //Get HepMC EVENT
79  HepMC::GenEvent *myGenEvent = new HepMC::GenEvent(*(evt->GetEvent()));
80 
81  double weight = wmanager_.weight(iEvent);
82 
83  nEvt->Fill(0.5, weight);
84 
85  std::vector<const HepMC::GenParticle*> hepmcGPCollection;
86  std::vector<int> barcodeList;
87  hepmcGPCollection.reserve(initSize);
88  barcodeList.reserve(initSize);
89 
90  //Looping through HepMC::GenParticle collection to search for status 1 particles
91  for (HepMC::GenEvent::particle_const_iterator iter = myGenEvent->particles_begin(); iter != myGenEvent->particles_end(); ++iter){
92  if ( (*iter)->status() == 1) {
93  hepmcGPCollection.push_back(*iter);
94  barcodeList.push_back((*iter)->barcode());
95  if ( verbosity_ > 0 ) {
96  std::cout << "HepMC " << std::setw(14) << std::fixed << (*iter)->pdg_id() << std::setw(14) << std::fixed << (*iter)->momentum().px() << std::setw(14) << std::fixed
97  << (*iter)->momentum().py() << std::setw(14) << std::fixed << (*iter)->momentum().pz() << std::endl;
98  }
99  }
100  }
101 
102 
103  // Gather information on the reco::GenParticle collection
105  iEvent.getByToken(genparticleCollectionToken_, genParticles );
106 
107  std::vector<const reco::GenParticle*> particles;
108  particles.reserve(initSize);
109  for (reco::GenParticleCollection::const_iterator iter=genParticles->begin();iter!=genParticles->end();++iter){
110  if ( (*iter).status() == 1) {
111  particles.push_back(&*iter);
112  if ( verbosity_ > 0 ) {
113  std::cout << "reco " << std::setw(14) << std::fixed << (*iter).pdgId() << std::setw(14) << std::fixed << (*iter).px()
114  << std::setw(14) << std::fixed << (*iter).py() << std::setw(14) << std::fixed << (*iter).pz() << std::endl;
115  }
116  }
117  }
118 
119  unsigned int nReco = particles.size();
120  unsigned int nHepMC = hepmcGPCollection.size();
121 
122  genPMultiplicity->Fill(std::log10(nReco), weight);
123 
124  // Define vector containing index of hepmc corresponding to the reco::GenParticle
125  std::vector<int> hepmcMatchIndex;
126  hepmcMatchIndex.reserve(initSize);
127 
128  // Matching procedure
129 
130  // Check array size consistency
131 
132  if ( nReco != nHepMC ) {
133  edm::LogWarning("CollectionSizeInconsistency") << "Collection size inconsistency: HepMC::GenParticle = " << nHepMC << " reco::GenParticle = " << nReco;
134  }
135 
136  // Match each HepMC with a reco
137 
138  for ( unsigned int i = 0; i < nReco; ++i ){
139  for ( unsigned int j = 0; j < nHepMC; ++j ){
140  if ( matchParticles( hepmcGPCollection[j], particles[i] ) ) {
141  hepmcMatchIndex.push_back((int)j);
142  if ( hepmcGPCollection[j]->momentum().rho() != 0. ) {
143  double reso = 1.-particles[i]->p()/hepmcGPCollection[j]->momentum().rho();
144  if ( verbosity_ > 0 ) {
145  std::cout << "Matching momentum: reco = " << particles[i]->p() << " HepMC = "
146  << hepmcGPCollection[j]->momentum().rho() << " resoultion = " << reso << std::endl;
147  }
148  matchedResolution->Fill(std::log10(std::fabs(reso)),weight); }
149  continue;
150  }
151  }
152  }
153 
154  // Check unicity of matching
155 
156  unsigned int nMatched = hepmcMatchIndex.size();
157 
158  if ( nMatched != nReco ) {
159  edm::LogWarning("IncorrectMatching") << "Incorrect number of matched indexes: GenParticle = " << nReco << " matched indexes = " << nMatched;
160  }
161  genMatched->Fill(int(nReco-nMatched),weight);
162 
163  unsigned int nWrMatch = 0;
164 
165  for ( unsigned int i = 0; i < nMatched; ++i ){
166  for (unsigned int j = i+1; j < nMatched; ++j ){
167  if ( hepmcMatchIndex[i] == hepmcMatchIndex[j] ) {
168  int theIndex = hepmcMatchIndex[i];
169  edm::LogWarning("DuplicatedMatching") << "Multiple matching occurencies for GenParticle barcode = " << barcodeList[theIndex];
170  nWrMatch++;
171  }
172  }
173  }
174  multipleMatching->Fill(int(nWrMatch),weight);
175 
176  // Gather information in the GenJet collection
178  iEvent.getByToken(genjetCollectionToken_, genJets );
179 
180  int nJets = 0;
181  int nJetso1 = 0;
182  int nJetso10 = 0;
183  int nJetso100 = 0;
184  int nJetsCentral = 0;
185  double totPt = 0.;
186 
187  std::vector<double> jetEta;
188  jetEta.reserve(initSize);
189 
190  for (reco::GenJetCollection::const_iterator iter=genJets->begin();iter!=genJets->end();++iter){
191  nJets++;
192  double pt = (*iter).pt();
193  totPt += pt;
194  if (pt > 1.) nJetso1++;
195  if (pt > 10.) nJetso10++;
196  if (pt > 100.) nJetso100++;
197  double eta = (*iter).eta();
198  if ( std::fabs(eta) < 2.5 ) nJetsCentral++;
199  jetEta.push_back(eta);
200 
201  genJetEnergy->Fill(std::log10((*iter).energy()),weight);
202  genJetPt->Fill(std::log10(pt),weight);
203  genJetEta->Fill(eta,weight);
204  genJetPhi->Fill((*iter).phi()/CLHEP::degree,weight);
205  }
206 
207  genJetMult->Fill(nJets,weight);
208  genJetPto1->Fill(nJetso1,weight);
209  genJetPto10->Fill(nJetso10,weight);
210  genJetPto100->Fill(nJetso100,weight);
211  genJetCentral->Fill(nJetsCentral,weight);
212 
213  genJetTotPt->Fill(std::log10(totPt),weight);
214 
215  double deltaEta = 999.;
216  if ( jetEta.size() > 1 ) {
217  for (unsigned int i = 0; i < jetEta.size(); i++){
218  for (unsigned int j = i+1; j < jetEta.size(); j++){
219  deltaEta = std::min(deltaEta,std::fabs(jetEta[i]-jetEta[j]));
220  }
221  }
222  }
223 
224  genJetDeltaEtaMin->Fill(deltaEta,weight);
225 
226  delete myGenEvent;
227 }//analyze
228 
230 
231  bool state = false;
232 
233  if ( hepmcP->pdg_id() != recoP->pdgId() ) return state;
234  if ( std::fabs(hepmcP->momentum().px()-recoP->px()) < std::fabs(matchPr_*hepmcP->momentum().px()) &&
235  std::fabs(hepmcP->momentum().py()-recoP->py()) < std::fabs(matchPr_*hepmcP->momentum().py()) &&
236  std::fabs(hepmcP->momentum().pz()-recoP->pz()) < std::fabs(matchPr_*hepmcP->momentum().pz())) {
237  state = true; }
238 
239  return state;
240 
241 }
int i
Definition: DBlmapReader.cc:9
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
theIndex(0)
bool matchParticles(const HepMC::GenParticle *&, const reco::GenParticle *&)
MonitorElement * book1dHisto(std::string name, std::string title, int n, double xmin, double xmax, std::string xaxis, std::string yaxis)
Definition: DQMHelper.cc:12
static const double deltaEta
Definition: CaloConstants.h:8
void Fill(long long x)
int iEvent
Definition: GenABIO.cc:230
edm::EDGetTokenT< reco::GenJetCollection > genjetCollectionToken_
int j
Definition: DBlmapReader.cc:9
virtual double py() const final
y coordinate of momentum vector
T min(T a, T b)
Definition: MathUtil.h:58
edm::EDGetTokenT< edm::HepMCProduct > hepmcCollectionToken_
virtual double pz() const final
z coordinate of momentum vector
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:276
virtual int pdgId() const final
PDG identifier.
virtual void analyze(const edm::Event &, const edm::EventSetup &) override
virtual void bookHistograms(DQMStore::IBooker &i, edm::Run const &, edm::EventSetup const &) override
virtual double px() const final
x coordinate of momentum vector
tuple cout
Definition: gather_cfg.py:145
BasicGenParticleValidation(const edm::ParameterSet &)
int weight
Definition: histoStyle.py:50
double weight(const edm::Event &)
edm::EDGetTokenT< reco::GenParticleCollection > genparticleCollectionToken_
Definition: Run.h:43