Changeset 14 for trunk/modules


Ignore:
Timestamp:
Sep 15, 2008, 11:00:21 AM (16 years ago)
Author:
Pavel Demin
Message:

add JetPTMin parameter

Location:
trunk/modules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/MadGraphSISConeJetFinder.cc

    r11 r14  
    4343  fConeAreaFraction = GetDouble("ConeAreaFraction", 1.0);
    4444  fMaxIterations    = GetInt("MaxIterations", 100);
     45  fJetPTMin         = GetDouble("JetPTMin", 20.0);
    4546
    4647  fJetAlgo = new Csiscone;
     
    8788
    8889  // construct jets from a list of stable particles
    89   fJetAlgo->compute_jets(fParticlesList, fConeRadius, fConeAreaFraction, fMaxIterations);
     90  fJetAlgo->compute_jets(fParticlesList, fConeRadius, fConeAreaFraction, fMaxIterations, fJetPTMin);
    9091
    9192  // loop over all jets and export them
  • trunk/modules/MadGraphSISConeJetFinder.h

    r11 r14  
    3737  double fConeAreaFraction;
    3838  int    fMaxIterations;
     39  double fJetPTMin;
    3940
    4041  TIterator *fItInputArray; //!
Note: See TracChangeset for help on using the changeset viewer.