Rivet Analyses Reference

CMS_2015_I1397174

Measurement of ttbar production with additional jet activity, including b quark jets, in the dilepton decay channel using pp collisions at sqrt(s)=8 TeV
Experiment: CMS (LHC)
Inspire ID: 1397174
Status: VALIDATED
Authors:
  • Javier Fernandez
  • Jungwan John Goh
  • Efe Yazgan
  • Markus Seidel
  • James Keaveney
  • Elvire Bouvier
  • Benedikt Maier
  • Andy Buckley
References:Beams: p+ p+
Beam energies: (4000.0, 4000.0) GeV
Run details:
  • ttbar events at $\sqrt{s}=8 \text{TeV}. Top quarks are expected in the event record to identify additional jets. Gap fractions require high statistics in a single run or custom merging of the YODA files.

Jet multiplicity distributions in top quark pair ($t\bar{t}$) events are measured in $pp$ collisions at a centre-of-mass energy of 8 \text{TeV} with the CMS detector at the LHC, using a data set corresponding to an integrated luminosity of 19.7/fb. The measurement is performed in the dilepton decay channels $e^+e^-$, $\mu^+\mu^-$, and $e^\pm\mu^\mp$). The absolute and normalized differential cross-sections for $t\bar{t}$ production are measured as a function of jet multiplicity for different jet transverse momentum thresholds and the kinematic properties of the leading additional jets. The differential $t\bar{t}b$ and $t\bar{t}b\bar{b}$ cross-sections are presented for the first time as a function of the kinematic properties of the leading additional $b$-jets. Furthermore, the fraction of events without additional jets above a threshold is measured as a function of the transverse momenta of the leading additional jets and the scalar sum of the transverse momenta of all additional jets.

Source code: CMS_2015_I1397174.cc
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/PartonicTops.hh"
#include "Rivet/Projections/VetoedFinalState.hh"
#include "Rivet/Projections/FastJets.hh"

namespace Rivet {


  /// Fully leptonic partonic ttbar analysis
  class CMS_2015_I1397174 : public Analysis {
  public:

    /// Minimal constructor
    CMS_2015_I1397174()
      : Analysis("CMS_2015_I1397174") { }


    /// @name Analysis methods
    //@{

    /// Set up projections and book histograms
    void init() {

      // Parton level top quarks
      declare(PartonicTops(PartonicTops::DecayMode::E_MU, false), "PartonTops");

      // Find jets not related to the top/W decays
      VetoedFinalState vfs;
      vfs.addDecayProductsVeto(PID::WPLUSBOSON);
      vfs.addDecayProductsVeto(PID::WMINUSBOSON);
      FastJets fj(vfs, FastJets::ANTIKT, 0.5, JetAlg::Muons::ALL, JetAlg::Invisibles::ALL);
      declare(fj, "Jets");

      // Book histograms
      book(_hVis_nJet30_abs       , 1, 1, 1);
      book(_hVis_nJet30           , 2, 1, 1);
      book(_hVis_nJet60_abs       , 3, 1, 1);
      book(_hVis_nJet60           , 4, 1, 1);
      book(_hVis_nJet100_abs      , 5, 1, 1);
      book(_hVis_nJet100          , 6, 1, 1);

      book(_hVis_addJet1Pt_abs    , 7, 1, 1);
      book(_hVis_addJet1Pt        , 8, 1, 1);
      book(_hVis_addJet1Eta_abs   , 9, 1, 1);
      book(_hVis_addJet1Eta       ,10, 1, 1);
      book(_hVis_addJet2Pt_abs    ,11, 1, 1);
      book(_hVis_addJet2Pt        ,12, 1, 1);
      book(_hVis_addJet2Eta_abs   ,13, 1, 1);
      book(_hVis_addJet2Eta       ,14, 1, 1);
      book(_hVis_addJJMass_abs    ,15, 1, 1);
      book(_hVis_addJJMass        ,16, 1, 1);
      book(_hVis_addJJDR_abs      ,17, 1, 1);
      book(_hVis_addJJDR          ,18, 1, 1);
      book(_hVis_addJJHT_abs      ,19, 1, 1);
      book(_hVis_addJJHT          ,20, 1, 1);

      book(_hFull_addJet1Pt_abs   ,21, 1, 1);
      book(_hFull_addJet1Pt       ,22, 1, 1);
      book(_hFull_addJet1Eta_abs  ,23, 1, 1);
      book(_hFull_addJet1Eta      ,24, 1, 1);
      book(_hFull_addJet2Pt_abs   ,25, 1, 1);
      book(_hFull_addJet2Pt       ,26, 1, 1);
      book(_hFull_addJet2Eta_abs  ,27, 1, 1);
      book(_hFull_addJet2Eta      ,28, 1, 1);
      book(_hFull_addJJMass_abs   ,29, 1, 1);
      book(_hFull_addJJMass       ,30, 1, 1);
      book(_hFull_addJJDR_abs     ,31, 1, 1);
      book(_hFull_addJJDR         ,32, 1, 1);
      book(_hFull_addJJHT_abs     ,33, 1, 1);
      book(_hFull_addJJHT         ,34, 1, 1);

      book(_hVis_addBJet1Pt_abs   ,35, 1, 1);
      book(_hVis_addBJet1Pt       ,36, 1, 1);
      book(_hVis_addBJet1Eta_abs  ,37, 1, 1);
      book(_hVis_addBJet1Eta      ,38, 1, 1);
      book(_hVis_addBJet2Pt_abs   ,39, 1, 1);
      book(_hVis_addBJet2Pt       ,40, 1, 1);
      book(_hVis_addBJet2Eta_abs  ,41, 1, 1);
      book(_hVis_addBJet2Eta      ,42, 1, 1);
      book(_hVis_addBBMass_abs    ,43, 1, 1);
      book(_hVis_addBBMass        ,44, 1, 1);
      book(_hVis_addBBDR_abs      ,45, 1, 1);
      book(_hVis_addBBDR          ,46, 1, 1);

      book(_hFull_addBJet1Pt_abs  ,47, 1, 1);
      book(_hFull_addBJet1Pt      ,48, 1, 1);
      book(_hFull_addBJet1Eta_abs ,49, 1, 1);
      book(_hFull_addBJet1Eta     ,50, 1, 1);
      book(_hFull_addBJet2Pt_abs  ,51, 1, 1);
      book(_hFull_addBJet2Pt      ,52, 1, 1);
      book(_hFull_addBJet2Eta_abs ,53, 1, 1);
      book(_hFull_addBJet2Eta     ,54, 1, 1);
      book(_hFull_addBBMass_abs   ,55, 1, 1);
      book(_hFull_addBBMass       ,56, 1, 1);
      book(_hFull_addBBDR_abs     ,57, 1, 1);
      book(_hFull_addBBDR         ,58, 1, 1);

      book(_h_gap_addJet1Pt       ,59, 1, 1);
      book(_h_gap_addJet1Pt_eta0  ,60, 1, 1);
      book(_h_gap_addJet1Pt_eta1  ,61, 1, 1);
      book(_h_gap_addJet1Pt_eta2  ,62, 1, 1);
      book(_h_gap_addJet2Pt       ,63, 1, 1);
      book(_h_gap_addJet2Pt_eta0  ,64, 1, 1);
      book(_h_gap_addJet2Pt_eta1  ,65, 1, 1);
      book(_h_gap_addJet2Pt_eta2  ,66, 1, 1);
      book(_h_gap_addJetHT        ,67, 1, 1);
      book(_h_gap_addJetHT_eta0   ,68, 1, 1);
      book(_h_gap_addJetHT_eta1   ,69, 1, 1);
      book(_h_gap_addJetHT_eta2   ,70, 1, 1);
    }


    void analyze(const Event& event) {

      // The objects used in the PAPER 12-041 are defined as follows (see p.16 for details):
      //
      //   * Leptons    : from the W boson decays after FSR
      //   * Jets       : anti-kT R=0.5 to all stable particles
      //                               exclude W->enu, munu, taunu
      //   * B jet      : B-Ghost matched
      //   * B from top : B hadron from top->b decay
      //
      // Visible phase space definition:
      //
      //   * Leptons         : pT > 20, |eta| < 2.4
      //   * B jets from top : pT > 30, |eta| < 2.4
      //     Additional jets : pT > 20, |eta| < 2.4
      //   *
      // Full phase space definition:
      //
      //   * Correction to dilepton BR from W boson BR
      //   * No cut on top decay products
      //   * Additional jets : pT > 20, |eta| < 2.4

      // Do the analysis only for the ttbar full leptonic channel, removing tau decays
      const Particles partontops = apply<ParticleFinder>(event, "PartonTops").particlesByPt();
      if (partontops.size() != 2) vetoEvent;
      const Particle& t1 = partontops[0];
      const Particle& t2 = partontops[1];

      // Apply acceptance cuts on top-decay leptons (existence should be guaranteed)
      const auto isPromptChLepton = [](const Particle& p){return p.isPrompt() && isChargedLepton(p);};
      const Particle lep1 = t1.allDescendants(lastParticleWith(isPromptChLepton)).front();
      const Particle lep2 = t2.allDescendants(lastParticleWith(isPromptChLepton)).front();
      if (lep1.pT() < 1e-9*GeV || lep2.pT() < 1e-9*GeV) vetoEvent; // sanity check?

      const Jets jets = apply<JetAlg>(event, "Jets").jetsByPt(Cuts::pT > 20*GeV && Cuts::abseta < 2.4);
      int nJet30 = 0, nJet60 = 0, nJet100 = 0;
      Jets topBJets, addJets, addBJets, addJets_eta0, addJets_eta1, addJets_eta2;
      for (const Jet& jet : jets) {
        if (jet.pT() >  30*GeV) nJet30 += 1;
        if (jet.pT() >  60*GeV) nJet60 += 1;
        if (jet.pT() > 100*GeV) nJet100 += 1;

        const bool isBtagged = jet.bTagged();
        const bool isBFromTop = any(jet.bTags(), hasParticleAncestorWith(Cuts::abspid == PID::TQUARK, false));

        if (isBFromTop) {
          if (jet.pT() > 30*GeV) topBJets.push_back(jet);
        } else {
          addJets.push_back(jet);
          if (isBtagged) addBJets.push_back(jet);
          if      (jet.abseta() < 0.8 ) addJets_eta0.push_back(jet);
          else if (jet.abseta() < 1.5 ) addJets_eta1.push_back(jet);
          else if (jet.abseta() < 2.4 ) addJets_eta2.push_back(jet);
        }
      }


      const bool isVisiblePS = topBJets.size() >= 2
        && lep1.pT() > 20*GeV && lep1.abseta() < 2.4 && lep2.pT() > 20*GeV && lep2.abseta() < 2.4;
      MSG_DEBUG(isVisiblePS << ": #b(top) = " << topBJets.size()
                << "; l1 = " << lep1.pT() << ", " << lep1.abseta()
                << "; l2 = " << lep2.pT() << ", " << lep2.abseta());

      const double weight = 1.0;


      if (isVisiblePS) {
        fillWithOF(_hVis_nJet30_abs,  nJet30, weight);
        fillWithOF(_hVis_nJet30,      nJet30, weight);
        fillWithOF(_hVis_nJet60_abs,  nJet60, weight);
        fillWithOF(_hVis_nJet60,      nJet60, weight);
        fillWithOF(_hVis_nJet100_abs, nJet100, weight);
        fillWithOF(_hVis_nJet100,     nJet100, weight);

        fillGapFractions(addJets, _h_gap_addJet1Pt, _h_gap_addJet2Pt, _h_gap_addJetHT, weight);
        fillGapFractions(addJets_eta0, _h_gap_addJet1Pt_eta0, _h_gap_addJet2Pt_eta0, _h_gap_addJetHT_eta0, weight);
        fillGapFractions(addJets_eta1, _h_gap_addJet1Pt_eta1, _h_gap_addJet2Pt_eta1, _h_gap_addJetHT_eta1, weight);
        fillGapFractions(addJets_eta2, _h_gap_addJet1Pt_eta2, _h_gap_addJet2Pt_eta2, _h_gap_addJetHT_eta2, weight);
      }

      // Plots with two additional jets
      if (addJets.size() >= 1) {
        const double ht = sum(addJets, Kin::pT, 0.0);
        _hFull_addJJHT_abs->fill(ht/GeV, weight);
        _hFull_addJJHT    ->fill(ht/GeV, weight);
        if (isVisiblePS) {
          _hVis_addJJHT_abs->fill(ht/GeV, weight);
          _hVis_addJJHT    ->fill(ht/GeV, weight);
        }

        const Jet& j1 = addJets[0];
        _hFull_addJet1Pt_abs ->fill(j1.pT()/GeV, weight);
        _hFull_addJet1Pt     ->fill(j1.pT()/GeV, weight);
        _hFull_addJet1Eta_abs->fill(j1.abseta(), weight);
        _hFull_addJet1Eta    ->fill(j1.abseta(), weight);
        if (isVisiblePS) {
          _hVis_addJet1Pt_abs ->fill(j1.pT()/GeV, weight);
          _hVis_addJet1Pt     ->fill(j1.pT()/GeV, weight);
          _hVis_addJet1Eta_abs->fill(j1.abseta(), weight);
          _hVis_addJet1Eta    ->fill(j1.abseta(), weight);
        }

        if (addJets.size() >= 2) {
          const Jet& j2 = addJets[1];

          _hFull_addJet2Pt_abs ->fill(j2.pT()/GeV, weight);
          _hFull_addJet2Pt     ->fill(j2.pT()/GeV, weight);
          _hFull_addJet2Eta_abs->fill(j2.abseta(), weight);
          _hFull_addJet2Eta    ->fill(j2.abseta(), weight);
          if (isVisiblePS) {
            _hVis_addJet2Pt_abs ->fill(j2.pT()/GeV, weight);
            _hVis_addJet2Pt     ->fill(j2.pT()/GeV, weight);
            _hVis_addJet2Eta_abs->fill(j2.abseta(), weight);
            _hVis_addJet2Eta    ->fill(j2.abseta(), weight);
          }

          const double jjmass = (j1.mom() + j2.mom()).mass();
          const double jjdR = deltaR(j1, j2);
          _hFull_addJJMass_abs->fill(jjmass/GeV, weight);
          _hFull_addJJMass    ->fill(jjmass/GeV, weight);
          _hFull_addJJDR_abs  ->fill(jjdR, weight);
          _hFull_addJJDR      ->fill(jjdR, weight);
          if (isVisiblePS) {
            _hVis_addJJMass_abs->fill(jjmass/GeV, weight);
            _hVis_addJJMass    ->fill(jjmass/GeV, weight);
            _hVis_addJJDR_abs  ->fill(jjdR, weight);
            _hVis_addJJDR      ->fill(jjdR, weight);
          }
        }
      }


      // Same set of plots if there are additional b-jets
      if (addBJets.size() >= 1) {
        const Jet& b1 = addBJets[0];
        _hFull_addBJet1Pt_abs ->fill(b1.pT()/GeV, weight);
        _hFull_addBJet1Pt     ->fill(b1.pT()/GeV, weight);
        _hFull_addBJet1Eta_abs->fill(b1.abseta(), weight);
        _hFull_addBJet1Eta    ->fill(b1.abseta(), weight);
        if (isVisiblePS) {
          _hVis_addBJet1Pt_abs ->fill(b1.pT()/GeV, weight);
          _hVis_addBJet1Pt     ->fill(b1.pT()/GeV, weight);
          _hVis_addBJet1Eta_abs->fill(b1.abseta(), weight);
          _hVis_addBJet1Eta    ->fill(b1.abseta(), weight);
        }

        if (addBJets.size() >= 2) {
          const Jet& b2 = addBJets[1];

          _hFull_addBJet2Pt_abs ->fill(b2.pT()/GeV, weight);
          _hFull_addBJet2Pt     ->fill(b2.pT()/GeV, weight);
          _hFull_addBJet2Eta_abs->fill(b2.abseta(), weight);
          _hFull_addBJet2Eta    ->fill(b2.abseta(), weight);
          if (isVisiblePS) {
            _hVis_addBJet2Pt_abs ->fill(b2.pT()/GeV, weight);
            _hVis_addBJet2Pt     ->fill(b2.pT()/GeV, weight);
            _hVis_addBJet2Eta_abs->fill(b2.abseta(), weight);
            _hVis_addBJet2Eta    ->fill(b2.abseta(), weight);
          }

          const double bbmass = (b1.mom() + b2.mom()).mass();
          const double bbdR = deltaR(b1, b2);
          _hFull_addBBMass_abs->fill(bbmass/GeV, weight);
          _hFull_addBBMass    ->fill(bbmass/GeV, weight);
          _hFull_addBBDR_abs  ->fill(bbdR, weight);
          _hFull_addBBDR      ->fill(bbdR, weight);
          if (isVisiblePS) {
            _hVis_addBBMass_abs->fill(bbmass/GeV, weight);
            _hVis_addBBMass    ->fill(bbmass/GeV, weight);
            _hVis_addBBDR_abs  ->fill(bbdR, weight);
            _hVis_addBBDR      ->fill(bbdR, weight);
          }
        }
      }

    }


    void finalize() {
      const double ttbarXS = !std::isnan(crossSectionPerEvent()) ? crossSection() : 252.89*picobarn;
      if (std::isnan(crossSectionPerEvent()))
        MSG_INFO("No valid cross-section given, using NNLO (arXiv:1303.6254; sqrt(s)=8 TeV, m_t=172.5 GeV): " << ttbarXS/picobarn << " pb");

        normalize(_hVis_nJet30); normalize(_hVis_nJet60); normalize(_hVis_nJet100);
        normalize(_hVis_addJet1Pt); normalize(_hVis_addJet1Eta); normalize(_hVis_addJet2Pt); 
        normalize(_hVis_addJet2Eta); normalize(_hVis_addJJMass); normalize(_hVis_addJJDR); 
        normalize(_hVis_addJJHT); normalize(_hFull_addJet1Pt); normalize(_hFull_addJet1Eta); 
        normalize(_hFull_addJet2Pt); normalize(_hFull_addJet2Eta); normalize(_hFull_addJJMass); 
        normalize(_hFull_addJJDR); normalize(_hFull_addJJHT); normalize(_hVis_addBJet1Pt); 
        normalize(_hVis_addBJet1Eta); normalize(_hVis_addBJet2Pt); normalize(_hVis_addBJet2Eta);
        normalize(_hVis_addBBMass); normalize(_hVis_addBBDR); normalize(_hFull_addBJet1Pt); 
        normalize(_hFull_addBJet1Eta); normalize(_hFull_addBJet2Pt); normalize(_hFull_addBJet2Eta);
        normalize(_hFull_addBBMass); normalize(_hFull_addBBDR);

        const double xsPerWeight = ttbarXS/picobarn / sumOfWeights();
        scale(_hVis_nJet30_abs,     xsPerWeight); scale(_hVis_nJet60_abs,      xsPerWeight); 
        scale(_hVis_nJet100_abs,    xsPerWeight); scale(_hVis_addJet1Pt_abs,   xsPerWeight);
        scale(_hVis_addJet1Eta_abs, xsPerWeight); scale(_hVis_addJet2Pt_abs,   xsPerWeight);
        scale(_hVis_addJet2Eta_abs, xsPerWeight); scale(_hVis_addJJMass_abs,   xsPerWeight);
        scale(_hVis_addJJDR_abs,    xsPerWeight); scale(_hVis_addJJHT_abs,     xsPerWeight);
        scale(_hVis_addBJet1Pt_abs, xsPerWeight); scale(_hVis_addBJet1Eta_abs, xsPerWeight); 
        scale(_hVis_addBJet2Pt_abs, xsPerWeight); scale(_hVis_addBJet2Eta_abs, xsPerWeight);
        scale(_hVis_addBBMass_abs,  xsPerWeight); scale(_hVis_addBBDR_abs,     xsPerWeight);

        const double sfull = xsPerWeight / 0.0454; //< correct for dilepton branching fraction
        scale(_hFull_addJet1Pt_abs, sfull); scale(_hFull_addJet1Eta_abs, sfull); 
        scale(_hFull_addJet2Pt_abs, sfull); scale(_hFull_addJet2Eta_abs, sfull);
        scale(_hFull_addJJMass_abs, sfull); scale(_hFull_addJJDR_abs, sfull); 
        scale(_hFull_addJJHT_abs, sfull); scale(_hFull_addBJet1Pt_abs, sfull); 
        scale(_hFull_addBJet1Eta_abs, sfull); scale(_hFull_addBJet2Pt_abs, sfull); 
        scale(_hFull_addBJet2Eta_abs, sfull); scale(_hFull_addBBMass_abs, sfull); 
        scale(_hFull_addBBDR_abs, sfull);
    }

    //@}


    void fillWithOF(Histo1DPtr h, double x, double w) {
      h->fill(std::min(x, h->xMax()-1e-9), w);
    }


    void fillGapFractions(const Jets& addJets, Profile1DPtr h_gap_addJet1Pt, Profile1DPtr h_gap_addJet2Pt, Profile1DPtr h_gap_addJetHT, double weight) {
      const double j1pt = (addJets.size() > 0) ? addJets[0].pT() : 0;
      for (size_t i = 0; i < h_gap_addJet1Pt->numBins(); ++i) {
        const double binCenter = h_gap_addJet1Pt->bin(i).xMid();
        h_gap_addJet1Pt->fillBin(i, int(j1pt/GeV < binCenter), weight);
      }

      const double j2pt = (addJets.size() > 1) ? addJets[1].pT() : 0;
      for (size_t i = 0; i < h_gap_addJet2Pt->numBins(); ++i) {
        const double binCenter = h_gap_addJet2Pt->bin(i).xMid();
        h_gap_addJet2Pt->fillBin(i, int(j2pt/GeV < binCenter), weight);
      }

      const double ht = sum(addJets, Kin::pT, 0.);
      for (size_t i = 0; i < h_gap_addJetHT->numBins(); ++i) {
        const double binCenter = h_gap_addJetHT->bin(i).xMid();
        h_gap_addJetHT->fillBin(i, int(ht/GeV < binCenter) , weight);
      }
    }


    // @name Histogram data members
    //@{

    Histo1DPtr _hVis_nJet30_abs, _hVis_nJet60_abs, _hVis_nJet100_abs;
    Histo1DPtr _hVis_addJet1Pt_abs, _hVis_addJet1Eta_abs, _hVis_addJet2Pt_abs, _hVis_addJet2Eta_abs;
    Histo1DPtr _hVis_addJJMass_abs, _hVis_addJJDR_abs, _hVis_addJJHT_abs;
    Histo1DPtr _hFull_addJet1Pt_abs, _hFull_addJet1Eta_abs, _hFull_addJet2Pt_abs, _hFull_addJet2Eta_abs;
    Histo1DPtr _hFull_addJJMass_abs, _hFull_addJJDR_abs, _hFull_addJJHT_abs;
    Histo1DPtr _hVis_addBJet1Pt_abs, _hVis_addBJet1Eta_abs, _hVis_addBJet2Pt_abs, _hVis_addBJet2Eta_abs;
    Histo1DPtr _hVis_addBBMass_abs, _hVis_addBBDR_abs;
    Histo1DPtr _hFull_addBJet1Pt_abs, _hFull_addBJet1Eta_abs, _hFull_addBJet2Pt_abs, _hFull_addBJet2Eta_abs;
    Histo1DPtr _hFull_addBBMass_abs, _hFull_addBBDR_abs;

    Histo1DPtr _hVis_nJet30, _hVis_nJet60, _hVis_nJet100;
    Histo1DPtr _hVis_addJet1Pt, _hVis_addJet1Eta, _hVis_addJet2Pt, _hVis_addJet2Eta;
    Histo1DPtr _hVis_addJJMass, _hVis_addJJDR, _hVis_addJJHT;
    Histo1DPtr _hFull_addJet1Pt, _hFull_addJet1Eta, _hFull_addJet2Pt, _hFull_addJet2Eta;
    Histo1DPtr _hFull_addJJMass, _hFull_addJJDR, _hFull_addJJHT;
    Histo1DPtr _hVis_addBJet1Pt, _hVis_addBJet1Eta, _hVis_addBJet2Pt, _hVis_addBJet2Eta;
    Histo1DPtr _hVis_addBBMass, _hVis_addBBDR;
    Histo1DPtr _hFull_addBJet1Pt, _hFull_addBJet1Eta, _hFull_addBJet2Pt, _hFull_addBJet2Eta;
    Histo1DPtr _hFull_addBBMass, _hFull_addBBDR;

    Profile1DPtr _h_gap_addJet1Pt, _h_gap_addJet1Pt_eta0, _h_gap_addJet1Pt_eta1, _h_gap_addJet1Pt_eta2;
    Profile1DPtr _h_gap_addJet2Pt, _h_gap_addJet2Pt_eta0, _h_gap_addJet2Pt_eta1, _h_gap_addJet2Pt_eta2;
    Profile1DPtr _h_gap_addJetHT, _h_gap_addJetHT_eta0, _h_gap_addJetHT_eta1, _h_gap_addJetHT_eta2;

    //@}

  };



  // The hook for the plugin system
  RIVET_DECLARE_PLUGIN(CMS_2015_I1397174);


}