]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliUA1JetHeaderV1.cxx
Updates for jet core task
[u/mrichter/AliRoot.git] / JETAN / AliUA1JetHeaderV1.cxx
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
29 using std::cout;
30 using std::endl;
31 ClassImp(AliUA1JetHeaderV1)
32
33 ////////////////////////////////////////////////////////////////////////
34
35 AliUA1JetHeaderV1::AliUA1JetHeaderV1():
36
37     AliJetHeader("AliUA1JetHeaderV1"),
38     fConeRadius(0.3),
39     fEtSeed(3.0),
40     fMinJetEt(10.),
41     fMinCellEt(0.0), // Temporarily added -> To be removed if not necessary
42     fMinMove(0.05),
43     fMaxMove(0.15),
44     fBackgMode(1),
45     fPrecBg(0.035),
46     fBackgStat(0.0), 
47     fBackgCutRatio(1.0),
48     fNAcceptJets(3),
49     fLegoNbinEta(36),
50     fLegoNbinPhi(124),
51     fLegoEtaMin(-0.9),
52     fLegoEtaMax(0.9),
53     fLegoPhiMin(0.),
54     fLegoPhiMax(2.*TMath::Pi())
55 {
56   // Constructor
57 }
58
59 ////////////////////////////////////////////////////////////////////////
60
61 void AliUA1JetHeaderV1::PrintParameters() const
62 {
63   // prints out parameters of jet algorithm
64
65   cout << " UA version1 jet algorithm " << endl;
66   cout << " * Jet parameters: " << endl;
67   cout << "   Cone size: " << fConeRadius<< endl;
68   cout << "   Minimum energy for a seed: " << fEtSeed << endl;
69   cout << "   Minumum energy for a jet: " << fMinJetEt << endl;
70   cout << "   Minimum allowed move: " << fMinMove << endl;
71   cout << "   Maximum allowed move: " << fMaxMove << endl;
72   cout << " * Lego parameters: " << endl;
73   cout << "   Number of bins in eta: " << fLegoNbinEta<< endl;
74   cout << "   Number of bins in phi: " << fLegoNbinPhi<< endl;
75   cout << "   Minimum azimuthal angle: " << fLegoPhiMin<< endl;
76   cout << "   Maximum azimuthal angle: " << fLegoPhiMax<< endl;
77   cout << "   Minimum rapidity angle: " << fLegoEtaMin<< endl;
78   cout << "   Maximum rapidity angle: " << fLegoEtaMax<< endl;
79 }