FastJet  3.1.0-beta.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
02-jetdef.cc
Go to the documentation of this file.
1 //----------------------------------------------------------------------
2 /// \file
3 /// \page Example02 02 - changing the jet definition
4 ///
5 /// fastjet basic example program:
6 /// illustration of the usage of how to change the jet definition
7 /// used for the clustering (see also fastjet::JetDefinition)
8 ///
9 /// run it with : ./02-jetdef < data/single-event.dat
10 ///
11 /// Source code: 02-jetdef.cc
12 //----------------------------------------------------------------------
13 //
14 //STARTHEADER
15 // $Id: 02-jetdef.cc 2684 2011-11-14 07:41:44Z soyez $
16 //
17 // Copyright (c) 2005-2011, Matteo Cacciari, Gavin P. Salam and Gregory Soyez
18 //
19 //----------------------------------------------------------------------
20 // This file is part of FastJet.
21 //
22 // FastJet is free software; you can redistribute it and/or modify
23 // it under the terms of the GNU General Public License as published by
24 // the Free Software Foundation; either version 2 of the License, or
25 // (at your option) any later version.
26 //
27 // The algorithms that underlie FastJet have required considerable
28 // development and are described in hep-ph/0512210. If you use
29 // FastJet as part of work towards a scientific publication, please
30 // include a citation to the FastJet paper.
31 //
32 // FastJet is distributed in the hope that it will be useful,
33 // but WITHOUT ANY WARRANTY; without even the implied warranty of
34 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 // GNU General Public License for more details.
36 //
37 // You should have received a copy of the GNU General Public License
38 // along with FastJet. If not, see <http://www.gnu.org/licenses/>.
39 //----------------------------------------------------------------------
40 //ENDHEADER
41 
42 
43 #include "fastjet/ClusterSequence.hh"
44 #include <iostream> // needed for io
45 #include <cstdio> // needed for io
46 
47 using namespace std;
48 
49 /// an example program showing how to use fastjet
50 int main(){
51 
52  // read in input particles
53  //----------------------------------------------------------
54  vector<fastjet::PseudoJet> input_particles;
55 
56  double px, py , pz, E;
57  while (cin >> px >> py >> pz >> E) {
58  // create a fastjet::PseudoJet with these components and put it onto
59  // back of the input_particles vector
60  input_particles.push_back(fastjet::PseudoJet(px,py,pz,E));
61  }
62 
63 
64  // create a jet definition:
65  // a jet algorithm with a given radius parameter
66  //----------------------------------------------------------
67 
68  // select a jet algorithm to use
69  //
70  // this could be one of
71  // {kt_algorithm, cambridge_algorithm, antikt_algorithm,
72  // genkt_algorithm, ee_kt_algorithm, ee_genkt_algorithm}
73  // see example 03-plugin.cc for extra options using plugins
74  // instead of naive algorithms)
76 
77  // when appropriate select a radius to use
78  //
79  // this would not be mandatory for e^+ e^- algorithms (see 05-eplus_eminus.cc)
80  double R = 0.6;
81 
82  // select an __optional__ recombination scheme
83  //
84  // this could be one of
85  // {E_scheme, pt_scheme, pt2_scheme, Et_scheme, Et2_scheme, BIpt_scheme,
86  // BIpt2_scheme, external_sheme}
87  //
88  // Notes:
89  // - for the usage of a user-defined recombination scheme
90  // (external_scheme), see 11-boosted_higgs.cc
91  //
92  // By default, the E_scheme is used
94 
95  // select an __optional__ strategy
96  //
97  // this could be chosen among
98  // {N2MinHeapTiled, N2Tiled, N2PoorTiled, N2Plain, N3Dumb,
99  // Best,
100  // NlnN, NlnN3pi, NlnN4pi, NlnNCam4pi, NlnNCam2pi2R, NlnNCam}
101  //
102  // By default, the Best strategy is chosen and we advise to keep
103  // that default unless you are targeting a very specific usage. Note
104  // also that the N log (N) strategies for algorithms other than
105  // Cambridge/Aachen need CGAL support.
106  fastjet::Strategy strategy = fastjet::Best;
107 
108  // create the JetDefinition from the above information
109  fastjet::JetDefinition jet_def(jet_alg, R, recomb_scheme, strategy);
110 
111 
112  // run the jet clustering with the above jet definition
113  //----------------------------------------------------------
114  fastjet::ClusterSequence clust_seq(input_particles, jet_def);
115 
116 
117  // get the resulting jets ordered in pt
118  //----------------------------------------------------------
119  double ptmin = 5.0;
120  vector<fastjet::PseudoJet> inclusive_jets = sorted_by_pt(clust_seq.inclusive_jets(ptmin));
121 
122 
123  // tell the user what was done
124  // - the description of the algorithm used
125  // - extract the inclusive jets with pt > 5 GeV
126  // show the output as
127  // {index, rap, phi, pt}
128  //----------------------------------------------------------
129  cout << "Ran " << jet_def.description() << endl;
130 
131  // label the columns
132  printf("%5s %15s %15s %15s\n","jet #", "rapidity", "phi", "pt");
133 
134  // print out the details for each jet
135  for (unsigned int i = 0; i < inclusive_jets.size(); i++) {
136  printf("%5u %15.8f %15.8f %15.8f\n",
137  i, inclusive_jets[i].rap(), inclusive_jets[i].phi(),
138  inclusive_jets[i].perp());
139  }
140 
141  return 0;
142 }