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: ...@@ -50,11 +50,22 @@ public:
void SetNoExpEvents(Long64_t *noExpEvents = 0); void SetNoExpEvents(Long64_t *noExpEvents = 0);
void SetNoSimEvents(Long64_t *noSimEvents = 0); void SetNoSimEvents(Long64_t *noSimEvents = 0);
void SetRatiosGStoEX(); void SetRatiosGStoEX(TString sRatioAl0, TString sRatioNoAl0,
void ExpEventsECuts(); TString sRatioAl180, TString sRatioNoAl180,
void SimEventsECuts(); 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 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 Spectra();
void EpsilonT(); void EpsilonT();
void CosThetaTk(); void CosThetaTk();
...@@ -66,10 +77,11 @@ public: ...@@ -66,10 +77,11 @@ public:
// //
private: //private:
TChain *che; //chain with experimental trees TChain *che; //chain with experimental trees
TChain *chs[6]; //array of chains with simulation trees TChain *chs[6]; //array of chains with simulation trees
TTree *ti[6]; //array of chains with simulation input TTree *ti[6]; //array of chains with simulation input
private:
Int_t lowExpFile; Int_t lowExpFile;
Int_t upExpFile; Int_t upExpFile;
...@@ -125,9 +137,9 @@ private: ...@@ -125,9 +137,9 @@ private:
TCut sRatioNoAl90; TCut sRatioNoAl90;
TCut sRatio[6]; TCut sRatio[6];
Long64_t eEventsECuts[5][6]; Long64_t eEventsECuts[5][6]; //!
Long64_t sEventsECuts[5][6]; Long64_t sEventsECuts[5][6]; //!
Double_t eTRange[5][6]; Double_t eTRange[5][6]; //!
//cuts //cuts
TCut cBe20; 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