1 #include "fastjet/ClusterSequeneArea.hh" 
    2 #include "fastjet/tools/Selector.hh" 
    3 #include "fastjet/tools/BackgroundEstimator" 
   19   vector<PseudoJet> input_particles;
 
   20   double px, py , pz, E;
 
   21   while (cin >> px >> py >> pz >> E) {
 
   25   if (jets.size() > 2 && jets[0].perp() > 100) {
 
   26     double A_J = (jets[0].perp()-jets[1].perp())/(jets[0].perp()+jets[1].perp());
 
Selector SelectorNHardest(unsigned int n)
select the n hardest objects 
 
Selector SelectorAbsRapMax(double absrapmax)
select objects with |rap| <= absrapmax 
 
class that holds a generic area definition 
 
Selector SelectorPtMin(double ptmin)
select objects with pt >= ptmin 
 
int main()
an example program showing how to use fastjet 
 
Class that encodes information about cuts and other selection criteria that can be applied to PseudoJ...
 
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