KtJets.hh

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #ifndef RIVET_KtJets_HH
00003 #define RIVET_KtJets_HH
00004 
00005 #include "Rivet/Projection.hh"
00006 #include "Rivet/Projections/FinalState.hh"
00007 #include "KtJet/KtJet.h"
00008 #include "KtJet/KtEvent.h"
00009 
00010 
00011 namespace Rivet {
00012 
00013   /// Project out jets based on configurable kT algorithm.
00014   class KtJets : public Projection {
00015  
00016   public:
00017  
00018     /// @name Standard constructors and destructors.
00019     //@{
00020 
00021     /// Default constructor. Must specify a FinalState projection which is
00022     //  assumed to live throughout the run.
00023     KtJets(const FinalState& fsp)
00024       : _pktev(0), _type(4), _angle(2), _recom(1),
00025         _rparameter(1.0)
00026     {
00027       setName("KtJets");
00028       addProjection(fsp, "FS");
00029     }
00030 
00031 
00032     /// Argument constructor. Allows the to be run with different parameters.
00033     /// Must specify a FinalState projection which is assumed to live throughout the run.
00034     KtJets(const FinalState& fsp, int type, int angle, int recom, double rparameter)
00035       : _pktev(0), _type(type), _angle(angle), _recom(recom),
00036         _rparameter(rparameter)
00037     {
00038       setName("KtJets");
00039       addProjection(fsp, "FS");
00040     }
00041  
00042 
00043     /// Clone on the heap.
00044     virtual const Projection* clone() const {
00045       return new KtJets(*this);
00046     }
00047 
00048 
00049     /// Destructor.
00050     virtual ~KtJets() {
00051       delete _pktev;
00052     }
00053     //@}
00054 
00055  
00056   protected:
00057 
00058     /// Perform the projection on the Event.
00059     void project(const Event& e);
00060 
00061     /// Compare projections.
00062     int compare(const Projection& p) const;
00063 
00064 
00065   public:
00066  
00067     /// @name Access the projected NJets.
00068     //@ {
00069     int getNJets() const { return _pktev->getNJets(); }
00070     int getNConstituents() const { return _pktev->getNConstituents(); }
00071     vector<KtJet::KtLorentzVector> copyConstituents() const { return _pktev->copyConstituents(); }
00072     double getETot() const { return _pktev->getETot(); } // had trouble building with Ktfloat, used double instead
00073     int getType() const { return _pktev->getType(); }
00074     int getAngle() const { return _pktev->getAngle(); }
00075     int getRecom() const { return _pktev->getRecom(); }
00076     bool isInclusive() const { return _pktev->isInclusive(); }
00077 
00078     vector<KtJet::KtLorentzVector> getJets() const { return _pktev->getJets(); }
00079     vector<KtJet::KtLorentzVector> getJetsE() const { return _pktev->getJetsE(); }
00080     vector<KtJet::KtLorentzVector> getJetsEt() const { return _pktev->getJetsEt(); }
00081     vector<KtJet::KtLorentzVector> getJetsPt() const { return _pktev->getJetsPt(); }
00082     vector<KtJet::KtLorentzVector> getJetsRapidity() const { return _pktev->getJetsRapidity(); }
00083     vector<KtJet::KtLorentzVector> getJetsEta() const { return _pktev->getJetsEta(); }
00084     //@}
00085 
00086     /// Get the subjet splitting variables for the given jet.
00087     vector<double> getYSubJet(const KtJet::KtLorentzVector& jet) const;
00088 
00089 
00090   private:
00091  
00092     /// Internal KtEvent, rebuilt every time an event is projected, but not otherwise.
00093     KtJet::KtEvent* _pktev;
00094 
00095     int _type, _angle, _recom;
00096     double _rparameter;
00097 
00098     /// Map of vectors of y scales. This is mutable so we can use caching/lazy evaluation.
00099     mutable map<int, vector<double> > _yscales;
00100  
00101   };
00102 
00103 }
00104 
00105 #endif