]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGDQ/dielectron/AliDielectronHF.h
Removing useless flag.
[u/mrichter/AliRoot.git] / PWGDQ / dielectron / AliDielectronHF.h
CommitLineData
5e2cf960 1#ifndef ALIDIELECTRONHF_H
2#define ALIDIELECTRONHF_H
3
4/* Copyright(c) 1998-2009, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7//#############################################################
8//# #
9//# Class AliDielectronHF #
10//# #
11//# Authors: #
12//# Julian Book, Uni-Frankfurt / Julian.Book@cern.ch #
13//# #
14//#############################################################
15
16#include <TNamed.h>
17#include <TObjArray.h>
a94c2e7e 18#include <TBits.h>
775970eb 19#include <THnBase.h>
5e2cf960 20
21#include "AliDielectronVarManager.h"
d4619886 22#include "AliDielectronHistos.h"
5e2cf960 23
5e2cf960 24class AliDielectronHF : public TNamed {
25public:
187de573 26 enum { kMaxCuts=20 };
5e2cf960 27 enum EBinType {
28 kStdBin=0,
29 kBinToMax,
30 kBinFromMin,
31 kSymBin
32 };
33 enum EPairType {
7957061b 34 // kOSonly=0, kOSandLS, kOSandROT, kOSandMIX, kAll, kMConly
35 kAll=0, kMConly,
36 kSeAll, kSeOnlyOS,
37 kMeAll, kMeOnlyOS,
38 kSeMeAll, kSeMeOnlyOS,
39 kSeReAll, kSeReOnlyOS,
5e2cf960 40 };
41
42 AliDielectronHF();
43 AliDielectronHF(const char*name, const char* title);
44
45 virtual ~AliDielectronHF();
443a091c 46
47 void Init();
48 void SetSignalsMC(TObjArray* array) {fSignalsMC = array;}
4d7704c5 49 void SetStepForMCGenerated(Bool_t switcher=kTRUE) {fStepGenerated = switcher;}
7957061b 50 void SetPairTypes(EPairType ptype) { fPairType=ptype; }
5e2cf960 51
8d42b5b9 52 // functions to add 1-dimensional objects
53 void UserProfile(const char* histClass, UInt_t valTypeP,
d4619886 54 const TVectorD * const binsX, UInt_t valTypeX, TString option="",
55 UInt_t valTypeW=AliDielectronHistos::kNoWeights);
8d42b5b9 56 void UserHistogram(const char* histClass,
d4619886 57 const TVectorD * const binsX, UInt_t valTypeX, UInt_t valTypeW=AliDielectronHistos::kNoWeights)
58 { UserProfile(histClass,AliDielectronHistos::kNoProfile,binsX,valTypeX,"",valTypeW); }
8d42b5b9 59
60 // functions to add 2-dimensional objects
61 void UserProfile(const char* histClass, UInt_t valTypeP,
62 const TVectorD * const binsX, const TVectorD * const binsY,
d4619886 63 UInt_t valTypeX, UInt_t valTypeY, TString option="", UInt_t valTypeW=AliDielectronHistos::kNoWeights);
8d42b5b9 64 void UserHistogram(const char* histClass,
65 const TVectorD * const binsX, const TVectorD * const binsY,
d4619886 66 UInt_t valTypeX, UInt_t valTypeY, UInt_t valTypeW=AliDielectronHistos::kNoWeights)
67 { UserProfile(histClass,AliDielectronHistos::kNoProfile,binsX,binsY,valTypeX,valTypeY,"",valTypeW); }
8d42b5b9 68
69 // functions to add 3-dimensional objects
70 void UserProfile(const char* histClass, UInt_t valTypeP,
71 const TVectorD * const binsX, const TVectorD * const binsY, const TVectorD * const binsZ,
d4619886 72 UInt_t valTypeX, UInt_t valTypeY, UInt_t valTypeZ, TString option="",
73 UInt_t valTypeW=AliDielectronHistos::kNoWeights);
8d42b5b9 74 void UserHistogram(const char* histClass,
75 const TVectorD * const binsX, const TVectorD * const binsY, const TVectorD * const binsZ,
d4619886 76 UInt_t valTypeX, UInt_t valTypeY, UInt_t valTypeZ, UInt_t valTypeW=AliDielectronHistos::kNoWeights)
77 { UserProfile(histClass,AliDielectronHistos::kNoProfile,binsX,binsY,binsZ,valTypeX,valTypeY,valTypeZ,"",valTypeW); }
8d42b5b9 78
775970eb 79 // functions to add multidimensional stuff
80 void UserSparse(const char* histClass,
81 Int_t ndim, TObjArray *limits, UInt_t *vars, UInt_t valTypeW=AliDielectronHistos::kNoWeights);
82
8d42b5b9 83
84 // functions to define the grid
5e2cf960 85 void AddCutVariable(AliDielectronVarManager::ValueTypes type, Int_t nbins,
86 Double_t min, Double_t max, Bool_t log=kFALSE, Bool_t leg=kFALSE, EBinType btype=kStdBin);
87 void AddCutVariable(AliDielectronVarManager::ValueTypes type,
88 const char* binLimitStr, Bool_t leg=kFALSE, EBinType btype=kStdBin);
89 void AddCutVariable(AliDielectronVarManager::ValueTypes type,
90 TVectorD * binLimits, Bool_t leg=kFALSE, EBinType btype=kStdBin);
91
443a091c 92 void Fill(Int_t pairIndex, const AliDielectronPair *particle);
93 void Fill(Int_t label1, Int_t label2, Int_t nSignal);
94 void Fill(Int_t Index, Double_t * const valuesPair, Double_t * const valuesLeg1, Double_t * const valuesLeg2);
95
5e2cf960 96 Bool_t IsPairTypeSelected(Int_t itype);
443a091c 97
5e2cf960 98 Int_t GetNumberOfBins() const;
5e2cf960 99 const TObjArray * GetHistArray() const { return &fArrPairType; }
4d7704c5 100 Bool_t GetStepForMCGenerated() const { return fStepGenerated; }
443a091c 101
5e2cf960 102private:
a94c2e7e 103 TBits *fUsedVars; // list of used variables
104
5e2cf960 105 TObjArray fArrPairType; //-> array of pair types
106 EPairType fPairType; // which pair combinations to include
443a091c 107 TObjArray* fSignalsMC; //! array of MC signals to be studied
5e2cf960 108
109 UShort_t fVarCuts[kMaxCuts]; // cut variables
775970eb 110 TBits *fVarCutType; // array to store leg booleans
111 // Bool_t fVarCutType[kMaxCuts]; // array to store leg booleans
5e2cf960 112 TObjArray fAxes; // Axis descriptions of the cut binning
113 UShort_t fBinType[kMaxCuts]; // binning type of the axes
114
d4619886 115 Bool_t fHasMC; // is mc array
4d7704c5 116 Bool_t fStepGenerated; // switcher for generated particles
5e2cf960 117
8d42b5b9 118 TObjArray fRefObj; // reference object
35363fb9 119
5e2cf960 120 AliDielectronHF(const AliDielectronHF &c);
121 AliDielectronHF &operator=(const AliDielectronHF &c);
122
123
775970eb 124 ClassDef(AliDielectronHF,5) // Dielectron HF
5e2cf960 125};
126
127
128
129#endif