ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/VHbb/plugins/Histos.h
(Generate patch)

Comparing UserCode/VHbb/plugins/Histos.h (file contents):
Revision 1.3 by bortigno, Tue May 8 08:13:27 2012 UTC vs.
Revision 1.4 by bortigno, Fri May 11 09:46:37 2012 UTC

# Line 250 | Line 250 | public:
250      StH_nPVs = new TH1F(("nPVs"+suffix).c_str(),("Number of reconstructed PV ("+suffix+")").c_str(), bin_npvs, min_npvs, max_npvs );
251      StH_addJets = new TH1F(("addJets"+suffix).c_str(),("Number of additional AK5 ("+suffix+")").c_str(), bin_addJets, min_addJets, max_addJets );
252  
253 +    StH_typeImet_et = new TH1F(("typeIMET_et"+suffix).c_str(),("Type corrected missing transverse energy ("+suffix+")").c_str(), bin_pt, min_pt, max_pt*0.5 );
254      StH_met_et = new TH1F(("MET_et"+suffix).c_str(),("Missing transverse energy ("+suffix+")").c_str(), bin_pt, min_pt, max_pt*0.5 );
255      StH_met_sig = new TH1F(("MET_sig"+suffix).c_str(),("MET significance("+suffix+")").c_str(), bin_pt, min_pt, max_pt*0.1 );
256  
# Line 278 | Line 279 | public:
279      StH_simpleJet2_vtxMass = new TH1F(("SimpleJet2_vtxMass"+suffix).c_str(),("Simple Jet2 vtxMass ("+suffix+")").c_str(), bin_SVmass, min_SVmass, max_SVmass );
280  
281      StH_simpleJets_bTag = new TH1F(("SimpleJets_bTag"+suffix).c_str(),("Simple Jets bTag ("+suffix+")").c_str(), bin_btag, min_btag, max_btag );
282 +    StH_simpleJets_bTagSum = new TH1F(("SimpleJets_bTagSum"+suffix).c_str(),("Simple Jets bTagSum ("+suffix+")").c_str(), bin_btag*2, min_btag, max_btag*2 );
283      StH_simpleJets_vtxMass = new TH1F(("SimpleJets_vtxMass"+suffix).c_str(),("Simple Jets vtxMass ("+suffix+")").c_str(), bin_SVmass, min_SVmass, max_SVmass );
284  
285      StH_addJet1_pt = new TH1F(("AddJet1_pt"+suffix).c_str(),("Additional Jet1 pt ("+suffix+")").c_str(), bin_pt, min_pt, max_pt*0.8 );
# Line 321 | Line 323 | public:
323      StH_nPVs->Fill(iEvent.nPVs, w);
324      StH_addJets->Fill(iEvent.CountAddJets(), w);
325  
326 <    StH_met_et->Fill( TMath::Min(iEvent.METnoPUCh_et, iEvent.METnoPU_et ), w);
326 >    StH_typeImet_et->Fill(iEvent.typeIcorrMET(), w);
327 >    //    StH_met_et->Fill( TMath::Min(iEvent.METnoPUCh_et, iEvent.METnoPU_et ), w);
328 >    StH_met_et->Fill( iEvent.MET_et, w);
329      StH_met_sig->Fill(iEvent.MET_sig, w);
330  
331      StH_vectorLepton1_pt->Fill(iEvent.vLepton_pt[0], w);
# Line 355 | Line 359 | public:
359        StH_simpleJet2_vtxMass->Fill(iEvent.hJet_vtxMass[1], w);
360      }
361      //here I fill both jets in one histo
362 +    StH_simpleJets_bTagSum->Fill(iEvent.hJet_csv[0]+iEvent.hJet_csv[1], w);
363      StH_simpleJets_bTag->Fill(iEvent.hJet_csv[0], w);
364      StH_simpleJets_bTag->Fill(iEvent.hJet_csv[1], w);
365      StH_simpleJets_vtxMass->Fill(iEvent.hJet_vtxMass[0], w);
# Line 445 | Line 450 | public:
450  
451    TH1F * StH_nPVs;
452    TH1F * StH_addJets;
453 +  TH1F * StH_typeImet_et;
454    TH1F * StH_met_et;
455    TH1F * StH_met_sig;
456  
# Line 473 | Line 479 | public:
479    TH1F * StH_simpleJet2_vtxMass;
480  
481    TH1F * StH_simpleJets_bTag;
482 +  TH1F * StH_simpleJets_bTagSum;
483    TH1F * StH_simpleJets_vtxMass;
484  
485    TH1F * StH_addJet1_pt;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines