]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliJetReaderHeader.cxx
ATO-17 - one more change - ULong_t not properly handled by the TTree::BuildIndex...
[u/mrichter/AliRoot.git] / JETAN / AliJetReaderHeader.cxx
CommitLineData
99e5fe42 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 **************************************************************************/
139cbd96 15
16/* $Id$ */
99e5fe42 17
83a444b1 18//-------------------------------------------------------------------------
99e5fe42 19// base class for Jet Reader Header
20// Author: jgcn@mda.cinvestav.mx
83a444b1 21//-------------------------------------------------------------------------
99e5fe42 22
ee7de0dd 23#include <TMath.h>
24
99e5fe42 25#include "AliJetReaderHeader.h"
139cbd96 26#include "AliEMCALRecoUtils.h"
99e5fe42 27
28ClassImp(AliJetReaderHeader)
29
30////////////////////////////////////////////////////////////////////////
31
32AliJetReaderHeader::AliJetReaderHeader():
139cbd96 33 TNamed("AliJetReaderHeader", "Jet Reader Header"),
34 fOption(0),
35 fCluster(0),
36 fDebug(0),
37 fFiducialEtaMin(-0.9),
38 fFiducialEtaMax(0.9),
39 fFiducialPhiMin(0.),
40 fFiducialPhiMax(2*TMath::Pi()),
41 fPtCut(2.0),
42 fEtCellCut(0.0),
43 fComment("No comment"),
44 fDir(""),
45 fMatricesEMCAL("survey11"),
46 fGeomEMCAL("EMCAL_COMPLETEV1"),
47 fMyOADBfile(""),
48 fTestFilterMask(0),
49 fFilterType(0),
50 fReadSignalOnly(kFALSE),
51 fReadBkgdOnly(kFALSE),
52 fDataType(""),
53 fIsHighMult(kFALSE)
99e5fe42 54{
1b7d5d7e 55 // Default constructor
99e5fe42 56}
57
139cbd96 58//-----------------------------------------------------------------------
59AliJetReaderHeader::AliJetReaderHeader(Int_t det):
60 TNamed("AliJetReaderHeader", "Jet Reader Header"),
61 fOption(det),
62 fCluster(0),
63 fDebug(0),
64 fFiducialEtaMin(-0.9),
65 fFiducialEtaMax(0.9),
66 fFiducialPhiMin(0.),
67 fFiducialPhiMax(2*TMath::Pi()),
68 fPtCut(2.0),
69 fEtCellCut(0.0),
70 fComment("No comment"),
71 fDir(""),
72 fMatricesEMCAL("survey11"),
73 fGeomEMCAL("EMCAL_COMPLETEV1"),
74 fMyOADBfile(""),
75 fTestFilterMask(0),
76 fFilterType(0),
77 fReadSignalOnly(kFALSE),
78 fReadBkgdOnly(kFALSE),
79 fDataType(""),
80 fIsHighMult(kFALSE)
81{
82 // Constructor
99e5fe42 83
139cbd96 84}
85
86//-----------------------------------------------------------------------
87AliJetReaderHeader::AliJetReaderHeader(const char * name):
88 TNamed(name, "Jet Reader Header"),
89 fOption(0),
90 fCluster(0),
91 fDebug(0),
92 fFiducialEtaMin(-0.9),
93 fFiducialEtaMax(0.9),
94 fFiducialPhiMin(0.),
95 fFiducialPhiMax(2*TMath::Pi()),
96 fPtCut(2.0),
97 fEtCellCut(0.0),
98 fComment("No comment"),
99 fDir(""),
100 fMatricesEMCAL("survey11"),
101 fGeomEMCAL("EMCAL_COMPLETEV1"),
102 fMyOADBfile(""),
103 fTestFilterMask(0),
104 fFilterType(0),
105 fReadSignalOnly(kFALSE),
106 fReadBkgdOnly(kFALSE),
107 fDataType(""),
108 fIsHighMult(kFALSE)
99e5fe42 109{
139cbd96 110 // Constructor 2
111
99e5fe42 112}
113
99e5fe42 114
139cbd96 115//-----------------------------------------------------------------------
99e5fe42 116AliJetReaderHeader::~AliJetReaderHeader()
117{
118 // destructor
83a444b1 119
99e5fe42 120}