BeAnalysis.cpp 37.2 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * BeAnalysis.cpp
 *
 *  Created on: Jul 19, 2017
 *      Author: vratik
 */

#include "BeAnalysis.h"
9

10
#include "BeWork.h"
11
#include "TCanvas.h"
12
#include "TGaxis.h"
13

14
BeAnalysis::BeAnalysis() : che(0), lowExpFile(0), upExpFile(0), spectra(0) {
15 16
	// TODO Auto-generated constructor stub

17 18 19 20 21 22 23 24
	for (Int_t i = 0; i < 6; i++) {
		chs[i] = NULL;
		ti[i] = NULL;
	}

	SetCuts();
	SetChainsToDraw();

25
	SetNoBinsSpectra();
26
	SetNoBinsCorrelations();
27
	SetNoBinsThetaA();
28 29

	InitHistos();
30

31
	noIntervals = 5;
32

33
	epsilonT = 0;
34 35 36 37
	cosThetaT = 0;
	epsilonY = 0;
	cosThetaY = 0;
	thetaAT = 0;
38

39 40 41
	kVerbose = 1;
	kRangeProportionIn = 2.0;

42 43 44 45
	kSaveFigures = 0;
	figurePath = "";
	figureFormat = "";

46 47 48 49 50 51 52 53
}

BeAnalysis::~BeAnalysis() {
	// TODO Auto-generated destructor stub
}

void BeAnalysis::OpenSimChains() {

54 55 56 57 58 59
	for (Int_t i = 0; i < 6; i++) {
		chs[i] = BeWork::OpenChain(simFiles[i].Data(),
				lowSimFile[i], upSimFile[i], "simbe", 4, "sbeam");
		Info("statesRatioFitting.cxx", "%lld events in chain \"%s\" containing simulated data", chs[i]->GetEntries(), chs[i]->GetName());
		ti[i] = BeWork::OpenTree(inputFiles[i].Data(), "sbeam", 2);
	}
60
	printf("\n");
61

62 63 64 65 66
}

void BeAnalysis::OpenExpChain() {

	//experimental chain
67 68
	che = BeWork::OpenChain(expFiles.Data(), lowExpFile, upExpFile, "beonly");										//original file
	Info("BeAnalysis::OpenExpChain", "%lld events in chain \"%s\" containing experimental data",
69 70 71
			che->GetEntries(), che->GetName());

}
72 73

void BeAnalysis::SetCuts() {
74 75
//	cBe20 = "fBeIM>0 && fBeIM<20";
//	cBe3 = "fBeIM>0 && fBeIM<3";
76 77
	cBeWork = "fBeIM>0 && fBeIM<10";

78
	TCut cBe0_14 = "fBeIM>0 && fBeIM<1.4";
79 80
	//cBe0_14 = "fBeIM>0 && fBeIM<1.6";
	//cBe0_14 = "fBeIM>0 && fBeIM<1.20";
81 82 83 84 85
	TCut cBe14_19 = "fBeIM>1.4 && fBeIM<1.9";
//	cBe14_19 = "fBeIM>1.4 && fBeIM<2.0";
	TCut cBe19_25 = "fBeIM>1.9 && fBeIM<2.5";
	TCut cBe25_31 = "fBeIM>2.5 && fBeIM<3.1";
	TCut cBe31_37 = "fBeIM>3.1 && fBeIM<3.7";
86 87 88 89 90 91 92 93
	//array:
	cBeE[0] = cBe0_14;
	cBeE[1] = cBe14_19;
	cBeE[2] = cBe19_25;
	cBeE[3] = cBe25_31;
	cBeE[4] = cBe31_37;

	cEpsilonT = "fTpp/fBeIM<0.2";
94 95
	//cEpsilonT = "fTpp/fBeIM<1.";
	//cEpsilonY = "fTap/fBeIM<0.5";
96 97 98 99
	cEpsilonY = "fTap/fBeIM>0.7";

	//raw files
	//energy cuts
100 101
//	crBe20 = "f6BeIM>0 && f6BeIM<20";
//	crBe3 = "f6BeIM>0 && f6BeIM<3";
102 103
	crBeWork = "f6BeIM>0 && f6BeIM<10";

104
	TCut crBe0_14 = "f6BeIM>0 && f6BeIM<1.4";
105 106
	//crBe0_14 = "f6BeIM>0 && f6BeIM<1.6";
	//crBe0_14 = "f6BeIM>0.5 && f6BeIM<1.20";
107 108 109 110 111
	TCut crBe14_19 = "f6BeIM>1.4 && f6BeIM<1.9";
//	TCut crBe14_19 = "f6BeIM>1.6 && f6BeIM<2.1";
	TCut crBe19_25 = "f6BeIM>1.9 && f6BeIM<2.5";
	TCut crBe25_31 = "f6BeIM>2.5 && f6BeIM<3.1";
	TCut crBe31_37 = "f6BeIM>3.1 && f6BeIM<3.7";
112 113 114 115 116 117 118 119 120
	//array:
	crBeE[0] = crBe0_14;
	crBeE[1] = crBe14_19;
	crBeE[2] = crBe19_25;
	crBeE[3] = crBe25_31;
	crBeE[4] = crBe31_37;
	//angular cuts


121
	//crEpsilonT = "fTpp/f6BeIM>0.8";
122
	crEpsilonT = "fTpp/f6BeIM<0.2";
123 124
	//crEpsilonT = "fTpp/f6BeIM<1.";
	//crEpsilonY = "fTap/f6BeIM<0.5";
125 126 127
	crEpsilonY = "fTap/f6BeIM>0.7";

	//simulation input
128 129 130 131 132 133 134
	TCut ciBe0_14 = "E_IM>0 && E_IM<1.4";
	//ciBe0_14 = "E_IM>0 && E_IM<1.6";
	//ciBe0_14 = "E_IM>0.5 && E_IM<1.20";
	TCut ciBe14_19 = "E_IM>1.4 && E_IM<1.9";
	TCut ciBe19_25 = "E_IM>1.9 && E_IM<2.5";
	TCut ciBe25_31 = "E_IM>2.5 && E_IM<3.1";
	TCut ciBe31_37 = "E_IM>3.1 && E_IM<3.7";
135
	//array:
136 137 138 139 140
	ciBeE[0] = ciBe0_14;
	ciBeE[1] = ciBe14_19;
	ciBeE[2] = ciBe19_25;
	ciBeE[3] = ciBe25_31;
	ciBeE[4] = ciBe31_37;
141 142

	ciEpsilon = "sTpp/E_IM<0.2";
143 144
	//ciEpsilon = "sTpp/E_IM<1.";
	//ciEpsilonY = "sTap/E_IM<0.5";
145
//	ciEpsilonY = "sTap/E_IM>0.7";
146 147 148

	cQ = "TMath::Abs(fQLiP)<10";
	cProtons = "fP1Lab.fE-938.272<50 && fP2Lab.fE-938.272<50";
149
	//cProtons = "fP1Lab.fE-938.272<34 && fP2Lab.fE-938.272<34 && fP1Lab.fE-938.272>1 && fP2Lab.fE-938.272>1";
150 151 152 153 154
}

void BeAnalysis::SetCMAngularRange(Int_t minAngle, Int_t maxAngle) {
	kMinAngle = minAngle;
	kMaxAngle = maxAngle;
155
	SetCMAngularCuts();
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
}

void BeAnalysis::SetChainsToDraw(Bool_t ch0, Bool_t ch1, Bool_t ch2, Bool_t ch3, Bool_t ch4,
		Bool_t ch5) {

	kChains[0] = ch0;
	kChains[1] = ch1;
	kChains[2] = ch2;
	kChains[3] = ch3;
	kChains[4] = ch4;
	kChains[5] = ch5;

}

void BeAnalysis::SetRangeProportion(Float_t rangeProportion, Bool_t autoRange) {
	kRangeProportion = rangeProportion;
	kAutoRange = autoRange;
}

175
void BeAnalysis::SetNoExpEvents(Long64_t *noExpEvents) {
176 177 178

	eMaxEvents = 5000000;

179 180 181 182 183 184 185
	if (!noExpEvents) {
		for (Int_t i = 0; i < 6; i++) {
			eEvents[i] = eMaxEvents;
		}
		Warning("BeAnalysis::SetNoExpEvents", "Default numbers of experimental events were set.");
		return;
	}
186

187 188 189
	for (Int_t i = 0; i < 6; i++) {
		eEvents[i] = noExpEvents[i];
	}
190

191
	return;
192 193 194

}

195
void BeAnalysis::SetNoSimEvents(Long64_t *noSimEvents) {
196 197 198

	sMaxEvents = 3000000;

199 200 201
	if (!noSimEvents) {
		for (Int_t i = 0; i < 6; i++) {
			sEvents[i] = sMaxEvents;
202
//			cout << sEvents[i] << endl;
203 204 205 206
		}
		Warning("BeAnalysis::SetNoSimEvents", "Default numbers of simulated events were set.");
		return;
	}
207

208 209
	for (Int_t i = 0; i < 6; i++) {
		sEvents[i] = noSimEvents[i];
210
//		cout << sEvents[i] << endl;
211 212 213
	}
	return;

214 215
}

216 217 218
void BeAnalysis::SetRatiosGStoEX(TString sRatioAl0, TString sRatioNoAl0,
		TString sRatioAl180, TString sRatioNoAl180,
		TString sRatioAl90, TString sRatioNoAl90) {
219 220 221 222 223 224 225 226 227 228

	sRatio[0] = sRatioAl0;
	sRatio[1] = sRatioNoAl0;
	sRatio[2] = sRatioAl180;
	sRatio[3] = sRatioNoAl180;
	sRatio[4] = sRatioAl90;
	sRatio[5] = sRatioNoAl90;

}

229 230 231 232 233 234 235 236 237 238 239 240 241
void BeAnalysis::InitHistos() {

	for (Int_t i = 0; i < 6; i++) {
		hsSpectra[i] = 0;
		heSpectra[i] = 0;
		hSdiff[i] = 0;
	}

	for (Int_t i = 0; i < 5; i++) {
		for (Int_t j = 0; j < 6; j++) {
			hseT[i][j] = 0;
			heeT[i][j] = 0;
			hieT[i][j] = 0;
242 243 244 245 246 247 248 249

			hscoskT[i][j] = 0;
			hecoskT[i][j] = 0;
			hicoskT[i][j] = 0;

			hseY[i][j] = 0;
			heeY[i][j] = 0;
			hieY[i][j] = 0;
250 251 252 253

			hethetaAT[i][j] = 0;
			hsthetaAT[i][j] = 0;
			hithetaAT[i][j] = 0;
254 255 256 257 258 259
		}
	}


}

260
void BeAnalysis::SaveSpectrumHist(Int_t chain) {
261 262

	TFile fw("figures/spectra.root", "UPDATE");
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277

	TString hName;

	if (heSpectra[chain] != 0) {
		hName.Form("heSpectrum%d%d", kMinAngle, kMaxAngle);
		heSpectra[chain]->SetName(hName.Data());
		heSpectra[chain]->Write();
		Info("BeAnalysis::SaveSpectrumHist", "Histogram saved.");
	}
	if (hsSpectra[chain] != 0) {
		hName.Form("hsSpectrum%d%d", kMinAngle, kMaxAngle);
		hsSpectra[chain]->SetName(hName.Data());
		hsSpectra[chain]->Write();
		Info("BeAnalysis::SaveSpectrumHist", "Histogram saved.");
	}
278 279 280 281
	fw.Close();

}

282
void BeAnalysis::SaveEpsilonTHist(Int_t interval, Int_t chain, TString outfilename) {
283

284
	TFile fw(outfilename.Data(), "UPDATE");
285

Vratislav Chudoba's avatar
Vratislav Chudoba committed
286 287
	TString hName;

288
	if (heeT[interval][chain] != 0) {
Vratislav Chudoba's avatar
Vratislav Chudoba committed
289 290
		hName.Form("heeT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		heeT[interval][chain]->SetName(hName.Data());
291 292 293 294
		heeT[interval][chain]->Write();
		Info("BeAnalysis::SaveEpsilonTHist", "Histogram saved.");
	}
	if (hseT[interval][chain] != 0) {
Vratislav Chudoba's avatar
Vratislav Chudoba committed
295 296
		hName.Form("hseT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		hseT[interval][chain]->SetName(hName.Data());
297
		hseT[interval][chain]->Write();
Vratislav Chudoba's avatar
Vratislav Chudoba committed
298
		Info("BeAnalysis::SaveEpsilonTHist", "Histogram saved.");
299 300
	}
	if (hieT[interval][chain] != 0) {
Vratislav Chudoba's avatar
Vratislav Chudoba committed
301 302
		hName.Form("hieT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		hieT[interval][chain]->SetName(hName.Data());
303
		hieT[interval][chain]->Write();
Vratislav Chudoba's avatar
Vratislav Chudoba committed
304
		Info("BeAnalysis::SaveEpsilonTHist", "Histogram saved.");
305 306 307 308 309
	}
	fw.Close();

}

310 311 312 313
void BeAnalysis::SaveCosThetaTHist(Int_t interval, Int_t chain) {

	TFile fw("figures/cosThetaT.root", "UPDATE");

Vratislav Chudoba's avatar
Vratislav Chudoba committed
314 315
	TString hName;

316
	if (hecoskT[interval][chain] != 0) {
Vratislav Chudoba's avatar
Vratislav Chudoba committed
317 318
		hName.Form("hecoskT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		hecoskT[interval][chain]->SetName(hName.Data());
319 320 321 322
		hecoskT[interval][chain]->Write();
		Info("BeAnalysis::SaveCosThetaTHist", "Histogram saved.");
	}
	if (hscoskT[interval][chain] != 0) {
Vratislav Chudoba's avatar
Vratislav Chudoba committed
323 324
		hName.Form("hscoskT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		hscoskT[interval][chain]->SetName(hName.Data());
325
		hscoskT[interval][chain]->Write();
Vratislav Chudoba's avatar
Vratislav Chudoba committed
326
		Info("BeAnalysis::SaveCosThetaTHist", "Histogram saved.");
327 328
	}
	if (hicoskT[interval][chain] != 0) {
Vratislav Chudoba's avatar
Vratislav Chudoba committed
329 330
		hName.Form("hicoskT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		hicoskT[interval][chain]->SetName(hName.Data());
331
		hicoskT[interval][chain]->Write();
Vratislav Chudoba's avatar
Vratislav Chudoba committed
332
		Info("BeAnalysis::SaveCosThetaTHist", "Histogram saved.");
333 334 335 336 337 338
	}

	fw.Close();

}

339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
void BeAnalysis::SaveEpsilonYHist(Int_t interval, Int_t chain) {

	TFile fw("figures/epsilonY.root", "UPDATE");

	if (heeY[interval][chain] != 0) {
		heeY[interval][chain]->Write();
		Info("BeAnalysis::SaveEpsilonYHist", "Histogram saved.");
	}
	if (hseY[interval][chain] != 0) {
		hseY[interval][chain]->Write();
		Info("BeAnalysis::SaveEpsilonYHist", "Histogram saved.");
	}
	if (hieY[interval][chain] != 0) {
		hieY[interval][chain]->Write();
		Info("BeAnalysis::SaveEpsilonYHist", "Histogram saved.");
	}
	fw.Close();

}

359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
void BeAnalysis::SaveThetaAHist(Int_t interval, Int_t chain) {

	TFile fw("figures/thetaA.root", "UPDATE");

	TString hName;

	if (hethetaAT[interval][chain] != 0) {
		hName.Form("hethetaAT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		hethetaAT[interval][chain]->SetName(hName.Data());
		hethetaAT[interval][chain]->Write();
		Info("BeAnalysis::SaveThetaAHist", "Histogram saved.");
	}
	if (hsthetaAT[interval][chain] != 0) {
		hName.Form("hsthetaAT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		hsthetaAT[interval][chain]->SetName(hName.Data());
		hsthetaAT[interval][chain]->Write();
		Info("BeAnalysis::SaveThetaAHist", "Histogram saved.");
	}
	if (hithetaAT[interval][chain] != 0) {
		hName.Form("hithetaAT%d_%d_%d%d", interval, chain, kMinAngle, kMaxAngle);
		hithetaAT[interval][chain]->SetName(hName.Data());
		hithetaAT[interval][chain]->Write();
		Info("BeAnalysis::SaveThetaAHist", "Histogram saved.");
	}
	fw.Close();

}

387
void BeAnalysis::SetCMAngularCuts() {
388 389 390 391 392 393 394 395

	TString sAngles, srAngles;

	sAngles.Form("fBeThetaCM1>%d*TMath::DegToRad() && fBeThetaCM1<%d*TMath::DegToRad()", kMinAngle, kMaxAngle);
	srAngles.Form("f6BeThetaCM1>%d*TMath::DegToRad() && f6BeThetaCM1<%d*TMath::DegToRad()", kMinAngle, kMaxAngle);

	cAngles = sAngles.Data();
	crAngles = srAngles.Data();
396 397 398 399 400
}

void BeAnalysis::Spectra() {

	if (!spectra) {
401
		Error("BeAnalysis::Spectra", "kSpectra was to zero.");
402 403 404
		return;
	}

405 406 407 408 409 410 411 412 413 414 415
	if (!che) {
		Error("BeAnalysis::Spectra", "Chain with experimental data was not initialized.");
		return;
	}

	for (Int_t i = 0; i < 6; i++) {
			if (!chs[i]) {
				Error("BeAnalysis::Spectra", "Chain No. %d with simulated data was not initialized.", i);
				return;
			}
	}
416 417 418

	TCanvas *cSpectra = new TCanvas();

419 420 421
//	TH1F *hsSpectra[6];
//	TH1F *heSpectra[6];
//	TH1F *hSdiff[6];
422 423 424

	canvasTitle.Form("energy spectra fitting;\t(%d,%d) degrees", kMinAngle, kMaxAngle);
	cSpectra->SetTitle(canvasTitle.Data());
425 426
//	cSpectra->Divide(2, 3);
	CanvasDivision(cSpectra);
427 428 429 430 431

	che->SetLineColor(kGreen);

	for (Int_t j = 0; j < 6; j++) {	//different files
		if (!kChains[j]) continue;
432
//		cout << kChains[j] << endl;
433
		cSpectra->cd(j+1);
434 435
//		chs[j]->SetLineColor(kBlue);
//		chs[j]->SetFillColor(kWhite);
436
		hsName.Form("hsSpectra%d", j);
437
		hsSpectra[j] = new TH1F(hsName.Data(), cAngles.GetTitle(), noBinsSpectra, 0, 10);
438 439
//		drawCommand.Form("f6BeIM>>%s(200,0,10)", hsName.Data());
		drawCommand.Form("f6BeIM>>%s", hsName.Data());
440 441
		//			chs[j]->Draw(drawCommand.Data(), cQ && crBeWork && crAngles && sRatio[j], "", sEvents[j]);
		chs[j]->Draw(drawCommand.Data(), cProtons && cQ && crBeWork && crAngles && sRatio[j], "", sEvents[j]);
442
//		hsSpectra[j] = (TH1F*)gPad->FindObject(hsName.Data());
443
		heName.Form("heSpectra%d", j);
444
		heSpectra[j] = new TH1F(heName.Data(), cAngles.GetTitle(), noBinsSpectra, 0, 10);
445 446
//		drawCommand.Form("fBeIM>>%s(200,0,10)", heName.Data());
		drawCommand.Form("fBeIM>>%s", heName.Data());
447
		//			che->Draw(drawCommand.Data(), cQ && cBeWork && cAngles, "same", eEvents[j]);
448

449
		che->Draw(drawCommand.Data(), cProtons && cQ && cBeWork && cAngles, "", eEvents[j]);
450 451 452
//		TString histTitle;
//		histTitle.Form("%s", cAngles.GetTitle());
//		heSpectra[j]->SetTitle(cAngles.GetTitle());
453 454 455 456 457

////		cout << drawCommand << "\t" << eEvents[j] << endl;
////		che->Draw(drawCommand.Data(), cProtons && cQ && cBeWork && cAngles, "", eEvents[j]);
//		che->Draw("fBeIM", "", "");
//		continue;
458
//		heSpectra[j] = (TH1F*)gPad->FindObject(heName.Data());
459 460 461 462

		//			heSpectra[j]->Draw("");
		heSpectra[j]->Draw("E");
		heSpectra[j]->SetLineColor(1);
463
//		heSpectra[j]->SetTitle("");
464 465
		heSpectra[j]->SetXTitle("E_{T} (MeV)");
//		heSpectra[j]->GetXaxis()->SetTitleOffset(0.95);
466 467
		heSpectra[j]->GetXaxis()->CenterTitle();
		heSpectra[j]->SetYTitle("counts");
468
//		heSpectra[j]->GetYaxis()->SetTitleOffset(0.7);
469
		heSpectra[j]->GetYaxis()->CenterTitle();
470

471 472 473
		hsSpectra[j]->SetLineColor(kGray+1);
		hsSpectra[j]->SetFillColor(kGray+1);
		hsSpectra[j]->Draw("same");
474

475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
		heSpectra[j]->Draw("same E");

		if (kAutoRange) {
			Float_t leftMaxMC = kRangeProportion*hsSpectra[j]->GetMaximum();
			Float_t leftMaxE = kRangeProportion*heSpectra[j]->GetMaximum();
			leftMaxMC > leftMaxE ? heSpectra[j]->GetYaxis()->SetRangeUser(0, leftMaxMC) : heSpectra[j]->GetYaxis()->SetRangeUser(0, leftMaxE);
		}


		hSdiff[j] = new TH1F(*heSpectra[j]);
		hSdiff[j]->Add(hsSpectra[j], -1);
		hSdiff[j]->SetLineColor(kRed);

		cSpectra->Update();

490 491 492
		Int_t intLowLimit, IntHighLimit;
		const Double_t binToMeV = 10./(Double_t)noBinsSpectra;

493
		Info("statesRatioFitting", "MC %d", j+1);
494 495 496 497 498 499 500 501 502 503 504
		intLowLimit = (Int_t)0./binToMeV;
		IntHighLimit = (Int_t)2./binToMeV;
		Info("statesRatioFitting", "ground state: %3.1f (sim)/ %3.1f (exp) = %3.3f",
				hsSpectra[j]->Integral(intLowLimit, IntHighLimit), heSpectra[j]->Integral(intLowLimit, IntHighLimit),
				hsSpectra[j]->Integral(intLowLimit, IntHighLimit)/heSpectra[j]->Integral(intLowLimit, IntHighLimit) );

		intLowLimit = (Int_t)2.5/binToMeV;
		IntHighLimit = (Int_t)3.2/binToMeV;
		Info("statesRatioFitting", "left slope: %3.1f (sim)/ %3.1f (exp) = %3.3f\n",
				hsSpectra[j]->Integral(intLowLimit, IntHighLimit), heSpectra[j]->Integral(intLowLimit, IntHighLimit),
				hsSpectra[j]->Integral(intLowLimit, IntHighLimit)/heSpectra[j]->Integral(intLowLimit, IntHighLimit) );
505 506
	}//for j

507
	SaveFigures(cSpectra, "Spectra", 0);
508 509

	Info("sfAngInt_spectra.cxx", "Finished.");
510
	printf("\n");
511 512

}
513 514 515

void BeAnalysis::EpsilonT() {

516 517 518 519
	if(!epsilonT) {
		Error("BeAnalysis::EpsilonT", "Energy intervals were not set.");
		return;
	}
520

521 522
	TCanvas *canEpsilonT[noIntervals];
	for (Int_t i = 0; i<noIntervals; i++) {	//energy intervals (canvases)
523

524 525 526
//		TH1F *hseT[noIntervals][6];
//		TH1F *heeT[noIntervals][6];
//		TH1F *hieT[noIntervals][6];
527 528

		if (!epsilonT[i]) continue;
529 530 531 532 533

		canEpsilonT[i] = new TCanvas();

		canvasTitle.Form("epsilon in %s T-system;\t(%d,%d) degrees", (const char*)cBeE[i], kMinAngle, kMaxAngle);
		canEpsilonT[i]->SetTitle(canvasTitle.Data());
534 535
//		canEpsilonT[i]->Divide(2, 3, 0., 0.);
		CanvasDivision(canEpsilonT[i]);
536

537 538 539 540 541
//		cProtons.Print();
//		cQ.Print();
//		crBeE[i].Print();
//		crAngles.Print();

542
//		TFile fw("histos.root", "RECREATE");
543

544 545 546
		che->SetLineColor(kBlack);
		for (Int_t j = 0; j < 6; j++) {	//different files
			if (!kChains[j]) continue;
547 548 549 550 551

//			sRatio[j].Print();
//			cout << sEventsECuts[i][j] << endl;
//			cout << eEventsECuts[i][j] << endl;

552
			canEpsilonT[i]->cd(j+1);
553 554
//			chs[j]->SetLineColor(kGray+1);
//			chs[j]->SetFillColor(kGray+1);
555
			hsName.Form("hseT%d_%d", i, j);
556 557 558 559 560 561
//			hsSpectra[j] = new TH1F(hsName.Data(), cAngles.GetTitle(), noBinsSpectra, 0, 10);
			hseT[i][j] = new TH1F(hsName.Data(), cAngles.GetTitle(), noBinsCorr, 0, 1.);
			hseT[i][j]->SetLineColor(kGray+1);
			hseT[i][j]->SetFillColor(kGray+1);
//			drawCommand.Form("fTpp/f6BeIM>>%s(30,0,1)", hsName.Data());
			drawCommand.Form("fTpp/f6BeIM>>%s", hsName.Data());
562
			chs[j]->Draw(drawCommand.Data(), cProtons && cQ && crBeE[i] && crAngles && sRatio[j], "", sEventsECuts[i][j]);
563
//			hseT[i][j] = (TH1F*)gPad->FindObject(hsName.Data());
564
			heName.Form("heeT%d_%d", i, j);
565
			heeT[i][j] = new TH1F(heName.Data(), cAngles.GetTitle(), noBinsCorr, 0, 1.);
566 567
			drawCommand.Form("fTpp/fBeIM>>%s", heName.Data());
			che->Draw(drawCommand.Data(), cProtons && cQ && cBeE[i] && cAngles, "E same", eEventsECuts[i][j]);
568
//			heeT[i][j] = (TH1F*)gPad->FindObject(heName.Data());
569
//			continue;
570 571

			hseT[i][j]->Draw();
572
//			hseT[i][j]->SetTitle("");
573
			hseT[i][j]->SetXTitle("\\varepsilon");
574 575
//			hseT[i][j]->GetXaxis()->SetTitleOffset(0.95);
//			hseT[i][j]->GetXaxis()->SetTitleSize(0.11);
576 577
			hseT[i][j]->GetXaxis()->CenterTitle();
			hseT[i][j]->SetYTitle("counts");
578
//			hseT[i][j]->GetYaxis()->SetTitleOffset(0.7);
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
			hseT[i][j]->GetYaxis()->CenterTitle();
			heeT[i][j]->Draw("E same");
			if (kAutoRange) {
				Float_t leftMaxMC = kRangeProportion*hseT[i][j]->GetMaximum();
				Float_t leftMaxE = kRangeProportion*heeT[i][j]->GetMaximum();
				hseT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
				leftMaxMC > leftMaxE ? hseT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxMC) : hseT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
			}
			else {
				hseT[i][j]->GetYaxis()->SetRangeUser(0, eTRange[i][j]);
			}
			canEpsilonT[i]->Update();


			hiName.Form("hieT%d_%d", i, j);
			drawCommand.Form("sTpp/E_IM>>%s", hiName.Data());
595
			hieT[i][j] = new TH1F(hiName.Data(), cAngles.GetTitle(), noBinsCorr, 0, 1.);
596
			ti[j]->Draw(drawCommand.Data(), ciBeE[i] && sRatio[j], "same");
597
//			hieT[i][j] = (TH1F*)gPad->FindObject(hiName.Data());
598 599 600 601 602 603
			Float_t rightmax = kRangeProportionIn*hieT[i][j]->GetMaximum();
			Float_t scale = canEpsilonT[i]->GetPad(j+1)->GetUymax()/rightmax;
			hieT[i][j]->SetLineColor(kRed);
			hieT[i][j]->Scale(scale);

			//draw an axis on the right side
604 605 606 607 608
//			TGaxis *axis = new TGaxis(gPad->GetUxmax(),gPad->GetUymin(),
//					gPad->GetUxmax(), gPad->GetUymax(),0,rightmax,510,"+L");
//			axis->SetLineColor(kRed);
//			axis->SetLabelColor(kRed);
//			axis->Draw();
609 610 611 612

			canEpsilonT[i]->Update();

			if (kVerbose) {
613
				Info("BeAnalysis::EpsilonT", "cut%d; case%d: %3.1f (exp)/ %3.1f (sim) = %3.3f",
614 615 616 617 618
						i, j, heeT[i][j]->Integral(0,heeT[i][j]->GetNbinsX()),
						hseT[i][j]->Integral(0,hseT[i][j]->GetNbinsX()),
						heeT[i][j]->Integral(0,heeT[i][j]->GetNbinsX())/hseT[i][j]->Integral(0,hseT[i][j]->GetNbinsX()) );
			}

619 620
//			hseT[i][j]->Write();

621 622 623
		}//for j
		if (kVerbose) cout << endl;

624 625
//		fw.Close();

626 627
		SaveFigures(canEpsilonT[i], "epsilonT", i);

628 629 630
	}//for i

}
631 632 633

void BeAnalysis::CosThetaTk() {

634 635 636 637 638
	if(!cosThetaT) {
		Error("BeAnalysis::CosThetaTk", "Energy intervals were not set.");
		return;
	}

639 640 641
	TCanvas *cThetaT[noIntervals];
	for (Int_t i = 0; i<noIntervals; i++) {	//energy intervals (canvases)

642 643 644
//		TH1F *hscoskT[noIntervals][6];
//		TH1F *hecoskT[noIntervals][6];
//		TH1F *hicoskT[noIntervals][6];
645 646 647 648 649 650 651 652

		if (!cosThetaT[i]) continue;
		//		{

		cThetaT[i] = new TCanvas();

		canvasTitle.Form("cos thetak in %s T-system;\t(%d,%d) degrees", (const char*)cBeE[i], kMinAngle, kMaxAngle);
		cThetaT[i]->SetTitle(canvasTitle.Data());
653 654
//		cThetaT[i]->Divide(2, 3);
		CanvasDivision(cThetaT[i]);
655 656 657 658 659

		che->SetLineColor(kBlack);
		for (Int_t j = 0; j < 6; j++) {	//different files
			if (!kChains[j]) continue;
			cThetaT[i]->cd(j+1);
660 661
//			chs[j]->SetLineColor(kGray+1);
//			chs[j]->SetFillColor(kGray+1);
662
			hsName.Form("hscoskT%d_%d", i, j);
663 664 665 666
			hscoskT[i][j] = new TH1F(hsName.Data(), cAngles.GetTitle(), noBinsCorr, -1., 1.);
			hscoskT[i][j]->SetLineColor(kGray+1);
			hscoskT[i][j]->SetFillColor(kGray+1);
			drawCommand.Form("fCosThetaTk>>%s", hsName.Data());
667
			chs[j]->Draw(drawCommand.Data(), cQ && crBeE[i] && crAngles && sRatio[j], "", sEventsECuts[i][j]);
668 669
//			hscoskT[i][j] = (TH1F*)gPad->FindObject(hsName.Data());

670
			heName.Form("hecoskT%d_%d", i, j);
671 672 673
			hecoskT[i][j] = new TH1F(heName.Data(), cAngles.GetTitle(), noBinsCorr, -1., 1.);
			drawCommand.Form("fCosThetaTk>>%s", heName.Data());
//			drawCommand.Form("fCosThetaTk>>%s(30,-1,1)", heName.Data());
674
			che->Draw(drawCommand.Data(), cQ && cBeE[i] && cAngles, "E same", eEventsECuts[i][j]);
675
//			hecoskT[i][j] = (TH1F*)gPad->FindObject(heName.Data());
676 677

			hscoskT[i][j]->Draw();
678
//			hscoskT[i][j]->SetTitle("");
679 680 681 682 683 684 685 686 687 688
			hscoskT[i][j]->SetXTitle("\\cos \\theta_k");
//			hseT[i][j]->GetXaxis()->SetTitleOffset(0.95);
//			hseT[i][j]->GetXaxis()->SetTitleSize(0.11);
			hscoskT[i][j]->GetXaxis()->CenterTitle();
			hscoskT[i][j]->SetYTitle("counts");
//			hseT[i][j]->GetYaxis()->SetTitleOffset(0.7);
			hscoskT[i][j]->GetYaxis()->CenterTitle();



689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
			//				hscoskT[i][j]->GetYaxis()->SetRangeUser(0, coskTRange[i][j]);
			hecoskT[i][j]->Draw("E same");
			if (kAutoRange) {
				Float_t leftMaxMC = kRangeProportion*hecoskT[i][j]->GetMaximum();
				Float_t leftMaxE = kRangeProportion*hscoskT[i][j]->GetMaximum();
				hscoskT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
				leftMaxMC > leftMaxE ? hscoskT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxMC) : hscoskT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
			}
			else {
				hscoskT[i][j]->GetYaxis()->SetRangeUser(0, eTRange[i][j]);
			}
			cThetaT[i]->Update();


			hiName.Form("hicoskT%d_%d", i, j);
704 705
			hicoskT[i][j] = new TH1F(hiName.Data(), cAngles.GetTitle(), noBinsCorr, -1., 1.);
			drawCommand.Form("sCosThetaTk>>%s", hiName.Data());
706
			ti[j]->Draw(drawCommand.Data(), ciBeE[i] && sRatio[j], "same");
707
//			hicoskT[i][j] = (TH1F*)gPad->FindObject(hiName.Data());
708 709 710 711 712 713
			Float_t rightmax = 1.1*hicoskT[i][j]->GetMaximum();
			Float_t scale = cThetaT[i]->GetPad(j+1)->GetUymax()/rightmax;
			hicoskT[i][j]->SetLineColor(kRed);
			hicoskT[i][j]->Scale(scale);

			//draw an axis on the right side
714 715 716 717 718
//			TGaxis *axis = new TGaxis(gPad->GetUxmax(),gPad->GetUymin(),
//					gPad->GetUxmax(), gPad->GetUymax(),0,rightmax,510,"+L");
//			axis->SetLineColor(kRed);
//			axis->SetLabelColor(kRed);
//			axis->Draw();
719 720 721 722

			cThetaT[i]->Update();

			if (kVerbose) {
723
				Info("BeAnalysis::CosThetaTk", "cut%d; case%d: %3.1f (exp)/ %3.1f (sim) = %3.3f",
724 725 726 727 728 729 730
						i, j, hecoskT[i][j]->Integral(0,hecoskT[i][j]->GetNbinsX()),
						hscoskT[i][j]->Integral(0,hscoskT[i][j]->GetNbinsX()),
						hecoskT[i][j]->Integral(0,hecoskT[i][j]->GetNbinsX())/hscoskT[i][j]->Integral(0,hscoskT[i][j]->GetNbinsX()) );
			}

		}//for j

731 732
		SaveFigures(cThetaT[i], "cosThetakT", i);

733 734
	}//for i

735 736 737
}

void BeAnalysis::EpsilonY() {
738

739 740 741 742 743
	if(!epsilonY) {
		Error("BeAnalysis::EpsilonY", "Energy intervals were not set.");
		return;
	}

744 745 746
	TCanvas *canEpsilonY[noIntervals];
	for (Int_t i = 0; i<noIntervals; i++) {	//energy intervals (canvases)

747 748 749
//		TH1F *hseY[noIntervals][6];
//		TH1F *heeY[noIntervals][6];
//		TH1F *hieY[noIntervals][6];
750 751 752 753 754 755 756

		if (!epsilonY[i]) continue;
		//		{

		canEpsilonY[i] = new TCanvas();
		canvasTitle.Form("epsilon in %s Y-system;\t(%d,%d) degrees", (const char*)cBeE[i], kMinAngle, kMaxAngle);
		canEpsilonY[i]->SetTitle(canvasTitle.Data());
757 758
//		canEpsilonY[i]->Divide(2, 3);
		CanvasDivision(canEpsilonY[i]);
759 760 761

		che->SetLineColor(kBlack);
		for (Int_t j = 0; j < 6; j++) {	//different files
762
			if (!kChains[j]) continue;
763
			canEpsilonY[i]->cd(j+1);
764

765
			hsName.Form("hseY%d_%d", i, j);
766
			hseY[i][j] = new TH1F(hsName.Data(), cAngles.GetTitle(), noBinsCorr, 0., 1.);
767 768 769
			hseY[i][j]->SetLineColor(kGray+1);
			hseY[i][j]->SetFillColor(kGray+1);
			drawCommand.Form("fTap/f6BeIM>>%s", hsName.Data());
770
			chs[j]->Draw(drawCommand.Data(), cQ && crBeE[i] && crAngles && sRatio[j], "", sEvents[j]);
771
//			hseY[i][j] = (TH1F*)gPad->FindObject(hsName.Data());
772

773
			heName.Form("heeY%d_%d", i, j);
774 775
			heeY[i][j] = new TH1F(heName.Data(), cAngles.GetTitle(), noBinsCorr, 0., 1.);
			drawCommand.Form("fTap/fBeIM>>%s", heName.Data());
776
			che->Draw(drawCommand.Data(), cQ && cBeE[i] && cAngles, "E same", eEvents[j]);
777
//			heeY[i][j] = (TH1F*)gPad->FindObject(heName.Data());
778 779

			hseY[i][j]->Draw();
780
//			hseY[i][j]->SetTitle("");
781 782 783 784 785 786 787 788
			hseY[i][j]->SetXTitle("\\varepsilon");
//			hseT[i][j]->GetXaxis()->SetTitleOffset(0.95);
//			hseT[i][j]->GetXaxis()->SetTitleSize(0.11);
			hseY[i][j]->GetXaxis()->CenterTitle();
			hseY[i][j]->SetYTitle("counts");
//			hseT[i][j]->GetYaxis()->SetTitleOffset(0.7);
			hseY[i][j]->GetYaxis()->CenterTitle();

789 790 791 792 793 794 795 796 797 798 799 800 801
			heeY[i][j]->Draw("E same");
			if (kAutoRange) {
				Float_t leftMaxMC = kRangeProportion*heeY[i][j]->GetMaximum();
				Float_t leftMaxE = kRangeProportion*hseY[i][j]->GetMaximum();
				hseY[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
				leftMaxMC > leftMaxE ? hseY[i][j]->GetYaxis()->SetRangeUser(0, leftMaxMC) : hseY[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
			}
			else {
				hseY[i][j]->GetYaxis()->SetRangeUser(0, eTRange[i][j]);
			}
			canEpsilonY[i]->Update();

			hiName.Form("hieY%d_%d", i, j);
802 803
			hieY[i][j] = new TH1F(hiName.Data(), cAngles.GetTitle(), noBinsCorr, 0., 1.);
			drawCommand.Form("sTap/E_IM>>%s", hiName.Data());
804
			ti[j]->Draw(drawCommand.Data(), ciBeE[i] && sRatio[j], "same");
805
//			hieY[i][j] = (TH1F*)gPad->FindObject(hiName.Data());
806 807 808 809 810 811
			Float_t rightmax = 1.1*hieY[i][j]->GetMaximum();
			Float_t scale = canEpsilonY[i]->GetPad(j+1)->GetUymax()/rightmax;
			hieY[i][j]->SetLineColor(kRed);
			hieY[i][j]->Scale(scale);

			//draw an axis on the right side
812 813 814 815 816
//			TGaxis *axis = new TGaxis(gPad->GetUxmax(),gPad->GetUymin(),
//					gPad->GetUxmax(), gPad->GetUymax(),0,rightmax,510,"+L");
//			axis->SetLineColor(kRed);
//			axis->SetLabelColor(kRed);
//			axis->Draw();
817 818 819 820

			canEpsilonY[i]->Update();

			if (kVerbose) {
821
				Info("BeAnalysis::EpsilonY", "cut%d; case%d: %3.1f (exp)/ %3.1f (sim) = %3.3f",
822 823 824 825 826 827 828
						i, j, heeY[i][j]->Integral(0,heeY[i][j]->GetNbinsX()),
						hseY[i][j]->Integral(0,hseY[i][j]->GetNbinsX()),
						heeY[i][j]->Integral(0,heeY[i][j]->GetNbinsX())/hseY[i][j]->Integral(0,hseY[i][j]->GetNbinsX()) );
			}

		}//for j

829 830
		SaveFigures(canEpsilonY[i], "EpsilonY", i);

831 832 833
	}//for i


834 835 836
}

void BeAnalysis::CosThetaYk() {
837

838 839 840 841 842
	if(!cosThetaY) {
		Error("BeAnalysis::CosThetaYk", "Energy intervals were not set.");
		return;
	}

843
	TCanvas *cThetaY[noIntervals];
844
	for (Int_t i = 0; i<noIntervals; i++) {	//energy intervals (canvases)
845 846 847 848 849

		TH1F *hscoskY[noIntervals][6];
		TH1F *hecoskY[noIntervals][6];
		TH1F *hicoskY[noIntervals][6];

850
		if (!cosThetaY[i]) continue;
851 852 853 854 855 856
		//			{

		cThetaY[i] = new TCanvas();

		canvasTitle.Form("cos thetak in %s Y-system;\t(%d,%d) degrees", (const char*)cBeE[i], kMinAngle, kMaxAngle);
		cThetaY[i]->SetTitle(canvasTitle.Data());
857 858
//		cThetaY[i]->Divide(2, 3);
		CanvasDivision(cThetaY[i]);
859 860 861

		che->SetLineColor(kBlack);
		for (Int_t j = 0; j < 6; j++) {	//different files
862
			if (!kChains[j]) continue;
863 864 865 866 867 868 869 870 871 872 873 874 875
			cThetaY[i]->cd(j+1);
			chs[j]->SetLineColor(kGray+1);
			chs[j]->SetFillColor(kGray+1);
			hsName.Form("hscoskY%d_%d", i, j);
			drawCommand.Form("fCosThetaYk>>%s(50,-1,1)", hsName.Data());
			chs[j]->Draw(drawCommand.Data(), cQ && crBeE[i] && crAngles && sRatio[j], "", sEvents[j]);
			hscoskY[i][j] = (TH1F*)gPad->FindObject(hsName.Data());
			heName.Form("hecoskY%d_%d", i, j);
			drawCommand.Form("fCosThetaYk>>%s(50,-1,1)", heName.Data());
			che->Draw(drawCommand.Data(), cQ && cBeE[i] && cAngles, "E same", eEvents[j]);
			hecoskY[i][j] = (TH1F*)gPad->FindObject(heName.Data());

			hscoskY[i][j]->Draw();
876 877 878 879 880 881 882 883
			hscoskY[i][j]->SetTitle("");
			hscoskY[i][j]->SetXTitle("\\cos \\theta_k");
//			hseT[i][j]->GetXaxis()->SetTitleOffset(0.95);
//			hseT[i][j]->GetXaxis()->SetTitleSize(0.11);
			hscoskY[i][j]->GetXaxis()->CenterTitle();
			hscoskY[i][j]->SetYTitle("counts");
//			hseT[i][j]->GetYaxis()->SetTitleOffset(0.7);
			hscoskY[i][j]->GetYaxis()->CenterTitle();
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
			hecoskY[i][j]->Draw("E same");
			if (kAutoRange) {
				Float_t leftMaxMC = kRangeProportion*hecoskY[i][j]->GetMaximum();
				Float_t leftMaxE = kRangeProportion*hscoskY[i][j]->GetMaximum();
				hscoskY[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
				leftMaxMC > leftMaxE ? hscoskY[i][j]->GetYaxis()->SetRangeUser(0, leftMaxMC) : hscoskY[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
			}
			else {
				hscoskY[i][j]->GetYaxis()->SetRangeUser(0, eTRange[i][j]);
			}

			cThetaY[i]->Update();

			hiName.Form("hicoskY%d_%d", i, j);
			drawCommand.Form("sCosThetaYk>>%s", hiName.Data());
			ti[j]->Draw(drawCommand.Data(), ciBeE[i] && sRatio[j], "same");
			hicoskY[i][j] = (TH1F*)gPad->FindObject(hiName.Data());
			Float_t rightmax = 1.1*hicoskY[i][j]->GetMaximum();
			Float_t scale = cThetaY[i]->GetPad(j+1)->GetUymax()/rightmax;
			hicoskY[i][j]->SetLineColor(kRed);
			hicoskY[i][j]->Scale(scale);

			//draw an axis on the right side
907 908 909 910 911
//			TGaxis *axis = new TGaxis(gPad->GetUxmax(),gPad->GetUymin(),
//					gPad->GetUxmax(), gPad->GetUymax(),0,rightmax,510,"+L");
//			axis->SetLineColor(kRed);
//			axis->SetLabelColor(kRed);
//			axis->Draw();
912 913 914 915

			cThetaY[i]->Update();

			if (kVerbose) {
916
				Info("BeAnalysis::CosThetaYk", "cut%d; case%d: %3.1f (exp)/ %3.1f (sim) = %3.3f",
917 918 919 920 921 922 923
						i, j, hecoskY[i][j]->Integral(0,hecoskY[i][j]->GetNbinsX()),
						hscoskY[i][j]->Integral(0,hscoskY[i][j]->GetNbinsX()),
						hecoskY[i][j]->Integral(0,hecoskY[i][j]->GetNbinsX())/hscoskY[i][j]->Integral(0,hscoskY[i][j]->GetNbinsX()) );
			}


		}//for j
924 925 926 927

		SaveFigures(cThetaY[i], "cosThetakY", i);

	}//for i
928

929 930
}

931 932
void BeAnalysis::ThetaAT() {

933 934 935 936 937
	if(!thetaAT) {
		Error("BeAnalysis::ThetaAT", "Energy intervals were not set.");
		return;
	}

938
	TCanvas *cThetaAT[noIntervals];
939
	for (Int_t i = 0; i<noIntervals; i++) {	//energy intervals (canvases)
940

941 942 943
//		TH1F *hsthetaAT[noIntervals][6];
//		TH1F *hethetaAT[noIntervals][6];
//		TH1F *hithetaAT[noIntervals][6];
944

945 946 947 948 949 950
		if (!thetaAT[i]) continue;

		cThetaAT[i] = new TCanvas();

		canvasTitle.Form("cos theta alpha in %s T-system;\t(%d,%d) degrees", (const char*)cBeE[i], kMinAngle, kMaxAngle);
		cThetaAT[i]->SetTitle(canvasTitle.Data());
951 952
//		cThetaAT[i]->Divide(2, 3);
		CanvasDivision(cThetaAT[i]);
953 954 955 956

		che->SetLineColor(kBlack);
		for (Int_t j = 0; j < 6; j++) {	//different files
			if (!kChains[j]) continue;
957

958
			cThetaAT[i]->cd(j+1);
959

960
			hsName.Form("hsthetaAT%d_%d", i, j);
961
			hsthetaAT[i][j] = new TH1F(hsName.Data(), cAngles.GetTitle(), noBinsThetaA, 0, TMath::Pi());
962 963 964 965
			hsthetaAT[i][j]->SetLineColor(kGray+1);
			hsthetaAT[i][j]->SetFillColor(kGray+1);
			drawCommand.Form("fAThetaCM>>%s", hsthetaAT[i][j]->GetName());
			chs[j]->Draw(drawCommand.Data(), cQ && crBeE[i] && crAngles && crEpsilonT && sRatio[j], "goff", sEventsECuts[i][j]);
966

967
			heName.Form("hethetaAT%d_%d", i, j);
968
			hethetaAT[i][j] = new TH1F(heName.Data(), cAngles.GetTitle(), noBinsThetaA, 0, TMath::Pi());
969 970 971 972
			drawCommand.Form("fAThetaCM>>%s", hethetaAT[i][j]->GetName());
			che->Draw(drawCommand.Data(), cQ && cBeE[i] && cAngles && cEpsilonT, "goff", eEventsECuts[i][j]);

			hsthetaAT[i][j]->Draw();
973
//			hsthetaAT[i][j]->SetTitle("");
974 975
			hsthetaAT[i][j]->SetXTitle("\\theta_{\\alpha} (rad)");
//			hsthetaAT[i][j]->GetXaxis()->SetTitleOffset(0.95);
976 977 978
			hsthetaAT[i][j]->GetXaxis()->CenterTitle();
			hsthetaAT[i][j]->SetYTitle("counts");
			//				hsthetaAT[i][j]->GetYaxis()->SetTitleOffset(1.09);
979
//			hsthetaAT[i][j]->GetYaxis()->SetTitleOffset(0.7);
980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
			hsthetaAT[i][j]->GetYaxis()->CenterTitle();

			hethetaAT[i][j]->Draw("E same");
			if (kAutoRange) {
				Float_t leftMaxMC = kRangeProportion*hethetaAT[i][j]->GetMaximum();
				Float_t leftMaxE = kRangeProportion*hsthetaAT[i][j]->GetMaximum();
				hsthetaAT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
				leftMaxMC > leftMaxE ? hsthetaAT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxMC) : hsthetaAT[i][j]->GetYaxis()->SetRangeUser(0, leftMaxE);
			}
			else {
				hsthetaAT[i][j]->GetYaxis()->SetRangeUser(0, eTRange[i][j]);
			}
			cThetaAT[i]->Update();

			hiName.Form("hithetaAT%d_%d", i, j);
995 996
			hithetaAT[i][j] = new TH1F(hiName.Data(), cAngles.GetTitle(), noBinsThetaA, 0, TMath::Pi());
			drawCommand.Form("sACM.Theta()>>%s", hiName.Data());
997
			ti[j]->Draw(drawCommand.Data(), ciEpsilon && ciBeE[i] && sRatio[j], "same");
998
//			hithetaAT[i][j] = (TH1F*)gPad->FindObject(hiName.Data());
999 1000 1001 1002 1003 1004 1005
			Float_t rightmax = 1.1*hithetaAT[i][j]->GetMaximum();
			Float_t scale = cThetaAT[i]->GetPad(j+1)->GetUymax()/rightmax;
			hithetaAT[i][j]->SetLineColor(kRed);
			hithetaAT[i][j]->Scale(scale);


			//draw an axis on the right side
1006 1007 1008 1009 1010
//			TGaxis *axis = new TGaxis(gPad->GetUxmax(),gPad->GetUymin(),
//					gPad->GetUxmax(), gPad->GetUymax(),0,rightmax,510,"+L");
//			axis->SetLineColor(kRed);
//			axis->SetLabelColor(kRed);
//			axis->Draw();
1011 1012 1013 1014

			cThetaAT[i]->Update();

			if (kVerbose) {
1015
				Info("BeAnalysis::ThetaAT", "cut%d; case%d: %3.1f (exp)/ %3.1f (sim) = %3.3f",
1016 1017 1018 1019 1020 1021 1022 1023
						i, j, hethetaAT[i][j]->Integral(0,hethetaAT[i][j]->GetNbinsX()),
						hsthetaAT[i][j]->Integral(0,hsthetaAT[i][j]->GetNbinsX()),
						hethetaAT[i][j]->Integral(0,hethetaAT[i][j]->GetNbinsX())/hsthetaAT[i][j]->Integral(0,hsthetaAT[i][j]->GetNbinsX()) );
			}

		}//for j

		SaveFigures(cThetaAT[i], "thetaAT", i);
1024

1025
	}//for i
1026

1027 1028
}

1029 1030
void BeAnalysis::ExpEventsECuts(Long64_t noExpEvents[5][6]) {

1031

1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
//	eMaxEvents = 5000000;

	if (!noExpEvents) {
		for (Int_t i = 0; i < 5; i++) {
			for (Int_t j = 0; j < 6; j++) {
				eEventsECuts[i][j] = eMaxEvents;
			}
		}
		Warning("BeAnalysis::ExpEventsECuts", "Default numbers of experimental events were set.");
		return;
	}
1043

1044 1045 1046 1047 1048 1049
	for (Int_t i = 0; i < 5; i++) {
		for (Int_t j = 0; j < 6; j++) {
			eEventsECuts[i][j] = (Long64_t)noExpEvents[i][j];
		}
	}
	return;
1050 1051 1052

}

1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
void BeAnalysis::SimEventsECuts(Long64_t noSimEvents[5][6]) {


	if (!noSimEvents) {
		for (Int_t i = 0; i < 5; i++) {
			for (Int_t j = 0; j < 6; j++) {
				sEventsECuts[i][j] = sMaxEvents;
			}
		}
		Warning("BeAnalysis::SimEventsECuts", "Default numbers of experimental events were set.");
		return;
	}
1065 1066 1067

	for (Int_t i = 0; i < 5; i++) {
		for (Int_t j = 0; j < 6; j++) {
1068
			sEventsECuts[i][j] = noSimEvents[i][j];
1069 1070
		}
	}
1071 1072
	return;

1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
}

void BeAnalysis::EpsilonTRange() {

	for (Int_t i = 0; i < 6; i++) {
		eTRange[0][i] = 300;
		eTRange[1][i] = 380;
		eTRange[2][i] = 300;
		eTRange[3][i] = 500;
		eTRange[4][i] = 500;
	}


}
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147

void BeAnalysis::SetFigures(TString figPath, TString figFormat,
		Bool_t kSave) {
	kSaveFigures = kSave;
	figureFormat = figFormat;
	figurePath = figPath;
}

void BeAnalysis::SetExpChain(TString files, Int_t minFnumber, Int_t maxFnumber) {

	lowExpFile = minFnumber;
	upExpFile = maxFnumber;
	expFiles = files;

}

void BeAnalysis::SetSimChains(TString chainAl0name, TString chainNoAl0name,
		TString chainAl180name, TString chainNoAl180name,
		TString chainAl90name, TString chainNoAl90name) {

	simFiles[0] = chainAl0name;
	simFiles[1] = chainNoAl0name;
	simFiles[2] = chainAl180name;
	simFiles[3] = chainNoAl180name;
	simFiles[4] = chainAl90name;
	simFiles[5] = chainNoAl90name;

}

void BeAnalysis::SetInputChains(TString inputAl0name, TString inputNoAl0name,
		TString inputAl180name, TString inputNoAl180name,
		TString inputAl90name, TString inputNoAl90name) {

	inputFiles[0] = inputAl0name;
	inputFiles[1] = inputNoAl0name;
	inputFiles[2] = inputAl180name;
	inputFiles[3] = inputNoAl180name;
	inputFiles[4] = inputAl90name;
	inputFiles[5] = inputNoAl90name;

}

void BeAnalysis::SetNoSimFiles(Int_t* minFnumber, Int_t* maxFnumber) {
	eMaxEvents = 5000000;

	if (!(minFnumber && maxFnumber)) {
		for (Int_t i = 0; i < 6; i++) {
			lowSimFile[i] = 0;
			upSimFile[i] = 14;
		}
		Info("BeAnalysis::SetNoSimFiles", "Default numbers of simfiles were set.");
		return;
	}

	for (Int_t i = 0; i < 6; i++) {
		lowSimFile[i] = minFnumber[i];
		upSimFile[i] = maxFnumber[i];
	}
	return;
}

1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
void BeAnalysis::SetEpsilonTintervals(Bool_t intervals[6]) {

	epsilonT = new Bool_t[noIntervals];

	if (!intervals) {
		for (Int_t i = 0; i < 6; i++) {
			epsilonT[i] = 1;
		}
		Warning("BeAnalysis::SetEpsilonTintervals", "All intervals epsilonT will be drawn");
		return;
	}

	for (Int_t i = 0; i < 6; i++) {
//		cout << intervals[i] << endl;
		epsilonT[i] = intervals[i];
	}
	return;

}

void BeAnalysis::SetCosThetaTkIntervals(Bool_t intervals[6]) {

	cosThetaT = new Bool_t[noIntervals];

	if (!intervals) {
		for (Int_t i = 0; i < 6; i++) {
			cosThetaT[i] = 1;
		}
		Warning("BeAnalysis::SetCosThetaTkIntervals", "All intervals epsilonT will be drawn");
		return;
	}

	for (Int_t i = 0; i < 6; i++) {
//		cout << intervals[i] << endl;
		cosThetaT[i] = intervals[i];
	}
	return;

}

void BeAnalysis::SetEpsilonYintervals(Bool_t intervals[6]) {
	epsilonY = new Bool_t[noIntervals];

	if (!intervals) {
		for (Int_t i = 0; i < 6; i++) {
			epsilonY[i] = 1;
		}
		Warning("BeAnalysis::SetEpsilonYintervals", "All intervals epsilonT will be drawn");
		return;
	}

	for (Int_t i = 0; i < 6; i++) {
//		cout << intervals[i] << endl;
		epsilonY[i] = intervals[i];
	}
	return;
}

void BeAnalysis::SetCosThetaYkIntervals(Bool_t intervals[6]) {
	cosThetaY = new Bool_t[noIntervals];

	if (!intervals) {
		for (Int_t i = 0; i < 6; i++) {
			cosThetaY[i] = 1;
		}
		Warning("BeAnalysis::SetCosThetaYkIntervals", "All intervals epsilonT will be drawn");
		return;
	}

	for (Int_t i = 0; i < 6; i++) {
//		cout << intervals[i] << endl;
		cosThetaY[i] = intervals[i];
	}
	return;
}

void BeAnalysis::SetThetaATintervals(Bool_t intervals[6]) {
	thetaAT = new Bool_t[noIntervals];

	if (!intervals) {
		for (Int_t i = 0; i < 6; i++) {
			thetaAT[i] = 1;
		}
		Warning("BeAnalysis::SetThetaATintervals", "All intervals epsilonT will be drawn");
		return;
	}

	for (Int_t i = 0; i < 6; i++) {
//		cout << intervals[i] << endl;
		thetaAT[i] = intervals[i];
	}
	return;
}

1242 1243 1244 1245 1246
void BeAnalysis::SaveFigures(TCanvas *canvas, TString variable, Int_t interval) {

	if (!kSaveFigures) return;

	canvasName.Form("%sfig%d%s:%d%d%s", figurePath.Data(), interval, variable.Data(), kMinAngle, kMaxAngle, figureFormat.Data());
1247 1248
	cout << canvasName << endl;
//	return;
1249 1250 1251 1252 1253 1254
	canvas->SaveAs(canvasName.Data());
	canvas->cd();
	canvas->Close();


}
1255

1256 1257 1258 1259 1260 1261
void BeAnalysis::SetSimCuts(TString sEt[5]/*, TString sET0, TString sET1, TString sET2, TString sET3, TString sET4*/) {

	for (Int_t i = 0; i < 5; i++) {
		if (sEt[i].Sizeof() <= 1) continue;
		crBeE[i] = sEt[i];
		Info("BeAnalysis::SetSimCuts", "crBeE[%d] was changed to \'%s\'.", i, sEt[i].Data());
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
	}

}

void BeAnalysis::SetInputCuts(TString iEt[5]) {

	for (Int_t i = 0; i < 5; i++) {
		if (iEt[i].Sizeof() <= 1) continue;
		ciBeE[i] = iEt[i];
		Info("BeAnalysis::SetInputCuts", "ciBeE[%d] was changed to \'%s\'.", i, iEt[i].Data());
1272 1273 1274 1275
	}

}

1276 1277 1278
void BeAnalysis::CanvasDivision(TCanvas* c) {
	c->Divide(2, 3, 0., 0.);
}