00001
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
00014 class KtJets : public Projection {
00015
00016 public:
00017
00018
00019
00020
00021
00022
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
00033
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
00044 virtual const Projection* clone() const {
00045 return new KtJets(*this);
00046 }
00047
00048
00049
00050 virtual ~KtJets() {
00051 delete _pktev;
00052 }
00053
00054
00055
00056 protected:
00057
00058
00059 void project(const Event& e);
00060
00061
00062 int compare(const Projection& p) const;
00063
00064
00065 public:
00066
00067
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(); }
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
00087 vector<double> getYSubJet(const KtJet::KtLorentzVector& jet) const;
00088
00089
00090 private:
00091
00092
00093 KtJet::KtEvent* _pktev;
00094
00095 int _type, _angle, _recom;
00096 double _rparameter;
00097
00098
00099 mutable map<int, vector<double> > _yscales;
00100
00101 };
00102
00103 }
00104
00105 #endif