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