File: IsolationTools.hh

package info (click to toggle)
rivet 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 22,900 kB
  • sloc: cpp: 47,222; sh: 10,328; python: 6,469; ansic: 1,710; makefile: 1,221
file content (19 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// -*- C++ -*-
#ifndef RIVET_IsolationTools_HH
#define RIVET_IsolationTools_HH

#include "Rivet/Projections/IsolationProjection.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/JetAlg.hh"

namespace Rivet {

  typedef IsolationProjection<JetAlg, JetAlg> AllJetsIso;

  typedef IsolationProjection<FinalState, FinalState> AllParticleIso;

  typedef IsolationProjection<FinalState, JetAlg> ParticleFromJetIso;

}

#endif