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 #ifndef __FASTJET_ACTIVEAREASPEC_HH__
00033 #define __FASTJET_ACTIVEAREASPEC_HH__
00034
00035 #include<vector>
00036 #include "fastjet/PseudoJet.hh"
00037 #include "fastjet/internal/BasicRandom.hh"
00038
00039
00040 #define STATIC_GENERATOR 1
00041
00042 FASTJET_BEGIN_NAMESPACE
00043
00044
00047 class ActiveAreaSpec {
00048 public:
00050 ActiveAreaSpec(): _ghost_etamax(6.0), _repeat(5), _ghost_area(0.01),
00051 _grid_scatter(1e-4), _kt_scatter(0.1),
00052 _mean_ghost_kt(1e-100),
00053 _actual_ghost_area(-1.0) {_initialize();};
00054
00056 explicit ActiveAreaSpec(double ghost_etamax,
00057 int repeat = 5,
00058 double ghost_area=0.01,
00059 double grid_scatter = 1e-4,
00060 double kt_scatter = 0.1,
00061 double mean_ghost_kt = 1e-100):
00062 _ghost_etamax(ghost_etamax),
00063 _repeat(repeat),
00064 _ghost_area(ghost_area),
00065 _grid_scatter(grid_scatter),
00066 _kt_scatter(kt_scatter),
00067 _mean_ghost_kt(mean_ghost_kt),
00068 _actual_ghost_area(-1.0) {_initialize();};
00069
00070
00072 void _initialize();
00073
00074
00075 inline double ghost_etamax() const {return _ghost_etamax;};
00076 inline double ghost_area () const {return _ghost_area ;};
00077 inline double grid_scatter() const {return _grid_scatter;};
00078 inline double kt_scatter () const {return _kt_scatter ;};
00079 inline double mean_ghost_kt() const {return _mean_ghost_kt ;};
00080 inline int repeat () const {return _repeat ;};
00081
00082
00083 inline double actual_ghost_area() const {return _actual_ghost_area;};
00084 inline int n_ghosts() const {return _n_ghosts;};
00085
00086
00087 inline void set_ghost_area (double val) {_ghost_area = val; _initialize();};
00088 inline void set_ghost_etamax(double val) {_ghost_etamax = val; _initialize();};
00089 inline void set_grid_scatter(double val) {_grid_scatter = val; };
00090 inline void set_kt_scatter (double val) {_kt_scatter = val; };
00091 inline void set_mean_ghost_kt(double val){_mean_ghost_kt = val; };
00092 inline void set_repeat (int val) {_repeat = val; };
00093
00095 void add_ghosts(std::vector<PseudoJet> & ) const;
00096
00097 private:
00098
00099
00100 double _ghost_etamax;
00101 int _repeat ;
00102 double _ghost_area ;
00103 double _grid_scatter;
00104 double _kt_scatter ;
00105 double _mean_ghost_kt;
00106
00107
00108 double _actual_ghost_area, _dphi, _deta;
00109 int _n_ghosts, _nphi, _neta;
00110
00111
00112 inline double _our_rand() const {return _random_generator();};
00113
00114 static BasicRandom<double> _random_generator;
00115
00116
00117
00118 };
00119
00120 FASTJET_END_NAMESPACE
00121
00122 #endif // __FASTJET_ACTIVEAREASPEC_HH__