]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliDAJetHeader.h
Right type for debug variable, fDebug taken from the jet header
[u/mrichter/AliRoot.git] / JETAN / AliDAJetHeader.h
CommitLineData
7c679be0 1#ifndef ALIDAJETHEADER_H
2#define ALIDAJETHEADER_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7//---------------------------------------------------------------------
8// Jet header class for Deterministic Annealing
9// Stores the parameters of the DA jet algorithm
10// Author: Davide Perrino (davide.perrino@ba.infn.it)
11//---------------------------------------------------------------------
12
13#include <AliJetHeader.h>
14
15class AliDAJetHeader : public AliJetHeader
16{
17 public:
18
19 AliDAJetHeader();
20 virtual ~AliDAJetHeader() {}
21
7c679be0 22 void SelectJets (Bool_t seljets ) { fSelectJets=seljets; }
4be01860 23 void SetRadius (Float_t radius );
7c679be0 24 void SetNclust (Int_t ncl ) { fNclustMax=ncl ; fFixedCl=kTRUE; }
1e1eb5e9 25 void SetEtMin (Float_t etmin ) { fEtMin =etmin; }
7c679be0 26
7c679be0 27 Bool_t GetSelJets() const { return fSelectJets; }
4be01860 28 Float_t GetRadius() const { return fRadius; }
7c679be0 29 Int_t GetNclustMax() const { return fNclustMax; }
30 Bool_t GetFixedCl() const { return fFixedCl; }
1e1eb5e9 31 Float_t GetEtMin() const { return fEtMin; }
7c679be0 32
33 protected:
34 AliDAJetHeader(const AliDAJetHeader &jh);
35 AliDAJetHeader& operator=(const AliDAJetHeader &jh);
4be01860 36 Bool_t fSelectJets; // select jets among clusters
37 Float_t fRadius; // jet "radius"
38 Int_t fNclustMax; // number of clusters when to stop annealing
39 Bool_t fFixedCl; // use a fixed fNclustMax
40 Float_t fEtMin; // minimum energy for found jets
7c679be0 41
36b5cc43 42 ClassDef(AliDAJetHeader,2)
7c679be0 43};
44
45#endif