[9687203] | 1 | // Nsubjettiness Package
|
---|
| 2 | // Questions/Comments? jthaler@jthaler.net
|
---|
| 3 | //
|
---|
| 4 | // Copyright (c) 2011-14
|
---|
| 5 | // Jesse Thaler, Ken Van Tilburg, Christopher K. Vermilion, and TJ Wilkason
|
---|
| 6 | //
|
---|
[973b92a] | 7 | // $Id: NjettinessPlugin.hh 822 2015-06-15 23:52:57Z jthaler $
|
---|
[9687203] | 8 | //----------------------------------------------------------------------
|
---|
| 9 | // This file is part of FastJet contrib.
|
---|
| 10 | //
|
---|
| 11 | // It is free software; you can redistribute it and/or modify it under
|
---|
| 12 | // the terms of the GNU General Public License as published by the
|
---|
| 13 | // Free Software Foundation; either version 2 of the License, or (at
|
---|
| 14 | // your option) any later version.
|
---|
| 15 | //
|
---|
| 16 | // It is distributed in the hope that it will be useful, but WITHOUT
|
---|
| 17 | // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
---|
| 18 | // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
---|
| 19 | // License for more details.
|
---|
| 20 | //
|
---|
| 21 | // You should have received a copy of the GNU General Public License
|
---|
| 22 | // along with this code. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 23 | //----------------------------------------------------------------------
|
---|
| 24 |
|
---|
| 25 | #ifndef __FASTJET_CONTRIB_NJETTINESSPLUGIN_HH__
|
---|
| 26 | #define __FASTJET_CONTRIB_NJETTINESSPLUGIN_HH__
|
---|
| 27 |
|
---|
[973b92a] | 28 | #include <fastjet/config.h>
|
---|
| 29 |
|
---|
[9687203] | 30 | #include "Njettiness.hh"
|
---|
[973b92a] | 31 | #include "MeasureDefinition.hh"
|
---|
| 32 | #include "AxesDefinition.hh"
|
---|
| 33 | #include "TauComponents.hh"
|
---|
[9687203] | 34 |
|
---|
| 35 | #include "fastjet/ClusterSequence.hh"
|
---|
| 36 | #include "fastjet/JetDefinition.hh"
|
---|
| 37 |
|
---|
| 38 | #include <string>
|
---|
| 39 | #include <climits>
|
---|
| 40 |
|
---|
| 41 | FASTJET_BEGIN_NAMESPACE // defined in fastjet/internal/base.hh
|
---|
| 42 |
|
---|
| 43 |
|
---|
| 44 | namespace contrib {
|
---|
| 45 |
|
---|
| 46 |
|
---|
[973b92a] | 47 | /// \class NjettinessPlugin
|
---|
| 48 | /// \brief Implements the N-jettiness Jet Algorithm
|
---|
[9687203] | 49 | /**
|
---|
| 50 | * An exclusive jet finder that identifies N jets; first N axes are found, then
|
---|
| 51 | * particles are assigned to the nearest (DeltaR) axis and for each axis the
|
---|
| 52 | * corresponding jet is simply the four-momentum sum of these particles.
|
---|
| 53 | *
|
---|
[973b92a] | 54 | * As of version 2.2, it is recommended to use the XConePlugin, which has
|
---|
| 55 | * sensible default values for jet finding.
|
---|
[9687203] | 56 | *
|
---|
[973b92a] | 57 | * Axes can be found in several ways, specified by the AxesDefinition argument.
|
---|
| 58 | * The recommended AxesDefinitions for jet finding (different than for jet shapes)
|
---|
| 59 | * OnePass_AntiKT(R0) : one-pass minimization from anti-kT starting point
|
---|
| 60 | * OnePass_GenET_GenKT_Axes(delta, p, R0) : one-pass min. from GenET/KT
|
---|
| 61 | * OnePass_WTA_GenKT_Axes(p, R0) : one-pass min from WTA/GenKT
|
---|
| 62 | * For recommendations on which axes to use, please see the README file.
|
---|
[9687203] | 63 | *
|
---|
[973b92a] | 64 | * Jet regions are determined by the MeasureDefinition. The recommended choices
|
---|
| 65 | * for jet finding are
|
---|
| 66 | * ConicalMeasure(beta,R0) : perfect cones in rapidity/azimuth plane
|
---|
| 67 | * XConeMeasure(beta,R0) : approximate cones based on dot product distances.
|
---|
[9687203] | 68 | *
|
---|
[973b92a] | 69 | * Other measures introduced in version 2.2 include OriginalGeometricMeasure,
|
---|
| 70 | * ModifiedGeometricMeasure, and ConicalGeometricMeasure, which define N-jettiness
|
---|
| 71 | * through dot products of particle momenta with light-like axes. OriginalGeometricMeasure
|
---|
| 72 | * produces football-shaped jets due to its central weighting of the beam measure,
|
---|
| 73 | * but ModifiedGeometric and ConicalGeometric both deform the original geometric measure
|
---|
| 74 | * to allow for cone-shaped jets. The size of these cones can be controlled through Rcutoff
|
---|
| 75 | * just as in the other measures. See the README file or MeasureDefinition.hh for information
|
---|
| 76 | * on how to call these measures.
|
---|
| 77 | *
|
---|
[9687203] | 78 | */
|
---|
| 79 | class NjettinessPlugin : public JetDefinition::Plugin {
|
---|
| 80 | public:
|
---|
| 81 |
|
---|
[973b92a] | 82 | /// Constructor with same arguments as Nsubjettiness (N, AxesDefinition, MeasureDefinition)
|
---|
[9687203] | 83 | NjettinessPlugin(int N,
|
---|
[35cdc46] | 84 | const AxesDefinition & axes_def,
|
---|
| 85 | const MeasureDefinition & measure_def)
|
---|
| 86 | : _njettinessFinder(axes_def, measure_def), _N(N) {}
|
---|
| 87 |
|
---|
[973b92a] | 88 |
|
---|
| 89 | /// Description
|
---|
| 90 | virtual std::string description () const;
|
---|
| 91 | /// Jet radius (this does not make sense yet)
|
---|
| 92 | virtual double R() const {return -1.0;} // TODO: make this not stupid
|
---|
| 93 |
|
---|
| 94 | /// The actually clustering, which first called Njettiness and then creates a dummy ClusterSequence
|
---|
| 95 | virtual void run_clustering(ClusterSequence&) const;
|
---|
| 96 |
|
---|
| 97 | /// For using manual axes with Njettiness Plugin
|
---|
| 98 | void setAxes(const std::vector<fastjet::PseudoJet> & myAxes) {
|
---|
| 99 | // Cross check that manual axes are being used is in Njettiness
|
---|
| 100 | _njettinessFinder.setAxes(myAxes);
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | /// Destructor
|
---|
| 104 | virtual ~NjettinessPlugin() {}
|
---|
| 105 |
|
---|
| 106 | private:
|
---|
| 107 |
|
---|
| 108 | Njettiness _njettinessFinder; ///< The core Njettiness that does the heavy lifting
|
---|
| 109 | int _N; ///< Number of exclusive jets to find.
|
---|
| 110 |
|
---|
| 111 | /// Warning if the user tries to use v1.0.3 constructor.
|
---|
| 112 | static LimitedWarning _old_constructor_warning;
|
---|
[35cdc46] | 113 |
|
---|
[973b92a] | 114 | public:
|
---|
| 115 |
|
---|
[35cdc46] | 116 | // Alternative constructors that define the measure via enums and parameters
|
---|
[973b92a] | 117 | // These constructors are deprecated and will be removed in a future version.
|
---|
[35cdc46] | 118 |
|
---|
[973b92a] | 119 | /// \deprecated
|
---|
| 120 | /// Old-style constructor with 0 arguments (DEPRECATED)
|
---|
[35cdc46] | 121 | NjettinessPlugin(int N,
|
---|
[973b92a] | 122 | Njettiness::AxesMode axes_mode,
|
---|
| 123 | Njettiness::MeasureMode measure_mode)
|
---|
| 124 | : _njettinessFinder(axes_mode, measure_mode, 0), _N(N) {
|
---|
| 125 | _old_constructor_warning.warn("NjettinessPlugin: You are using the old style constructor. This is deprecated as of v2.1 and will be removed in v3.0. Please use the NjettinessPlugin constructor based on AxesDefinition and MeasureDefinition instead.");
|
---|
| 126 | }
|
---|
[35cdc46] | 127 |
|
---|
[973b92a] | 128 | /// \deprecated
|
---|
| 129 | /// Old-style constructor with 1 argument (DEPRECATED)
|
---|
| 130 | NjettinessPlugin(int N,
|
---|
| 131 | Njettiness::AxesMode axes_mode,
|
---|
| 132 | Njettiness::MeasureMode measure_mode,
|
---|
| 133 | double para1)
|
---|
| 134 | : _njettinessFinder(axes_mode, measure_mode, 1, para1), _N(N) {
|
---|
| 135 | _old_constructor_warning.warn("NjettinessPlugin: You are using the old style constructor. This is deprecated as of v2.1 and will be removed in v3.0. Please use the NjettinessPlugin constructor based on AxesDefinition and MeasureDefinition instead.");
|
---|
[35cdc46] | 136 |
|
---|
[973b92a] | 137 | }
|
---|
| 138 |
|
---|
| 139 | /// \deprecated
|
---|
| 140 | /// Old-style constructor with 2 arguments (DEPRECATED)
|
---|
[35cdc46] | 141 | NjettinessPlugin(int N,
|
---|
[973b92a] | 142 | Njettiness::AxesMode axes_mode,
|
---|
| 143 | Njettiness::MeasureMode measure_mode,
|
---|
| 144 | double para1,
|
---|
| 145 | double para2)
|
---|
| 146 | : _njettinessFinder(axes_mode, measure_mode, 2, para1, para2), _N(N) {
|
---|
| 147 | _old_constructor_warning.warn("NjettinessPlugin: You are using the old style constructor. This is deprecated as of v2.1 and will be removed in v3.0. Please use the NjettinessPlugin constructor based on AxesDefinition and MeasureDefinition instead.");
|
---|
[35cdc46] | 148 |
|
---|
[973b92a] | 149 | }
|
---|
[35cdc46] | 150 |
|
---|
[973b92a] | 151 | /// \deprecated
|
---|
| 152 | /// Old-style constructor with 3 arguments (DEPRECATED)
|
---|
[35cdc46] | 153 | NjettinessPlugin(int N,
|
---|
[973b92a] | 154 | Njettiness::AxesMode axes_mode,
|
---|
| 155 | Njettiness::MeasureMode measure_mode,
|
---|
| 156 | double para1,
|
---|
| 157 | double para2,
|
---|
| 158 | double para3)
|
---|
| 159 | : _njettinessFinder(axes_mode, measure_mode, 3, para1, para2, para3), _N(N) {
|
---|
| 160 | _old_constructor_warning.warn("NjettinessPlugin: You are using the old style constructor. This is deprecated as of v2.1 and will be removed in v3.0. Please use the NjettinessPlugin constructor based on AxesDefinition and MeasureDefinition instead.");
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | /// \deprecated
|
---|
| 164 | /// Old-style constructor for backwards compatibility with v1.0, when NormalizedCutoffMeasure was the only option
|
---|
[9687203] | 165 | NjettinessPlugin(int N,
|
---|
| 166 | Njettiness::AxesMode mode,
|
---|
| 167 | double beta,
|
---|
| 168 | double R0,
|
---|
[35cdc46] | 169 | double Rcutoff=std::numeric_limits<double>::max())
|
---|
[973b92a] | 170 | : _njettinessFinder(mode, NormalizedCutoffMeasure(beta, R0, Rcutoff)), _N(N) {
|
---|
| 171 | _old_constructor_warning.warn("NjettinessPlugin: You are using the old style constructor. This is deprecated as of v2.1 and will be removed in v3.0. Please use the NjettinessPlugin constructor based on AxesDefinition and MeasureDefinition instead.");
|
---|
| 172 | }
|
---|
[9687203] | 173 |
|
---|
| 174 |
|
---|
| 175 | };
|
---|
| 176 |
|
---|
| 177 | } // namespace contrib
|
---|
| 178 |
|
---|
| 179 | FASTJET_END_NAMESPACE
|
---|
| 180 |
|
---|
| 181 | #endif // __FASTJET_CONTRIB_NJETTINESSPLUGIN_HH__
|
---|