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