]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliFastJetHeaderV1.h
Adding the possibility not to follow particle mothers during StepManager (default...
[u/mrichter/AliRoot.git] / JETAN / AliFastJetHeaderV1.h
CommitLineData
8838ab7a 1#ifndef ALIFASTJETHEADERV1_H
2#define ALIFASTJETHEADERV1_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
139cbd96 6
7/* $Id$ */
8838ab7a 8
9//---------------------------------------------------------------------
10// FastJet v2.3.4 finder algorithm interface
11// Finder Header Class
12// Author: Rafael.Diaz.Valdes@cern.ch
13//---------------------------------------------------------------------
14
13fa2a91 15#ifndef __CINT__
139cbd96 16# include "fastjet/AreaDefinition.hh"
17# include "fastjet/JetDefinition.hh"
13fa2a91 18#else
19namespace fastjet {
6f3ba560 20 enum JetAlgorithm;
21 enum Strategy;
22 enum RecombinationScheme;
23 enum AreaType;
13fa2a91 24}
25#endif
8838ab7a 26#include "AliJetHeader.h"
27
8838ab7a 28class AliFastJetHeaderV1 : public AliJetHeader
29{
30 public:
8838ab7a 31 AliFastJetHeaderV1();
32 virtual ~AliFastJetHeaderV1() { }
33
34 // Getters
139cbd96 35 Double_t GetRparam() const {return fRparam;}
36 fastjet::JetAlgorithm GetAlgorithm() const {return fAlgorithm;}
37 fastjet::JetAlgorithm GetBGAlgorithm() const {return fBGAlgorithm;}
38 fastjet::Strategy GetStrategy() const {return fStrategy;}
39 fastjet::RecombinationScheme GetRecombScheme() const {return fRecombScheme;}
40 Double_t GetGhostEtaMax() const {return fGhostEtaMax;}
41 Double_t GetGhostArea() const {return fGhostArea;}
42 Int_t GetActiveAreaRepeats() const {return fActiveAreaRepeats;}
43 fastjet::AreaType GetAreaType() const {return fAreaType;}
44 Double_t GetPtMin() const {return fPtMin;}
45 Double_t GetRapMax() const {return fRapMax;}
46 Double_t GetRapMin() const {return fRapMin;}
47 Double_t GetPhiMax() const {return fPhiMax;}
48 Double_t GetPhiMin() const {return fPhiMin;}
49 Bool_t GetBGMode() const {return fBGMode;}
50 Double_t GetRparamBkg() const {return fRparamBkg;}
51 Bool_t Use4VectorArea() const {return fUse4VectorArea;}
52 Bool_t GetBkgFastJetb() const {return fkBkgFastJetb;}
53 Bool_t GetBkgFastJetWoHardest() const {return fktBkgFastJetWoHardest;}
8838ab7a 54 // Setters
139cbd96 55 void SetRparam(Double_t f) {fRparam = f;}
56 void SetAlgorithm(fastjet::JetAlgorithm f) {fAlgorithm = f;}
57 void SetBGAlgorithm(fastjet::JetAlgorithm f) {fBGAlgorithm = f;}
58 void SetStrategy(fastjet::Strategy f) {fStrategy = f;}
59 void SetRecombScheme(fastjet::RecombinationScheme f) {fRecombScheme = f;}
60 void SetGhostEtaMax(Double_t f) {fGhostEtaMax = f;}
61 void SetGhostArea(Double_t f) {fGhostArea = f;}
62 void SetActiveAreaRepeats(Int_t f) {fActiveAreaRepeats =f;}
63 void SetAreaType(fastjet::AreaType f) {fAreaType = f;}
64 void SetRapRange(Double_t fmin, Double_t fmax) {fRapMin = fmin; fRapMax = fmax;}
65 void SetPhiRange(Double_t fmin, Double_t fmax) {fPhiMin = fmin; fPhiMax = fmax;}
66 void SetPtMin(Double_t ptmin) {fPtMin = ptmin;}
67 void SetBGMode(Bool_t bgmode) {fBGMode = bgmode;}
68 void SetUse4VectorArea() {fUse4VectorArea = kTRUE;}
69 void SetComment(TString com) {fComment=com;}
70 void SetComment(const char* com) {AliJetHeader::SetComment(com);}
71 void SetRparamBkg(Double_t f) {fRparamBkg = f;}
72 void SetBkgFastJetb(Bool_t f = 1) {fkBkgFastJetb = f;}
73 void SetBkgFastJetWoHardest(Bool_t f = 1) {fktBkgFastJetWoHardest = f;}
8838ab7a 74 // others
139cbd96 75 void PrintParameters() const;
8838ab7a 76
77 protected:
8838ab7a 78 //fastjet::JetDefinition parameters
139cbd96 79 Double_t fRparam; // R param
80 Double_t fRparamBkg; // R param for bkg calculation
81 fastjet::JetAlgorithm fAlgorithm; // fastjet::kt_algorithm
82 fastjet::JetAlgorithm fBGAlgorithm; // fastjet::kt_algorithm
83 fastjet::Strategy fStrategy; // fastjet::Best;
84 fastjet::RecombinationScheme fRecombScheme; // fastjet::BIpt_scheme;
8838ab7a 85
86 //fastjet::GhostedAreaSpec parameters
139cbd96 87 Double_t fGhostEtaMax; // Max eta for ghosts
88 Double_t fGhostArea; // Ghost area
89 Int_t fActiveAreaRepeats; // Active are repetitions
8838ab7a 90
91 //fastjet::AreaDefinition parameters
139cbd96 92 fastjet::AreaType fAreaType; // area types
8838ab7a 93
94 //fastjet::ClusterSequenceArea options parameters
139cbd96 95 Double_t fPtMin; // jets with pt > ptmin
96 Float_t fMinCellEt; // Min Et in one cell
8838ab7a 97
98 //fastjet::RangeDefinition parameters
139cbd96 99 Double_t fRapMax, fRapMin; // rapidity range of background sub
100 Double_t fPhiMax, fPhiMin; // phi range of background sub
101 Bool_t fUse4VectorArea; // Toggle use of 4-vector area
102
103 //background methods flags
104 Bool_t fkBkgFastJetb; // Toggle background estimation using AliFastJetBkg::BkgFastJetb()
105 Bool_t fktBkgFastJetWoHardest; // Toggle background estimation using AliFastJetBkg::BkgFastJetWoHardest()
106
107 ClassDef(AliFastJetHeaderV1,4) // Fastjet header class
8838ab7a 108};
109
110#endif