00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 #include "fastjet/PseudoJet.hh"
00046 #include "fastjet/ClusterSequenceArea.hh"
00047 #include "fastjet/ClusterSequencePassiveArea.hh"
00048
00049
00050 #include "fastjet/config.h"
00051
00052 #ifdef ENABLE_PLUGIN_SISCONE
00053 #include "fastjet/SISConePlugin.hh"
00054 #endif
00055
00056 #include<iostream>
00057 #include<sstream>
00058 #include<vector>
00059
00060 using namespace std;
00061
00062
00063 void print_jets (const fastjet::ClusterSequenceAreaBase &,
00064 const vector<fastjet::PseudoJet> &);
00065
00067 int main (int argc, char ** argv) {
00068
00069 vector<fastjet::PseudoJet> input_particles;
00070
00071
00072 double px, py , pz, E;
00073 while (cin >> px >> py >> pz >> E) {
00074
00075
00076 input_particles.push_back(fastjet::PseudoJet(px,py,pz,E));
00077 }
00078
00079
00080
00081 double Rparam = 1.0;
00082 fastjet::Strategy strategy = fastjet::Best;
00083 fastjet::JetDefinition jet_def(fastjet::kt_algorithm, Rparam, strategy);
00084
00085
00086
00087
00088
00089 fastjet::AreaDefinition area_def;
00090 bool use_voronoi = false;
00091 if (!use_voronoi) {
00092 double ghost_etamax = 7.0;
00093 int active_area_repeats = 1;
00094
00095
00096 double ghost_area = 0.05;
00097
00098 fastjet::GhostedAreaSpec ghost_spec(ghost_etamax, active_area_repeats,
00099 ghost_area);
00100 area_def = fastjet::AreaDefinition(fastjet::passive_area,ghost_spec);
00101 } else {
00102 double effective_Rfact = 1.0;
00103 area_def = fastjet::VoronoiAreaSpec(effective_Rfact);
00104 }
00105
00106
00107 fastjet::ClusterSequenceArea clust_seq(input_particles,
00108 jet_def, area_def);
00109
00110
00111
00112
00113
00114
00115
00116
00117 cout << "Jet definition was: " << jet_def.description() << endl;
00118 cout << "Area definition was: " << area_def.description() << endl;
00119 cout << "Strategy adopted by FastJet was "<<
00120 clust_seq.strategy_string()<<endl<<endl;
00121
00122
00123 double ptmin = 5.0;
00124 vector<fastjet::PseudoJet> inclusive_jets = clust_seq.inclusive_jets(ptmin);
00125
00126
00127 cout << "Printing inclusive jets with pt > "<< ptmin<<" GeV\n";
00128 cout << "---------------------------------------\n";
00129 print_jets(clust_seq, inclusive_jets);
00130 cout << endl;
00131
00132
00133 cout << "Number of unclustered particles: "
00134 << clust_seq.unclustered_particles().size() << endl;
00135
00136
00137 }
00138
00139
00140
00142 void print_jets (const fastjet::ClusterSequenceAreaBase & clust_seq,
00143 const vector<fastjet::PseudoJet> & unsorted_jets) {
00144
00145
00146 vector<fastjet::PseudoJet> jets = sorted_by_pt(unsorted_jets);
00147
00148 printf(" ijet rap phi Pt area +- err\n");
00149 for (size_t j = 0; j < jets.size(); j++) {
00150
00151 double area = clust_seq.area(jets[j]);
00152 double area_error = clust_seq.area_error(jets[j]);
00153
00154 printf("%5u %9.5f %8.5f %10.3f %8.3f +- %6.3f\n",j,jets[j].rap(),
00155 jets[j].phi(),jets[j].perp(), area, area_error);
00156 }
00157
00158
00159 }
00160
00161
00162
00163
00164
00165
00166