rivet is hosted by Hepforge, IPPP Durham
Jet.fhh
Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #ifndef RIVET_Jet_FHH
00003 #define RIVET_Jet_FHH
00004 
00005 #include "Rivet/Tools/RivetSTL.hh"
00006 
00007 
00008 // Forward declaration
00009 namespace fastjet {
00010   class PseudoJet;
00011 }
00012 
00013 
00014 namespace Rivet {
00015 
00016   // Forward declaration
00017   class Jet;
00018 
00019   /// Typedef for a collection of Jet objects.
00020   typedef std::vector<Jet> Jets;
00021 
00022   /// Unscoped awareness of FastJet's PseudoJet
00023   using fastjet::PseudoJet;
00024 
00025   /// Typedef for a collection of PseudoJet objects.
00026   typedef std::vector<PseudoJet> PseudoJets;
00027 
00028 }
00029 
00030 
00031 #endif