1 #ifndef ST_FAST_JET_AREA_PARS_H
2 #define ST_FAST_JET_AREA_PARS_H
7 static const int active_area;
8 static const int active_area_explicit_ghosts;
9 static const int one_ghost_passive_area;
10 static const int passive_area;
13 : mArea_type(active_area)
19 , mMean_ghost_pt(1e-100)
24 int areaType ()
const {
return mArea_type; }
25 double ghostMaxRap ()
const {
return mGhost_maxrap; }
26 int repeat()
const {
return mRepeat; }
27 double ghostArea ()
const {
return mGhost_area; }
28 double gridScatter ()
const {
return mGrid_scatter; }
29 double ptScatter()
const {
return mPt_scatter; }
30 double meanGhostPt()
const {
return mMean_ghost_pt; }
32 void setAreaType (
int area_type) { mArea_type = area_type; }
33 void setGhostMaxRap (
double ghost_maxrap) { mGhost_maxrap = ghost_maxrap; }
34 void setRepeat (
int repeat) { mRepeat = repeat; }
35 void setGhostArea (
double ghost_area) { mGhost_area = ghost_area; }
36 void setGridScatter (
double grid_scatter) { mGrid_scatter = grid_scatter; }
37 void setPtScatter(
double pt_scatter) { mPt_scatter = pt_scatter; }
38 void setMeanGhostPt (
double mean_ghost_pt) { mMean_ghost_pt = mean_ghost_pt; }
47 double mMean_ghost_pt;
52 #endif // ST_FAST_JET_PARS_H