43 #include "fastjet/ClusterSequence.hh"
54 vector<fastjet::PseudoJet> input_particles;
56 double px, py , pz, E;
57 while (cin >> px >> py >> pz >> E) {
79 vector<fastjet::PseudoJet> inclusive_jets = sorted_by_pt(clust_seq.
inclusive_jets(ptmin));
91 printf(
"%5s %15s %15s %15s\n",
"jet #",
"rapidity",
"phi",
"pt");
94 for (
unsigned int i = 0; i < inclusive_jets.size(); i++) {
95 printf(
"%5u %15.8f %15.8f %15.8f\n",
96 i, inclusive_jets[i].rap(), inclusive_jets[i].phi(),
97 inclusive_jets[i].perp());
std::vector< PseudoJet > inclusive_jets(const double ptmin=0.0) const
return a vector of all jets (in the sense of the inclusive algorithm) with pt >= ptmin.
int main()
an example program showing how to use fastjet
std::string description() const
return a textual description of the current jet definition
like the k_t but with distance measures dij = min(1/kti^2,1/ktj^2) Delta R_{ij}^2 / R^2 diB = 1/kti^2...
Class to contain pseudojets, including minimal information of use to jet-clustering routines...
class that is intended to hold a full definition of the jet clusterer