Fork me on GitHub

source: git/external/fastjet/contribs/RecursiveTools/ModifiedMassDropTagger.cc@ e57c062

ImprovedOutputFile Timing dual_readout llp
Last change on this file since e57c062 was 1f1f858, checked in by Michele Selvaggi <michele.selvaggi@…>, 9 years ago

added RecursiveTools package from fastjet contribs

  • Property mode set to 100644
File size: 1.5 KB
Line 
1// $Id: ModifiedMassDropTagger.cc 683 2014-06-13 14:38:38Z gsoyez $
2//
3// Copyright (c) 2014-, Gavin P. Salam
4//
5//----------------------------------------------------------------------
6// This file is part of FastJet contrib.
7//
8// It is free software; you can redistribute it and/or modify it under
9// the terms of the GNU General Public License as published by the
10// Free Software Foundation; either version 2 of the License, or (at
11// your option) any later version.
12//
13// It is distributed in the hope that it will be useful, but WITHOUT
14// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16// License for more details.
17//
18// You should have received a copy of the GNU General Public License
19// along with this code. If not, see <http://www.gnu.org/licenses/>.
20//----------------------------------------------------------------------
21
22#include "ModifiedMassDropTagger.hh"
23#include "fastjet/JetDefinition.hh"
24#include "fastjet/ClusterSequenceAreaBase.hh"
25#include <algorithm>
26#include <cstdlib>
27
28using namespace std;
29
30FASTJET_BEGIN_NAMESPACE // defined in fastjet/internal/base.hh
31
32namespace contrib{
33
34//----------------------------------------------------------------------
35string ModifiedMassDropTagger::symmetry_cut_description() const {
36 ostringstream ostr;
37 ostr << _symmetry_cut << " [ModifiedMassDropTagger]";
38 return ostr.str();
39}
40
41} // namespace contrib
42
43FASTJET_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.