7 nLep_ = fs->
make<TH1F>(
"nLep",
"N(Lepton)", 5, 0., 5.);
8 topPt_ = fs->
make<TH1F>(
"topPt",
"pt (top)", 100, 0., 500.);
9 topEta_ = fs->
make<TH1F>(
"topEta",
"eta(top)", 40, -5., 5.);
10 topPhi_ = fs->
make<TH1F>(
"topPhi",
"phi(top)", 60, -3.5, 3.5);
11 topBarPt_ = fs->
make<TH1F>(
"topBarPt",
"pt (topBar)", 100, 0., 500.);
12 topBarEta_ = fs->
make<TH1F>(
"topBarEta",
"eta(topBar)", 40, -5., 5.);
13 topBarPhi_ = fs->
make<TH1F>(
"topBarPhi",
"phi(topBar)", 60, -3.5, 3.5);
14 ttbarPt_ = fs->
make<TH1F>(
"ttbarPt",
"pt (ttbar)", 100, 0., 500.);
15 ttbarEta_ = fs->
make<TH1F>(
"ttbarEta",
"eta(ttbar)", 40, -5., 5.);
16 ttbarPhi_ = fs->
make<TH1F>(
"ttbarPhi",
"phi(ttbar)", 60, -3.5, 3.5);
17 prodChan_ = fs->
make<TH1F>(
"prodChan",
"production mode", 3, 0, 3);
18 prodChan_->GetXaxis()->SetBinLabel(1,
"gg" );
19 prodChan_->GetXaxis()->SetBinLabel(2,
"qqbar");
20 prodChan_->GetXaxis()->SetBinLabel(3,
"other");
33 if(!genEvent->isTtBar())
36 if(genEvent->fromGluonFusion())
38 else if(genEvent->fromQuarkAnnihilation())
44 nLep_ ->Fill(genEvent->numberOfLeptons());
47 topPt_ ->Fill(genEvent->top ()->pt ());
48 topEta_ ->Fill(genEvent->top ()->eta());
49 topPhi_ ->Fill(genEvent->top ()->phi());
50 topBarPt_ ->Fill(genEvent->topBar()->pt ());
55 ttbarPt_ ->Fill(genEvent->topPair()->pt() );
56 ttbarEta_->Fill(genEvent->topPair()->eta());
57 ttbarPhi_->Fill(genEvent->topPair()->phi());
TopGenEventAnalyzer(const edm::ParameterSet &)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
T * make(const Args &...args) const
make new ROOT object
Class derived from the TopGenEvent for ttbar events.
virtual void analyze(const edm::Event &, const edm::EventSetup &)
edm::EDGetTokenT< TtGenEvent > inputGenEventToken_
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")