1 |
|
---|
2 | //STARTHEADER
|
---|
3 | // $Id: base.hh,v 1.1 2008-11-06 14:32:10 ovyn Exp $
|
---|
4 | //
|
---|
5 | // Copyright (c) 2005-2006, Matteo Cacciari and Gavin Salam
|
---|
6 | //
|
---|
7 | //----------------------------------------------------------------------
|
---|
8 | // This file is part of FastJet.
|
---|
9 | //
|
---|
10 | // FastJet is free software; you can redistribute it and/or modify
|
---|
11 | // it under the terms of the GNU General Public License as published by
|
---|
12 | // the Free Software Foundation; either version 2 of the License, or
|
---|
13 | // (at your option) any later version.
|
---|
14 | //
|
---|
15 | // The algorithms that underlie FastJet have required considerable
|
---|
16 | // development and are described in hep-ph/0512210. If you use
|
---|
17 | // FastJet as part of work towards a scientific publication, please
|
---|
18 | // include a citation to the FastJet paper.
|
---|
19 | //
|
---|
20 | // FastJet is distributed in the hope that it will be useful,
|
---|
21 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
22 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
23 | // GNU General Public License for more details.
|
---|
24 | //
|
---|
25 | // You should have received a copy of the GNU General Public License
|
---|
26 | // along with FastJet; if not, write to the Free Software
|
---|
27 | // Foundation, Inc.:
|
---|
28 | // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
29 | //----------------------------------------------------------------------
|
---|
30 | //ENDHEADER
|
---|
31 |
|
---|
32 | #ifndef __FASTJET_FASTJET_BASE_HH__
|
---|
33 | #define __FASTJET_FASTJET_BASE_HH__
|
---|
34 |
|
---|
35 | // define this for easier readability (and obfuscation?) in
|
---|
36 | // a range of places
|
---|
37 | #define FASTJET_BEGIN_NAMESPACE namespace fastjet {
|
---|
38 | #define FASTJET_END_NAMESPACE }
|
---|
39 |
|
---|
40 | #endif // __FASTJET_FASTJET_BASE_HH__
|
---|