]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliFastJetHeader.cxx
Using ARCH instead of PLATFORM
[u/mrichter/AliRoot.git] / JETAN / AliFastJetHeader.cxx
CommitLineData
a17e6965 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16//---------------------------------------------------------------------
17// FastJet header class
18// Stores parameters of particle algoritm
19// Author: Rafael.Diaz.Valdes@cern.ch
20//---------------------------------------------------------------------
21
22#include <Riostream.h>
23#include <TMath.h>
24#include "AliFastJetHeader.h"
25
26ClassImp(AliFastJetHeader)
27
28////////////////////////////////////////////////////////////////////////
29
30AliFastJetHeader::AliFastJetHeader():
31 AliJetHeader("AliFastJetHeader"),
32 fLegoNbinEta(60),
33 fLegoNbinPhi(210),
34 fLegoEtaMin(-0.9),
35 fLegoEtaMax(0.9),
36 fLegoPhiMin(0.),
37 fLegoPhiMax(2. * TMath::Pi()),
38 fRadius(1.0),
39 fMinJetEt(10.0),
40 fSoftBackg(kTRUE),
41 fPrecBg(0.035)
42{
43 // Constructor
44}
45
46////////////////////////////////////////////////////////////////////////
47
48void AliFastJetHeader::PrintParameters() const
49{
50 // prints out parameters of jet algorithm
51
52 cout << " FastJet algorithm " << endl;
53
54}