]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliUA1JetHeaderV1.cxx
added cdb stuff
[u/mrichter/AliRoot.git] / JETAN / AliUA1JetHeaderV1.cxx
CommitLineData
70e58892 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// Jet Gen header class
18// Stores parameters of particle algoritm
19// Author: Rafael.Diaz.Valdes@cern.ch
20//---------------------------------------------------------------------
21
22#include <Riostream.h>
23#include "AliUA1JetHeaderV1.h"
24ClassImp(AliUA1JetHeaderV1)
25
26////////////////////////////////////////////////////////////////////////
27
28AliUA1JetHeaderV1::AliUA1JetHeaderV1():
1b7d5d7e 29
30 AliJetHeader("AliUA1JetHeaderV1"),
31 fConeRadius(0.3),
32 fEtSeed(3.0),
33 fMinJetEt(10.),
34 fMinMove(0.05),
35 fMaxMove(0.15),
36 fBackgMode(1),
37 fPrecBg(0.035),
38 fBackgStat(0.0),
39 fBackgCutRatio(1.0),
40 fNAcceptJets(3),
41 fLegoNbinEta(36),
42 fLegoNbinPhi(124),
43 fLegoEtaMin(-0.9),
44 fLegoEtaMax(0.9),
45 fLegoPhiMin(0.),
46 fLegoPhiMax(2.*TMath::Pi())
70e58892 47{
48 // Constructor
70e58892 49}
50
51////////////////////////////////////////////////////////////////////////
52
53void AliUA1JetHeaderV1::PrintParameters() const
54{
55 // prints out parameters of jet algorithm
56
57 cout << " UA version1 jet algorithm " << endl;
58 cout << " * Jet parameters: " << endl;
59 cout << " Cone size: " << fConeRadius<< endl;
60 cout << " Minimum energy for a seed: " << fEtSeed << endl;
61 cout << " Minumum energy for a jet: " << fMinJetEt << endl;
62 cout << " Minimum allowed move: " << fMinMove << endl;
63 cout << " Maximum allowed move: " << fMaxMove << endl;
64 cout << " * Lego parameters: " << endl;
65 cout << " Number of bins in eta: " << fLegoNbinEta<< endl;
66 cout << " Number of bins in phi: " << fLegoNbinPhi<< endl;
67 cout << " Minimum azimuthal angle: " << fLegoPhiMin<< endl;
68 cout << " Maximum azimuthal angle: " << fLegoPhiMax<< endl;
69 cout << " Minimum rapidity angle: " << fLegoEtaMin<< endl;
70 cout << " Maximum rapidity angle: " << fLegoEtaMax<< endl;
71}