Commit 2f24fab2 authored by Vratislav Chudoba's avatar Vratislav Chudoba

Parametrization of EpsilonT(), ... solved

parent 2f96c67e
This diff is collapsed.
......@@ -50,11 +50,22 @@ public:
void SetNoExpEvents(Long64_t *noExpEvents = 0);
void SetNoSimEvents(Long64_t *noSimEvents = 0);
void SetRatiosGStoEX();
void ExpEventsECuts();
void SimEventsECuts();
void SetRatiosGStoEX(TString sRatioAl0, TString sRatioNoAl0,
TString sRatioAl180, TString sRatioNoAl180,
TString sRatioAl90, TString sRatioNoAl90);
// void ExpEventsECuts(Long64_t **noExpEvents = 0);
// void ExpEventsECuts(Int_t (&noExpEvents)[5][6]);
// void ExpEventsECuts(Int_t (*noExpEvents)[5][6]);
void ExpEventsECuts(Long64_t noExpEvents[5][6] = 0);
void SimEventsECuts(Long64_t noSimEvents[5][6] = 0);
void EpsilonTRange();
void SetEpsilonTintervals(Bool_t intervals[6] = 0);
void SetCosThetaTkIntervals(Bool_t intervals[6] = 0);
void SetEpsilonYintervals(Bool_t intervals[6] = 0);
void SetCosThetaYkIntervals(Bool_t intervals[6] = 0);
void SetThetaATintervals(Bool_t intervals[6] = 0);
void Spectra();
void EpsilonT();
void CosThetaTk();
......@@ -66,10 +77,11 @@ public:
//
private:
//private:
TChain *che; //chain with experimental trees
TChain *chs[6]; //array of chains with simulation trees
TTree *ti[6]; //array of chains with simulation input
private:
Int_t lowExpFile;
Int_t upExpFile;
......@@ -125,9 +137,9 @@ private:
TCut sRatioNoAl90;
TCut sRatio[6];
Long64_t eEventsECuts[5][6];
Long64_t sEventsECuts[5][6];
Double_t eTRange[5][6];
Long64_t eEventsECuts[5][6]; //!
Long64_t sEventsECuts[5][6]; //!
Double_t eTRange[5][6]; //!
//cuts
TCut cBe20;
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment