Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:57:16

0001 //FJSTARTHEADER
0002 // $Id$
0003 //
0004 // Copyright (c) 2005-2021, Matteo Cacciari, Gavin P. Salam and Gregory Soyez
0005 //
0006 //----------------------------------------------------------------------
0007 // This file is part of FastJet.
0008 //
0009 //  FastJet is free software; you can redistribute it and/or modify
0010 //  it under the terms of the GNU General Public License as published by
0011 //  the Free Software Foundation; either version 2 of the License, or
0012 //  (at your option) any later version.
0013 //
0014 //  The algorithms that underlie FastJet have required considerable
0015 //  development. They are described in the original FastJet paper,
0016 //  hep-ph/0512210 and in the manual, arXiv:1111.6097. If you use
0017 //  FastJet as part of work towards a scientific publication, please
0018 //  quote the version you use and include a citation to the manual and
0019 //  optionally also to hep-ph/0512210.
0020 //
0021 //  FastJet is distributed in the hope that it will be useful,
0022 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
0023 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0024 //  GNU General Public License for more details.
0025 //
0026 //  You should have received a copy of the GNU General Public License
0027 //  along with FastJet. If not, see <http://www.gnu.org/licenses/>.
0028 //----------------------------------------------------------------------
0029 //FJENDHEADER
0030 
0031 
0032 #ifndef __FASTJET_ACTIVEAREASPEC_HH__
0033 #define __FASTJET_ACTIVEAREASPEC_HH__
0034 
0035 // for backwards compatibility fastjet/ActiveAreaSpec.hh provides the
0036 // ActiveAreSpec class that is equivalent to GhostedAreaSpec. The
0037 // latter should now be used (defined in the
0038 // fastjet/GhostedAreaSpec.hh header). ActiveAreaSpec is not
0039 // guaranteed to work in future release of FastJet
0040 #warning This file includes fastjet/ActiveAreaSpec.hh, \
0041 a deprecated FastJet header provided only for backward compatibility. \
0042 This is not guaranteed to work in future releases of FastJet. \
0043 Please consider including fastjet/GhostedAreaSpec.hh directly. \
0044 Similarily, if you use the (deprecated) class ActiveAreaSpec, \
0045 please switch to the equivalent GhostedAreaSpec instead.
0046 
0047 
0048 #include "fastjet/GhostedAreaSpec.hh"
0049 
0050 // NB: ActiveAreaSpec is left over from FJ 2.0 and 2.1;
0051 //     In FJ 2.3 and 2.4 it was just typedefed to GhostedAreaSpec.
0052 //     That's still the case in FJ 3.0, but the typedef has moved
0053 //     from this header into the GhostedAreaSpec.hh header. This way,
0054 //     anyone including ActiveAreaSpec.hh will get a deprecated warning, but
0055 //     people who relied on getting ActiveAreaSpec indirectly will not 
0056 //     have their code broken.
0057 
0058 
0059 #endif // __FASTJET_ACTIVEAREASPEC_HH__