BeWork.cpp 56.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 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 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 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
/*
 * BeWork.cpp
 *
 *  Created on: 2.2.2010
 *      Author: Vratislav
 */

//unsigned int max_number_threads = 2;

#include "BeWork.h"
//#include "BeThread.h"

ClassImp(BeWork);

#ifndef __CINT__
//boost::mutex gFillMutex;
//boost::mutex gFillMutex;
#endif  /* __CINT __ */

BeWork::BeWork()
{
	Info("BeWork::BeWork", "CsI resolution is %f for alphas and %f for protons", 100*fCsIResA, 100*fCsIResP);
	Info("BeWork::BeWork", "Si resolution is %f keV", fSiRes*1000);

	Info("BeWork::BeWork", "Creating TELoss objects ...");
	CreateTELosses();

}

BeWork::BeWork(const char* configfile)
{

	fConfigFile = configfile;
	ReadConfigFile();
	SetWorkDir();
	Info("BeWork::BeWork", "Work directory: \"%s\"", fWorkDir.Data());

	Info("BeWork::BeWork", "CsI resolution is %f for alphas and %f for protons", 100*fCsIResA, 100*fCsIResP);
	Info("BeWork::BeWork", "Si resolution is %f keV", fSiRes*1000);

	Info("BeWork::BeWork", "Creating TELoss objects ...");
	CreateTELosses();

//	fCalibFile = "/data2/be/parameterfiles";
	Info("BeWork", "End of second constructor\n\n");
}

BeWork::BeWork(BeWork &bework) {
	//copy constructor
	fSiAlpha = new TELoss( *(bework.fSiAlpha) );
	fSiP = new TELoss( *(bework.fSiP) );

	fCsIAlpha = new TELoss( *(bework.fCsIAlpha) );
	fCsIP = new TELoss( *(bework.fCsIP) );

	fTargetAlpha = new TELoss( *(bework.fTargetAlpha) );
	fTargetP = new TELoss( *(bework.fTargetP) );
	fTargetLi = new TELoss( *(bework.fTargetLi) );

	fTargetWinAlpha = new TELoss( *(bework.fTargetWinAlpha) );
	fTargetWinP = new TELoss( *(bework.fTargetWinP) );
	fTargetWinLi = new TELoss( *(bework.fTargetWinLi) );

	//configuration and parameter files
	fConfigFile = bework.fConfigFile;
	fWorkDir = bework.fWorkDir;
	fRawFilePath = bework.fRawFilePath;


	fSiRes = bework.fSiRes;
	fCsIResP = bework.fCsIResP;
	fCsIResA = bework.fCsIResA;

	fTBeamMC = bework.fTBeamMC;
	fTBeamResMC = bework.fTBeamResMC;
	fBeamX_MC = bework.fBeamX_MC;
	fBeamY_MC = bework.fBeamY_MC;
	fBeamX_sigma_MC = bework.fBeamX_sigma_MC;
	fBeamY_sigma_MC = bework.fBeamY_sigma_MC;
//
	fT1SimPosition = bework.fT1SimPosition;
	fT2SimPosition = bework.fT2SimPosition;

	fX11_FD = bework.fX11_FD;
	fX11 = bework.fX11;
	fX11_BD = bework.fX11_BD;

	fX12_FD = bework.fX12_FD;
	fX12 = bework.fX12;
	fX12_BD = bework.fX12_BD;

	fX13_FD = bework.fX13_FD;

	fX21_FD = bework.fX21_FD;
	fX21 = bework.fX21;
	fX21_BD = bework.fX21_BD;

	fX22_FD = bework.fX22_FD;
	fX22 = bework.fX22;
	fX22_BD = bework.fX22_BD;

	fX23_FD = bework.fX23_FD;

	Info("BeWork::BeWork", "Copy constructor finished");
}

BeWork::~BeWork()
{
	Info("BeWork::~BeWork", "Destructor called");
	delete fSiAlpha;
	delete fSiP;
	delete fCsIAlpha;
	delete fCsIP;
	delete fTargetAlpha;
	delete fTargetP;
	delete fTargetLi;
	delete fTargetWinAlpha;
	delete fTargetWinP;
	delete fTargetWinLi;
	Info("BeWork::~BeWork", "Destructor finished");
}

void BeWork::ReadConfigFile() {

	ifstream cfile;
	//generator file opening
	if (!fConfigFile.IsNull()) {
		cfile.open(fConfigFile.Data());
		if (!cfile.is_open()) {
			Error("BeWork::ReadConfigFile", "Configuration file was not opened!!!");
			return;
		}//if
	}//if

	TString line;
	TString configuration;

	while (cfile.good()) {
		//read line from file
		line.ReadLine(cfile);
		if (line.Contains("//")) line.Resize(line.Index("//"));
		line.Append(" ");
		configuration.Append(line);
	}

//	cout << configuration.Data() << endl;

	//lower and upper case are important
	ConfigDictionary CDpath(configuration.Data());
	fRawFilePath = CDpath.GetString("rawFilePath");
//	fCutFile = CDpath.GetString("cutFile");

	//numbers only
	configuration.ToLower();
	ConfigDictionary CD(configuration.Data());
	fBeOnly = CD.GetBool("beonly");
	fsRatioMax = CD.GetDouble("sratiomax");
	fsRatioMin = CD.GetDouble("sratiomin");
//	printf("%d\t%d", fBeOnly, CD.GetBool("beonly"));
	fSiRes = CD.GetDouble("sires");
	fCsIResP = CD.GetDouble("csiresp");
	fCsIBestResP = CD.GetDouble("csirespmin");
	fCsIResA = CD.GetDouble("csiresa")/1.5;
	fCsIBestResA = CD.GetDouble("csiresamin");

	fTBeamMC = CD.GetDouble("tbeam");
	fTBeamResMC = CD.GetDouble("tbeamres");
	fBeamX_MC = CD.GetDouble("beamx");
	fBeamY_MC = CD.GetDouble("beamy");
	fBeamX_sigma_MC = CD.GetDouble("beamx_sigma");
	fBeamY_sigma_MC = CD.GetDouble("beamy_sigma");


	fT1SimPosition = CD.GetDouble("t1simposition");
	fT2SimPosition = CD.GetDouble("t2simposition");

	//detector thicknesses
	fX11_FD = CD.GetDouble("t11_frontdead");
	fX11 = CD.GetDouble("t11");
	fX11_BD = CD.GetDouble("t11_backdead");

	fX12_FD = CD.GetDouble("t12_frontdead");
	fX12 = CD.GetDouble("t12");
	fX12_BD = CD.GetDouble("t12_backdead");

	//#define	XD13F	14.	//fixme original value		probably in Si equivalent
	fX13_FD = CD.GetDouble("t13_frontdead");

	fX21_FD = CD.GetDouble("t21_frontdead");
	fX21 = CD.GetDouble("t21");
	fX21_BD = CD.GetDouble("t21_backdead");

	fX22_FD = CD.GetDouble("t22_frontdead");
	fX22 = CD.GetDouble("t22");
	fX22_BD = CD.GetDouble("t22_backdead");
	//#define	XD23F	14.		//fixme original value		probably in Si equivalent
	fX23_FD = CD.GetDouble("t23_frontdead");



	//config file closing
	cfile.close();
	if (cfile.is_open()) {
		Warning("BeWork::ReadConfigFile", "File %s closing error\n", fConfigFile.Data());
	}//if

	return;

}

void BeWork::SetWorkDir() {
	fWorkDir = fConfigFile;
	fWorkDir.Remove(fConfigFile.Last('/'), fConfigFile.Length());
}

const char* BeWork::GetWorkDir() {
	return fWorkDir.Data();
}

Int_t BeWork::FillExpFile(const char* inputrawfile, const char* outputfile,
		Long64_t noevents, Option_t *opt)
{
	//convert raw data in channel units into all needed kinematical units, new file containing tree "be" filled by "beevent" is created
	//
	//inputrawfile: .root file containing raw data
	//noevents: number of events to be filled, if noevents is set to 0, whole file will be processed
	//calibfilepath: path to files with calibration data "beSi.cal", "beCsIa.cal" and "beCsIp.cal"
	//outputfile: .root file with calibrated data
	//option: config: add config file name into the outputfile name

	TString ofile;
//	if (opt
	ofile.Form("%s/%s", fWorkDir.Data(), outputfile);

	TString ifile;
	ifile.Form("%s/%s", fRawFilePath.Data(), inputrawfile);

	//read calibration parameters and thresholds

	TFile *fr = new TFile(ifile.Data(), "READ");
	if (fr->IsOpen() == 0) {
		Warning("BeWork::FillExpFile", "File %s was not opened and won't be processed", ifile.Data());
		return 0;
	}


	//RAW data tree opening
	TTree *tr = (TTree*)fr->Get("RAW");
	if (!tr) {
		Warning("BeWork::FillExpFile", "Tree \"RAW\" was not found in file %s .", ifile.Data());
		return 0;
	}
	AculRaw *eventr = new AculRaw();
	Long64_t noEntries = tr->GetEntries(/*getCondition*/);
	if (noevents != 0 && noEntries > noevents) { noEntries = noevents; }
	tr->SetBranchAddress("channels", &eventr);

	//output file containing tree creating
	TFile *fw = new TFile(ofile.Data(), "RECREATE");	//dodelat overeni vytvoreni

	BeEvent *eventw = new BeEvent(fConfigFile.Data());
	TTree *tw = new TTree("be", "strom s energetickou a jinou informaci");		//predelat jmena, ...
	tw->Bronch("BePhys", "BeEvent", &eventw, 1024000, 99);		//large buffer needed for faster processing in the course of analysis


	Info("BeWork::FillExpFile", "In file %s %d events will be processed", ifile.Data(), (int)noEntries);
	if (fBeOnly) Info("BeWork::FillExpFile", "Only events containing Be will be saved");
	else Info("BeWork::FillExpFile", "All events will be saved");
	Info("BeWork::FillExpFile", "Output file %s will be filled", ofile.Data());

	fw->cd();

	for (Int_t i = 0; i <= (Int_t)noEntries; i++) {
		printProgBar(i, noEntries);
		fr->cd();
		tr->GetEntry(i);
		eventw->FillEvent(eventr);
		fw->cd();
		if (fBeOnly) {
			if (eventw->WriteCondition()) {
				tw->Fill();
			} //zkontrolovat
		} else
			tw->Fill();
	}//for

	printf("\n\n");

	fw->cd();
	tw->AutoSave();

	fw->cd();
	tw->Write();
	fw->Close();

	return (Int_t)noEntries;
}

Int_t BeWork::FillBeFile(const char* inputfile, Long64_t noevents, const char* rtree, const char* rbranch,
		const char* outputfile, const char* wtree, const char* wbranch, Option_t *opt) {
	//inputfile: .root file containing calibrated data
	//noevents: number of events to be filled, if noevents is set to 0, whole file will be processed
	//rtree: name of the tree containing information with structure BeEvent class to be read
	//rbranch: name of the branch to be read
	//outputfile: .root file with data containing Be event only, which will be filled into TTree named "beonly"
	//wtree: name of the branch to be wrote
	//wbranch: name of the tree containing information with structure BePureEvent class to be wrote
	//option:

	//output file name creating
	if (!strlen(outputfile)) {
		Error("BeWork::FillBeFile", "Name of outputfile must be set");
		return 0;
	}
	TString output(outputfile);



	TFile fr(inputfile, "READ");
	if (fr.IsOpen() == 0) {
		Warning("BeWork::FillBeFile", "File %s was not opened and won't be processed", inputfile);
		return 0;
	}
	//RAW data tree opening
	TTree *tr = (TTree*)fr.Get(rtree);
	if (!tr) {
		Warning("BeWork::FillBeFile", "Tree \"be\" was not found in file %s .", inputfile);
		return 0;
	}
	BeEvent *eventr = new BeEvent(fConfigFile.Data());
	Long64_t noEntries = tr->GetEntries(/*getCondition*/);
	if (noevents != 0 && noEntries > noevents) { noEntries = noevents; }
	tr->SetBranchAddress(rbranch, &eventr);

	//tree with simulated beam coordinates opening
	TTree *trbeam = 0;
	Double_t x = 0;
	Double_t y = 0;
	Double_t z = 0;
	Double_t thetaMC = 0;
	Double_t E_IM = 0;

	TLorentzVector *beamLab = new TLorentzVector();
	TLorentzVector *alphaLab = new TLorentzVector();
	TLorentzVector *p1Lab = new TLorentzVector();
	TLorentzVector *p2Lab = new TLorentzVector();

	TLorentzVector *alphaCM = new TLorentzVector();
	TLorentzVector *p1CM = new TLorentzVector();
	TLorentzVector *p2CM = new TLorentzVector();
	TLorentzVector *beCM = new TLorentzVector();

	Double_t sTpp;
	Double_t sTapp;
	Double_t sCosThetaTk;

	TString treereadname(rtree);
	if (treereadname.Contains("sim")) {
		Info("BeWork::FillBeFile", "Tree containing information about simulated beam opening");
		trbeam = (TTree*)fr.Get("sbeam");
		if (!trbeam) {
			Warning("BeWork::FillBeFile", "Tree \"sbeam\" was not found in file %s .", inputfile);
			return 0;
		}
		trbeam->SetBranchAddress("bx", &x);
		trbeam->SetBranchAddress("by", &y);
		trbeam->SetBranchAddress("bz", &z);
		trbeam->SetBranchAddress("thetaMC", &thetaMC);
		trbeam->SetBranchAddress("E_IM", &E_IM);

		trbeam->SetBranchAddress("beamLab.", &beamLab);
		trbeam->SetBranchAddress("sALab.", &alphaLab);
		trbeam->SetBranchAddress("sP1Lab.", &p1Lab);
		trbeam->SetBranchAddress("sP2Lab.", &p2Lab);

		trbeam->SetBranchAddress("sACM.", &alphaCM);
		trbeam->SetBranchAddress("sP1CM.", &p1CM);
		trbeam->SetBranchAddress("sP2CM.", &p2CM);
		trbeam->SetBranchAddress("sBeCM.", &beCM);

		trbeam->SetBranchAddress("sTpp", &sTpp);
		trbeam->SetBranchAddress("sTapp", &sTapp);
		trbeam->SetBranchAddress("sCosThetaTk", &sCosThetaTk);
		
	}//if



	//output file containing tree creating
	TFile fw(output.Data(), "RECREATE");	//dodelat overeni vytvoreni
	BePureEvent *eventw = new BePureEvent();
	TTree *tw = new TTree(wtree, "tree containing Be events only");		//predelat jmena, ...
	tw->Bronch(wbranch, "BePureEvent", &eventw, 1024000, 99);		//large buffer needed for faster processing in the course of analysis

	//tree containing beam information
	TTree *twbeam = 0;
	if (treereadname.Contains("sim")) {
		Info("BeWork::FillBeFile", "Tree containing information about simulated beam creating");
		twbeam = new TTree("sbeam", "tree with beam position and ThetaCM read from generator (not used for simulation)");

		twbeam->Branch("bx", &x, "bx/D");
		twbeam->Branch("by", &y, "by/D");
		twbeam->Branch("bz", &z, "bz/D");

		twbeam->Branch("thetaMC", &thetaMC, "thetaMC/D");
		twbeam->Branch("E_IM", &E_IM, "E_IM/D");

		twbeam->Bronch("beamLab", "TLorentzVector", &beamLab, 1024000, 99);
		twbeam->Bronch("sALab.", "TLorentzVector", &alphaLab, 1024000, 99);
		twbeam->Bronch("sP1Lab.", "TLorentzVector", &p1Lab, 1024000, 99);
		twbeam->Bronch("sP2Lab.", "TLorentzVector", &p2Lab, 1024000, 99);


		twbeam->Bronch("sACM.", "TLorentzVector", &alphaCM, 1024000, 99);
		twbeam->Bronch("sP1CM.", "TLorentzVector", &p1CM, 1024000, 99);
		twbeam->Bronch("sP2CM.", "TLorentzVector", &p2CM, 1024000, 99);
		twbeam->Bronch("sBeCM.", "TLorentzVector", &beCM, 1024000, 99);


		twbeam->Branch("sTpp", &sTpp, "sTpp/D");
		twbeam->Branch("sTapp", &sTapp, "sTapp/D");
		twbeam->Branch("sCosThetaTk", &sCosThetaTk, "sCosThetaTk/D");
	}


	Info("BeWork::FillBeFile", "In file %s %d events will be processed", inputfile, (int)noEntries);
	Info("BeWork::FillBeFile", "Output file %s will be filled", output.Data());

	for (Int_t i = 0; i < (Int_t)noEntries; i++) {
		printProgBar(i, (Int_t)noEntries);
		fr.cd();
		tr->GetEntry(i);
		if (trbeam) trbeam->GetEntry(i);
		if ( eventr->WriteConditionPure() ) {
			eventw->FillEvent(eventr);
			fw.cd();
			tw->Fill();
			if (twbeam) twbeam->Fill();
		}//if
	}//for
	Info("BeWork::FillBeFile", "%d events containing Be were found", (int)tw->GetEntries());
	printf("\n\n");


	fw.cd();
	tw->AutoSave();
	Info("BeWork::FillBeFile", "Tree \"%s\" with Be events saving", tw->GetName());
	tw->Write();
	if (twbeam) {
		Info("BeWork::FillBeFile", "Tree \"%s\" with beam information saving", twbeam->GetName());
		twbeam->Write();
	}
	delete eventw;
	fw.Close();

	fr.cd();
	delete eventr;
	fr.Close();



	return (Int_t)noEntries;
}

Int_t BeWork::FillBeExpFile(const char *inputfile, const char* outputfile, Long64_t noevents) {
	//fill file containing tree with BePureEvent class structure
	//inputfile:
	//noevents:
	//outputfile: if empty, character sequence "Exp" in inputfile will be changed to "Be"

	TString ifile;
	ifile.Form("%s/%s", fWorkDir.Data(), inputfile);

	TString ofile;
	ofile.Form("%s/%s", fWorkDir.Data(), outputfile);

//	TString output(inputfile);
//	if (strlen(outputfile)) {
//		output = outputfile;
//	}
//	else {
//		output.ReplaceAll("Exp", "Be");
//	}

	const char* rtreename = "be";
	const char* rbranchname = "BePhys";
	const char* wtreename = "beonly";
	const char* wbranchname = "BeEvents";

	return FillBeFile(ifile.Data(), noevents, rtreename, rbranchname, ofile.Data(), wtreename, wbranchname, "");
}

Int_t BeWork::FillBeSimFile(const char *inputfile, const char* outputfile, Long64_t noevents) {
	//inputfile:
	//noevents:
	//outputfile: if empty, character sequence "Exp" in inputfile will be changed to "Be"


	TString ifile = fWorkDir + '/' + inputfile;

	TString ofile = fWorkDir + '/' + outputfile;

	const char* rtreename = "simbe";
	const char* rbranchname = "BeSimPhys";
	const char* wtreename = "simbeonly";
	const char* wbranchname = "BeSimEvents";

	return FillBeFile(ifile.Data(), noevents, rtreename, rbranchname, ofile.Data(), wtreename, wbranchname, "");
}

void BeWork::MixSimBeFiles(const Int_t infiles, const char* treename, ...) {
	// obsolete function which probably won't be developed more
	//
	//dodelat podminku "soubor" && vstupy != 0
	//	if (!i) return 0;

	va_list params;
	va_start(params, treename);

	TString file[infiles];
	Int_t events[infiles];


	for (Int_t i = 0; i < infiles; i++) {
		file[i] = va_arg(params, char*);
		events[i] = va_arg(params, Int_t);
	}
	va_end(params);

	//open output mix file
	BePureEvent *revent = new BePureEvent();
	TFile fw("mixed.root", "RECREATE");
	if (!fw.IsOpen()) {
		Error("BeWork::MixSimBeFiles", "File %s was not opened", "mixed.root");
		return;
	}
	TTree *tw = new TTree(treename, "tree of mixed simulated events");
	//!!!! make possible to mix also BeEvent trees
	tw->Bronch("BeSimMix", "BePureEvent", &revent, 1024000, 99);

	for (Int_t i = 0; i < infiles; i++) {
//		cout << file[i] << endl;
		//file opening
		TFile fr(file[i].Data());
		if (!fr.IsOpen()) {
			Warning("BeWork::MixSimBeFiles", "File \"%s\" was not open", file[i].Data());
			continue;
		}
		TTree *tr = (TTree*)fr.Get(treename);
//		tr->GetListOfBranches()->Print();
		tr->SetBranchAddress("BeSimEvents", &revent);
		Long64_t noEntries = tr->GetEntries(/*getCondition*/);
		if (events[i] != 0 && noEntries > events[i]) { noEntries = events[i]; }
//		tr->GetEntries();
		Info("BeWork::MixSimBeFiles", "%d events from file %s will be processed", (Int_t)noEntries, file[i].Data());
		for (Long64_t j = 0; j < noEntries; j++) {
			BeWork::printProgBar((Int_t)j, (Int_t)noEntries);
			tr->GetEntry(j);
			tw->Fill();
		}//for j
		fr.Close();
		if (fr.IsOpen()) {
			Warning("BeWork::MixSimBeFiles", "File \"%s\" closing error", file[i].Data());
			return;
		}
	}//for i

	fw.cd();
	tw->Write();

	fw.Close();

	return;
}

TTree* BeWork::OpenTree(const char* inputfile, const char* treename,
		const Color_t color, const char* friendtreename)
{
//	open file with saved TTree named "treename"
//	and return pointer to this tree

	TFile *fr = new TFile(inputfile, "READ");
	if (fr->IsOpen() == 0) {
		Warning("FillFile", "File %s was not opened and won't be processed", inputfile);
		return 0;
	}

	TTree *tr = (TTree*)fr->Get(treename);
	if (!tr) {
		Warning("OpenTree", "Tree \"%s\" was not found in file %s", treename, inputfile);
		return 0;
	}

	//add friend
	TString fr_name = friendtreename;
	if ( !fr_name.IsNull() ) {
		tr->AddFriend(fr_name.Data(), fr);
	}

	tr->SetMarkerStyle(20);
	tr->SetLineColor(color);
	tr->SetMarkerColor(color);

	gROOT->cd();

	return tr;
}

TChain* BeWork::OpenChain(const char* inputfile, int first, int last,
		const char* treename, const Color_t color, const char* friendtreename, Option_t* option)
{
	//	open series of files with identical names numbered
	//	from first to last with saved TTree named
	//	"treename" and return pointer to chain constisting
	//	all of this trees

	TString	opt = option;
	opt.ToLower();

	TChain *ch = new TChain(treename);
	Char_t	fileName[100];	//potreba delsi pole ?232?


//	if (opt.Contains("gp")) {

	for (Int_t i = first; i <= last; i++) {
		sprintf(fileName, "%s%03d.root", inputfile, i);
		if (opt.Contains("verbose")) {
			cout << fileName << endl;
		}
		ch->Add(fileName);
	}

	//adding friend chain
	TString fr_name = friendtreename;
	if ( !fr_name.IsNull() ) {
		TChain *fr_ch = new TChain(fr_name.Data());
		TString filename;

		for (Int_t i = first; i <= last; i++) {
			filename.Form("%s%03d.root", inputfile, i);
//			sprintf(fileName, "%s%03d.root", inputfile, i);
//			cout << fileName << endl;
			if (opt.Contains("verbose")) {
				cout << filename << endl;
			}
//			ch->Add(fileName);
			fr_ch->Add(filename.Data());
		}

//		ch->AddFriend(fr_name);
		ch->AddFriend(fr_ch);
	}//if



	ch->SetMarkerStyle(20);
	ch->SetLineColor(color);
	ch->SetMarkerColor(color);

	gROOT->cd();

	return ch;
}

TGeoManager* BeWork::BuildGeometry()
{
	//geometry units are cm

	//dodelat nejakou kontrolu, jestli uz nahodou takova geometrie neexistuje

	TGeoManager *geometry = new TGeoManager("SETUP", "6Be structure experimental setup");

	//materials
	TGeoMaterial *matVacuum = new TGeoMaterial("Vacuum", 0., 0., 0.);
//	static TGeoMaterial *matSi	= new TGeoMaterial("Si", 28.085, 14, 2.332);

	//media
	TGeoMedium *medVacuum = new TGeoMedium("Vacuum", 1, matVacuum);
//	static TGeoMedium *medSi = new TGeoMedium("Si", 2, matSi);

	TGeoVolume *top = geometry->MakeBox("Top", medVacuum, 100., 100., 100.);
	geometry->SetTopVolume(top);
	top->SetLineColor(kMagenta);

	//target
	TGeoVolume *target = MakeTarget();
	target->SetName("target");
	top->AddNode(target, 1);

	//first telescope
	const Double_t z11 = fT1SimPosition;			//in cm
	const Double_t z12 = z11 + 1.;		//10.1;	//in cm		//original value
//	const Double_t z12 = z11 + 0.65;		//10.1;	//in cm
//	const Double_t z13 = z11 + 3.5;		//12.6;	//in cm		//original value
	const Double_t z13 = z11 + 2.9;		//12.6;	//in cm
	TGeoVolume *annDSD1 = MakeAnnularDetector(64, 32, fX11, fX11_FD, fX11_BD);		//backdl (from previous detector) + frontdl = 1.77
	annDSD1->SetName("T11");
	top->AddNode(annDSD1, 1, new TGeoTranslation(0, 0, z11));
	TGeoVolume *annSSD1 = MakeAnnularDetector(64, 1, fX12, fX12_FD, fX12_BD);		//backdl (from previous detector) + frontdl = 1.7 + 2.36 = 4.06 == XD12
	annSSD1->SetName("T12");
	top->AddNode(annSSD1, 1, new TGeoTranslation(0, 0, z12));
	TGeoVolume *annCsI1 = MakeCsIDetector();								//backdl (from previous detector) + frontdl = 2. + ?? = ??? ==
//	TGeoVolume *annCsI1 = MakeCsIDetectorMS("T13");
	annCsI1->SetName("T13");
	top->AddNode(annCsI1, 1, new TGeoTranslation(0., 0., z13));
//*/
	//second telescope
	const Double_t z21 = fT2SimPosition;			//in cm
	const Double_t z22 = z21 + 1.;		//31.1;	//in cm		//original value
//	const Double_t z22 = z21 + 0.65;		//31.1;	//in cm
//	const Double_t z23 = z21 + 3.5;		//33.6;	//in cm		//original value
	const Double_t z23 = z21 + 2.9;		//33.6;	//in cm

	TGeoVolume *annDSD2 = MakeAnnularDetector(64, 32, fX21, fX21_FD, fX21_BD);	//!!!!!! thickness of T21 was changed !!!!!!
	annDSD2->SetName("T21");
	top->AddNode(annDSD2, 1, new TGeoTranslation(0, 0, z21));
	TGeoVolume *annSSD2 = MakeAnnularDetector(64, 1, fX22, fX22_FD, fX22_BD);
	annSSD2->SetName("T22");
	top->AddNode(annSSD2, 1, new TGeoTranslation(0, 0, z22));
	TGeoVolume *annCsI2 = MakeCsIDetector();
//	TGeoVolume *annCsI2 = MakeCsIDetectorMS("T23");
	annCsI2->SetName("T23");
	top->AddNode(annCsI2, 1, new TGeoTranslation(0., 0., z23));


	geometry->CloseGeometry();

	Info("BeWork::BuildGeometry", "Distances in virtual setup: zT11 = %4.1f cm zT21 = %4.1f cm", fT1SimPosition, fT2SimPosition);

	return geometry;
}

TGeoVolume* BeWork::MakeAnnularDetector(Int_t nosecs, Int_t norings,
		Double_t thickness, Double_t fdeadlayer, Double_t bdeadlayer)
{
	//nosecs:	number of sectors
	//norings: number of rings
	//thickness: detector thickness in microns
	//fdeadlayer: frontside deadlayer thickness in microns
	//bdeadlayer: backside deadlayer thickness in microns



	//annular detector
	const Double_t	siThickness = thickness*MicToCm();
	const Double_t	frontdl = fdeadlayer*MicToCm();
	const Double_t	backdl = bdeadlayer*MicToCm();
	const Double_t	sSiRmin = 1.6;		//r_min of sensitive region in cm
	const Double_t	sSiRmax = 4.2;		//r_max of sensitive region in cm
	const Double_t	siRmin = 1.4;		//r_min of Si plate in cm
//	const Double_t	siRmin = 1.6;		//r_min of Si plate in cm, version of MS
	Double_t	deskThickness = 0.38;
	if (siThickness > deskThickness) { deskThickness = siThickness; }
//	const Double_t	dist = 0.01;		//in cm; distance between two neighbourgh rings or sectors			//!!!!!!!!!! original value
	const Double_t	dist = 0.00001;		//in cm; distance between two neighbourgh rings or sectors			//!!!!!!!!!! almost zero
//	const Double_t	dist = 1.;		//distance between two neighbourgh rings or sectors

	//materials
	TGeoMaterial *matVacuum = new TGeoMaterial("Vacuum", 0., 0., 0.);
	/*static*/ TGeoMaterial *matSi	= new TGeoMaterial("Si", 28.085, 14, 2.332);

	//media
	TGeoMedium *medVacuum = new TGeoMedium("Vacuum", 1, matVacuum);
	/*static*/ TGeoMedium *medSi = new TGeoMedium("Si", 2, matSi);

//	cout << endl << endl;
//	printf("\t%3.3f\t%3.3f\n", deskThickness, siThickness);
//	cout << endl << endl;

	//detector box
//	TGeoBBox *detbox = new TGeoBBox(sSiRmax + 1., sSiRmax + 1., deskThickness);
	TGeoBBox *detbox = new TGeoBBox(sSiRmax + 1., sSiRmax + 1., siThickness/2.+0.1);
	TGeoVolume *annSSD = new TGeoVolume("annSSD", detbox, medVacuum);

	TGeoTube *senslayer = new TGeoTube(siRmin, sSiRmax, siThickness/2.);
	TGeoVolume *siDisc = new TGeoVolume("discSi", senslayer,  medSi);
	siDisc->SetLineColor(3);
	annSSD->AddNode(siDisc, 1);

	/////////////
	////rings
	/////////////
	TGeoTube *ringtube = new TGeoTube(sSiRmin, sSiRmax, backdl/2.);
	TGeoVolume *rlayer = new TGeoVolume("rlayer", ringtube, medVacuum);

	Double_t rmin = 0, rmax = 0;

	for (Int_t i = 0; i < norings; i++) {
		rmin = sSiRmin + i*(sSiRmax-sSiRmin)/norings;
		rmax = sSiRmin + (i+1)*(sSiRmax-sSiRmin)/norings - dist;
		TGeoTube *shapering = new TGeoTube(rmin, rmax, backdl/2.);
		TGeoVolume *ring = new TGeoVolume("ring", shapering, medSi);
		ring->SetLineColor(2);
		rlayer->AddNode(ring, i);
	}

	annSSD->AddNode(rlayer, 1, new TGeoTranslation(0, 0, siThickness/2.+backdl/2.));

	////////////////
	//// sectors
	////////////////
	const Double_t tubsphi = 180./nosecs;

//	cout << tubsphi << endl;

	TGeoTube *sectube = new TGeoTube(sSiRmin, sSiRmax, frontdl/2.);
	TGeoVolume *slayer = new TGeoVolume("slyer", sectube, medVacuum);

	//sensitive strip
	TGeoTubeSeg *tubesec = new TGeoTubeSeg(sSiRmin, sSiRmax, frontdl/2., -tubsphi, tubsphi);
	tubesec->SetName("tubesec");
	TGeoBBox *space = new TGeoBBox(sSiRmax, dist/2., frontdl);
	space->SetName("space");

	TGeoUnion *sub1 = new TGeoUnion(space, space, new TGeoRotation("r1", tubsphi, 0, 0), new TGeoRotation("r2", -tubsphi, 0, 0));
	TGeoCompositeShape *cs1 = new TGeoCompositeShape("cs1", sub1);
	TGeoSubtraction *sub2 = new TGeoSubtraction(tubesec, cs1, 0, 0);
	TGeoCompositeShape *ssec = new TGeoCompositeShape("ssec", sub2);
	TGeoVolume *senssec = new TGeoVolume("senssec", ssec, medSi);
	senssec->SetLineColor(2);

	for (Int_t i = 0; i < nosecs; i++) {
		slayer->AddNode(senssec, i, new TGeoRotation("secrot", 2*i*tubsphi+tubsphi, 0, 0));
	}

	TGeoRotation platerot("platerot", 90, 180, 0);
	TGeoTranslation platetrans("platetrans", 0, 0, -(siThickness/2.+frontdl/2.));
	annSSD->AddNode(slayer, 1, new TGeoCombiTrans(platetrans, platerot) );

	return annSSD;
}

TGeoVolume* BeWork::MakeCsIDetector()
{
	//all sizes are in cm

	//one CsI sector parameters
	const Double_t segX1 = 1.8;		//size of outer edge
	const Double_t segX2 = 0.6;		//size of inner edge
	const Double_t segY = 1.9;		//thickness
	const Double_t segZ = 3.0;		//length from the center to the edge
	const Double_t rIn = 3.75;		//diameter of the holel; radius = 1.875 cm
	const Double_t phisec = 180./16.;
//	const Double_t fdl = 12.;

	//materials
	TGeoMaterial *matVacuum = new TGeoMaterial("Vacuum", 0., 0., 0.);
	TGeoMaterial *matSi	= new TGeoMaterial("Si", 28.085, 14, 2.332);

	//media
	TGeoMedium *medVacuum = new TGeoMedium("Vacuum", 1, matVacuum);
	TGeoMedium *medSi = new TGeoMedium("Si", 2, matSi);

//	cout << endl << endl;
//	printf("\t%3.3f\t%3.3f\t%3.3f\n", rIn + segZ + 1., segY/2.+0.2, rIn/2. + segZ/2.);
//	cout << endl << endl;

	TGeoBBox *detbox = new TGeoBBox(rIn + segZ + 1., rIn + segZ + 1., segY/2.+0.2);
	TGeoVolume *annDet = new TGeoVolume("annDet", detbox, medVacuum);

	TGeoTrd1 *csI = new TGeoTrd1(segX1/2., segX2/2., segY/2., segZ/2.);
	TGeoVolume *csSec = new TGeoVolume("csSec", csI, medSi);
	csSec->SetLineColor(kGray+1);

	Double_t phi = 0;



	for (Int_t i = 0; i < 16; i++) {
		phi = 2*i*phisec+phisec;
		TGeoRotation platerot("platerot", -phi, 90., 0.);
		TGeoTranslation platetrans("platetrans", (rIn/2. + segZ/2.)*TMath::Sin(phi*TMath::DegToRad()), (rIn/2. + segZ/2.)*TMath::Cos(phi*TMath::DegToRad()), 0);
		annDet->AddNode(csSec, i, new TGeoCombiTrans(platetrans, platerot));
	}

	return annDet;
}

TGeoVolume* BeWork::MakeCsIDetectorMS(TString name)
{
	//all sizes are in cm
	const Int_t nosecs = 16;
	const Double_t	siThickness = 1.9;
//	const Double_t	frontdl = 4.;
//	const Double_t	backdl = 4.;
	const Double_t	sSiRmin = 1.6;		//r_min of sensitive region in cm
	const Double_t	sSiRmax = 4.2;		//r_max of sensitive region in cm
//	const Double_t	siRmin = 1.4;		//r_min of Si plate in cm
	Double_t	deskThickness = 0.38;
	if (siThickness > deskThickness) { deskThickness = siThickness; }
	//	const Double_t	dist = 0.01;		//in cm; distance between two neighbourgh rings or sectors			//!!!!!!!!!! original value
	const Double_t	dist = 0.0001;		//in cm; distance between two neighbourgh rings or sectors			//!!!!!!!!!! almost zero
	//	const Double_t	dist = 1.;		//distance between two neighbourgh rings or sectors


	//materials
	TGeoMaterial *matVacuum = new TGeoMaterial("Vacuum", 0., 0., 0.);
	TGeoMaterial *matSi	= new TGeoMaterial("Si", 28.085, 14, 2.332);

	//media
	TGeoMedium *medVacuum = new TGeoMedium("Vacuum", 1, matVacuum);
	TGeoMedium *medSi = new TGeoMedium("Si", 2, matSi);

	TGeoBBox *detbox = new TGeoBBox(sSiRmax + 1., sSiRmax + 1., siThickness/2.+0.1);
	TGeoVolume *annDet = new TGeoVolume("annDet", detbox, medVacuum);


	////////////////
	//// sectors
	////////////////
	const Double_t tubsphi = 180./nosecs;

	//	cout << tubsphi << endl;

	TGeoTube *sectube = new TGeoTube(sSiRmin, sSiRmax, siThickness/2.);
	TGeoVolume *slayer = new TGeoVolume(name.Data(), sectube, medVacuum);

	//sensitive strip
	TGeoTubeSeg *tubesec = new TGeoTubeSeg(sSiRmin, sSiRmax, siThickness/2., -tubsphi, tubsphi);
	tubesec->SetName("tubesec");
	TGeoBBox *space = new TGeoBBox(sSiRmax, dist/2., siThickness);
	space->SetName("space");

	TGeoUnion *sub1 = new TGeoUnion(space, space, new TGeoRotation("r1", tubsphi, 0, 0), new TGeoRotation("r2", -tubsphi, 0, 0));
	TGeoCompositeShape *cs1 = new TGeoCompositeShape("cs1", sub1);
	TGeoSubtraction *sub2 = new TGeoSubtraction(tubesec, cs1, 0, 0);
	TGeoCompositeShape *ssec = new TGeoCompositeShape("ssec", sub2);
	TGeoVolume *csSec = new TGeoVolume("csSec", ssec, medSi);
	csSec->SetLineColor(kGray+1);

	for (Int_t i = 0; i < nosecs; i++) {
		slayer->AddNode(csSec, i, new TGeoRotation("secrot", 2*i*tubsphi+tubsphi, 0, 0));
	}

	TGeoRotation platerot("platerot", 90, 180, 0);
	TGeoTranslation platetrans("platetrans", 0., 0., 0.);
	annDet->AddNode(slayer, 1, new TGeoCombiTrans(platetrans, platerot) );






//	TGeoTrd1 *csI = new TGeoTrd1(segX1/2., segX2/2., segY/2., segZ/2.);
//	TGeoVolume *csSec = new TGeoVolume("csSec", csI, medSi);
//	csSec->SetLineColor(kGray+1);

//	Double_t phi = 0;



//	for (Int_t i = 0; i < 16; i++) {
//		phi = 2*i*phisec+phisec;
//		TGeoRotation platerot("platerot", -phi, 90., 0.);
//		TGeoTranslation platetrans("platetrans", (rIn/2. + segZ/2.)*TMath::Sin(phi*TMath::DegToRad()), (rIn/2. + segZ/2.)*TMath::Cos(phi*TMath::DegToRad()), 0);
//		annDet->AddNode(csSec, i, new TGeoCombiTrans(platetrans, platerot));
//	}

	return annDet;
}

TGeoVolume* BeWork::MakeTarget()
{
	//one CsI sector parameters
	const Double_t rmin = 0.;
	const Double_t rmax = 2.;
	const Double_t dz = (T_THICKNESS+T_WIN_THICK*2)/10000;	//from mcm to cm
	const Double_t d_mat = T_THICKNESS/10000;	//from mcm to cm

	//materials
	TGeoMaterial *matVacuum = new TGeoMaterial("Vacuum", 0., 0., 0.);
//	TGeoMaterial *matSi	= new TGeoMaterial("Si", 28.085, 14, 2.332);

	//media
	TGeoMedium *medVacuum = new TGeoMedium("Vacuum", 1, matVacuum);
//	TGeoMedium *medSi = new TGeoMedium("Si", 2, matSi);

	//stainless steel box for target material
	TGeoTube *tartube = new TGeoTube(rmin, rmax, dz/2.);
	TGeoVolume *target = new TGeoVolume("target", tartube, medVacuum);
	target->SetLineColor(kGray);

	//target material
	TGeoTube *tar_mat_tube = new TGeoTube(rmin, rmax, d_mat/2.);
	TGeoVolume *tar_mat = new TGeoVolume("tarmaterial", tar_mat_tube, medVacuum);
	tar_mat->SetLineColor(kBlue);
	target->AddNode(tar_mat, 1);

	return target;
}

void BeWork::FillSimFile(const char* outputfile, const Int_t noevents, const char* generator, Option_t *opt,
		Double_t beThetaMin, Double_t beThetaMax,
		UInt_t gseed/*, const char* cutfile*/)
{
	//TTree "simbe" will be filled and saved into outputfile, tree "simbe" contains two branches, "BeSimPhys" with virtually detected particles coming
	//	out of investigated reaction and the branch "BeSimKin" with whole kinematic information
	//outputfile:
	//noevents: number of simulated events, if 0 then all events from generator
	//generator: name of file with generated impulses
	//gseed: seed for beam position random generator
	//opt: root file option
	//beamX: x coordinate position of the center of beam in cm
	//beamY: y coordinate position of the center of beam in cm
	//beamXfwhm: x width of beam in cm
	//beamYfwhm: y width of beam in cm
	//beThetaMin: minimum thetaBe in CM in
	//beThetaMax: maximum thetaBe in CM in
	//beamenergy: beam energy in MeV
	//beamtheta: beam inclination in rad
	//beamphi: beam inclination in rad


	TString ofile = fWorkDir + '/' + outputfile;
//	cout << ofile.Data() << endl;

	TGeoManager *geom = BuildGeometry();

	BeEvent *simevent = new BeEvent(fConfigFile);	//fixme initialize fCutsFile

	//output file containing tree of two branches
	TFile *fw = new TFile(ofile.Data(), opt);
	if (!fw) {
		Error("BeWork::FillSimFile", "File %s was not created", ofile.Data());
		return;
	}
	TTree *tw = new TTree("simbe", "tree of simulated events");
	tw->Bronch("BeSimPhys", "BeEvent", &simevent, 1024000, 99);		//velky buffer	!!!!!!!!!!!!!!!velky problem s vetvi, prilis komprimovana informace

	//beam position information in Friend Tree
	TTree *tbeam = new TTree("sbeam", "tree with beam position");

	//uzavreno v cyklu
	Int_t noEntries = 0;
	TString gen = generator;
	if (gen.Length() != 0) {
		noEntries = CountLines(generator);
		if (noevents != 0 && noEntries > noevents) { noEntries = noevents; }
		Info("BeWork::FillSimFile", "File \"%s\" will be used as generator", generator);
		Info("BeWork::FillSimFile", "In file %s %d events will be processed", fw->GetName(), noEntries);
	}//if
	else {
		Info("BeWork::FillSimFile", "In file %s %d events will be processed", fw->GetName(), noevents);
	}
	Info("BeWork::FillSimFile", "Output file %s will be filled", fw->GetName());

	MonteCarloState(noevents, generator, tw, simevent, geom,
			tbeam, beThetaMin, beThetaMax, gseed);

//	dodelat dalsi dva generatory			------ jake?

	fw->cd();
	tw->Write();
	tbeam->Write();
	fw->Close();

	delete geom;
	delete simevent;

	return;
}

void BeWork::MonteCarloState(const Int_t noevents, const char* generator, TTree *writetree, BeEvent *besimevent, TGeoManager *geometry,
		TTree *beampos,	Double_t reactionAngleMin, Double_t reactionAngleMax, UInt_t gseed)
{
	//if generator =NULL, default internal generator will be used
	//promenne: simevent, reaction
	//			energy losses
	//beamenergy: in MeV
	//beamtheta: in rad
	//beamphi: in rad
	//reactionAngleMin: in rad
	//reactionAngleMax: in rad

	Info("BeWork::MonteCarloState", "Function was called");

	TString g(generator);
	ifstream gen;
	//generator file opening
	if (!g.IsNull()) {
		gen.open(g.Data());
		if (!gen.is_open()) {
			Error("BeWork::MonteCarloState", "Physical generator was not opened!");
			return;
		}//if
	}//if

	//variables for use with generator
	Double_t E, p_alpha[3], p_p1[3], p_p2[3], thetaCM;	//E is mass or exc. energy of Be, thetaCM is angle of (p,n) reaction

	//uzavreno v cyklu
	Int_t noEntries = 0;
	if (gen.is_open()) {
		noEntries = CountLines(generator);
		if (noevents != 0 && noEntries > noevents) { noEntries = noevents; }
		Info("BeWork::MonteCarloState", "%d events will be processed", noEntries);
	}//if
	else {
		noEntries = noevents;
		Info("BeWork::MonteCarloState", "%d events will be processed", noEntries);
	}


//	Int_t noEntries = CountLines(generator);
//	if (noevents != 0 && noEntries > noevents) { noEntries = noevents; }
//	Info("BeWork::FillSimFile", "In file %s %d events will be processed", fw->GetName(), noEntries);
//	Info("BeWork::FillSimFile", "Output file %s will be filled", fw->GetName());

	//beam size and position: change to function parameter
	TRandom3 ranPosition(gseed);
	TRandom3 ranEnergy(gseed+1);
	TRandom3 ranThetaCM(gseed+3);
	Double_t x = fBeamX_MC;
	Double_t y = fBeamY_MC;
	Double_t z = 0;
	Double_t beamT = 0.;
	beampos->Branch("bx", &x, "bx/D");
	beampos->Branch("by", &y, "by/D");
	beampos->Branch("bz", &z, "bz/D");
	beampos->Branch("thetaMC", &thetaCM, "thetaMC/D");
	beampos->Branch("E_IM", &E, "E_IM/D");

	Double_t stateRatio = 0.;
	beampos->Branch("sRatio", &stateRatio, "sRatio/D");

	TLorentzVector *beamLab = new TLorentzVector();
	TLorentzVector *alphaLab = new TLorentzVector();
	TLorentzVector *p1Lab = new TLorentzVector();
	TLorentzVector *p2Lab = new TLorentzVector();
	beampos->Bronch("beamLab.", "TLorentzVector", &beamLab, 1024000, 99);
	beampos->Bronch("sALab.", "TLorentzVector", &alphaLab, 1024000, 99);
	beampos->Bronch("sP1Lab.", "TLorentzVector", &p1Lab, 1024000, 99);
	beampos->Bronch("sP2Lab.", "TLorentzVector", &p2Lab, 1024000, 99);

	TLorentzVector *alphaCM = new TLorentzVector();
	TLorentzVector *p1CM = new TLorentzVector();
	TLorentzVector *p2CM = new TLorentzVector();
	TLorentzVector *beCM = new TLorentzVector();
	beampos->Bronch("sACM.", "TLorentzVector", &alphaCM, 1024000, 99);
	beampos->Bronch("sP1CM.", "TLorentzVector", &p1CM, 1024000, 99);
	beampos->Bronch("sP2CM.", "TLorentzVector", &p2CM, 1024000, 99);
	beampos->Bronch("sBeCM.", "TLorentzVector", &beCM, 1024000, 99);

	//Jacobi "T" system
	const Double_t MTx = BeEvent::ReducedMass(kPMASS, kPMASS);
	const Double_t MTy = BeEvent::ReducedMass(kPMASS + kPMASS, kAMASS);
	TVector3 kTx;
	TVector3 kTy;

	Double_t sTpp;
	Double_t sTapp;
	Double_t sCosThetaTk;
	beampos->Branch("sTpp", &sTpp, "sTpp/D");
	beampos->Branch("sTapp", &sTapp, "sTapp/D");
	beampos->Branch("sCosThetaTk", &sCosThetaTk, "sCosThetaTk/D");

	//Jacobi "Y" system
	const Double_t MYx = BeEvent::ReducedMass(kPMASS, kAMASS);
	const Double_t MYy = BeEvent::ReducedMass(kPMASS + kAMASS, kPMASS);
	TVector3 kYx;
	TVector3 kYy;

	Double_t sTap;
	Double_t sTpap;
	Double_t sCosThetaYk;
	beampos->Branch("sTap", &sTap, "sTap/D");
	beampos->Branch("sTpap", &sTpap, "sTpap/D");
	beampos->Branch("sCosThetaYk", &sCosThetaYk, "sCosThetaYk/D");

	BeReaction reaction;

	//detectors resolution
	TRandom3 *detres = new TRandom3();
	TRandom3 *proton_mix = new TRandom3();

//	const Double_t beamResolution =

	for (Int_t i = 0; i < noEntries; i++) {
//		cout << i << endl;
		printProgBar(i, noEntries);
		//particle tracking
		besimevent->Reset();
		reaction.Reset();

		//reaction position in the thickness of the target
		z = ranPosition.Uniform(-T_THICKNESS/10000./2., T_THICKNESS/10000./2.);		//in cm
		beamT = ranEnergy.Gaus(fTBeamMC*6, fTBeamResMC);
		beamT = fTargetLi->GetE(beamT, z*CmToMic());
		beamLab->SetPxPyPzE(0., 0., TMath::Sqrt(BeEvent::PC2(beamT, kLiMASS)),
				beamT + kLiMASS);
//		printf("%3.2f\t%3.2f\n", beamLab->E(), beamT + kLiMASS);
//		printf("%3.2f\t%3.2f\n", beamLab->Pz(), TMath::Sqrt(BeEvent::PC2(beamT, kLiMASS)));
//		cout << beamLab->Px() << endl
//				<< beamLab->Py() << endl;
//		cout << beamT << endl;
//		Info("BeWork::MonteCarloState", "beam z is %f mic, beam energy is %f MeV", z*CmToMic(), benergy);
//		Info("BeWork::MonteCarloState",
//				"beam z is %f mic, beam energy is %f MeV\n", -z * CmToMic(),
//				fTargetLi->GetE0(beamenergy, -z * CmToMic()) );

		//phase volume
		if (g.IsNull()) {
//			reaction.FillProcess(beamenergy, 0., 0.);			//pomala fce
			reaction.FillProcess(beamT, 0., 0.);			//pomala fce
			thetaCM = reaction.fLip.GetThetaCM();
			E = reaction.fLip.GetMa();
		}
		//generator
		else {
			if (gen.good()) {
				gen >> E >> p_alpha[0] >> p_alpha[1] >> p_alpha[2] >>
							p_p1[0] >> p_p1[1] >> p_p1[2] >>
							p_p2[0] >> p_p2[1] >> p_p2[2] >> stateRatio;
				if (E > 20) continue;		//to high energies cannot be populated with our low energy beam
				//fixme beam energy is different for different z
//				reaction.FillProcess(beamenergy, 0., 0., p_alpha, p_p1, p_p2, reactionAngleMin, reactionAngleMax);

				if (stateRatio < fsRatioMin || stateRatio > fsRatioMax) continue;	//to omit unusable events from generator

				alphaCM->SetPxPyPzE(p_alpha[0], p_alpha[1], p_alpha[2],
						BeEvent::T(
								Power(p_alpha[0], 2) + Power(p_alpha[1], 2)
										+ Power(p_alpha[2], 2), kAMASS) + kAMASS);
				p1CM->SetPxPyPzE(p_p1[0], p_p1[1], p_p1[2],
						BeEvent::T(
								Power(p_p1[0], 2) + Power(p_p1[1], 2)
								+ Power(p_p1[2], 2), kPMASS) + kPMASS);
				p2CM->SetPxPyPzE(p_p2[0], p_p2[1], p_p2[2],
						BeEvent::T(
								Power(p_p2[0], 2) + Power(p_p2[1], 2)
								+ Power(p_p2[2], 2), kPMASS) + kPMASS);
				*beCM = *p1CM + *p2CM + *alphaCM;

				//Jacobi "T" system
				kTx = (p1CM->Vect() - p2CM->Vect()) * 0.5;
				kTy =
						(4. * (p1CM->Vect() + p2CM->Vect())
								- 2. * alphaCM->Vect()) * (1. / 6.);

				sTpp = kTx.Mag2() / (2 * MTx);
				sTapp = kTy.Mag2() / (2 * MTy);
				sCosThetaTk = kTx.Dot(kTy) / (kTx.Mag() * kTy.Mag());

				//Jacobi "Y" system
				kYx = (4. * p1CM->Vect() - alphaCM->Vect()) * (1./5.);
				kYy = ((p1CM->Vect() + alphaCM->Vect())
								- 5. * p2CM->Vect()) * (1. / 6.);

				sTap = kYx.Mag2() / (2 * MYx);
				sTpap = kYy.Mag2() / (2 * MYy);
				sCosThetaYk = kYx.Dot(kYy) / (kYx.Mag() * kYy.Mag());

				thetaCM = ranThetaCM.Uniform(reactionAngleMin, reactionAngleMax);
//				reaction.FillProcess(beamT, 0., 0., p_alpha, p_p1, p_p2,
//						reactionAngleMin, reactionAngleMax);
				reaction.FillProcess(beamT, 0., 0., p_alpha, p_p1, p_p2,
						thetaCM);
				if (!gen.good()) {
					Warning("BeWork::FillSimKinFile", "End of file %s was reached at %d event ", generator, i);
					break;
				}//if
			}//if
		}//else

		TLorentzVector vAlpha(reaction.GetAlpha());
		TLorentzVector vP1;
		TLorentzVector vP2;


		if (proton_mix->Uniform() < 0.5) {
			vP1 = reaction.GetP1();
			vP2 = reaction.GetP2();
		}
		else {
			vP1 = reaction.GetP2();
			vP2 = reaction.GetP1();
		}

//		alphaT = vAlpha.E() - kAMASS;
//		p1T = vP1.E() - kPMASS;
//		p2T = vP2.E() - kPMASS;

		//beam position
		//beam size
		//Gauss
		x = ranPosition.Gaus(fBeamX_MC, fBeamX_sigma_MC);
		y = ranPosition.Gaus(fBeamY_MC, fBeamY_sigma_MC);
		//rectangle (square)
//		x = ranPosition.Uniform(-beamXfwhm, beamXfwhm);		//Gaus(beamX, beamXfwhm/2.35);
//		y = ranPosition.Uniform(-beamYfwhm, beamYfwhm);

		//reaction position in the thickness of the target
//		z = ranPosition.Uniform(-T_THICKNESS/10000./2., T_THICKNESS/10000./2.);		//in cm
//		Info("BeWork::MonteCarloState", "beam z is %f", z*CmToMic());
		//elipse (circle) is not possible
		//should be treated on level of TCut

//		Info("BeWork::MonteCarloState", "Input energy of alpha is %f", alphaT);

		*alphaLab = vAlpha;
		*p1Lab = vP1;
		*p2Lab = vP2;

		ParticleTracking(&vAlpha, 24,
				geometry, besimevent, detres, x, y, z);	//funguje pomerne rychle
		ParticleTracking(&vP1, 11,
				geometry, besimevent, detres, x, y, z);
		ParticleTracking(&vP2, 11,
				geometry, besimevent, detres, x, y, z);

		//work with energies to fill the all BeEvent variables
		besimevent->SetDeltaE();
		besimevent->SetHits();

//		fw->cd();

//		writetree->Fill();			//	pomala funkce
//		beampos->Fill();


		if (fBeOnly) {
			if (besimevent->WriteCondition()) {
				writetree->Fill();
				beampos->Fill();
			} //zkontrolovat
		} else {
			writetree->Fill();			//	pomala funkce
			beampos->Fill();
		}

	}//for all events

	//closing of generator file
	if (!g.IsNull()) {
		gen.close();
		if (gen.is_open()) {
			Warning("BeWork::FillSimKinFile", "File %s closing error\n", generator);
		}//if
	}//if

	//delete all TLorentzVectors:
	//fixme

	delete detres;
	delete proton_mix;

	delete beamLab;
	delete alphaLab;
	delete p1Lab;
	delete p2Lab;

	delete alphaCM;
	delete p1CM;
	delete p2CM;

	return;
}

void BeWork::ParticleTracking(const TLorentzVector *particle, const Int_t pID,
		TGeoManager *geom, BeEvent *event, TRandom3 *detres,
		Double_t beamX, Double_t beamY, Double_t beamZ)
{
	//particle: treated particle
	//silosses: object for energy losses calculations in Si detectors
	//csilosses: object for energy losses calculations in CsI(Tl) detectors
	//geom: geometry to be used
	//event: object of event class to be filled
	//detres:
	//beamX: in cm
	//beamY: in cm

	Double_t kinE0 = 0;

	TELoss *silosses;
	TELoss *csilosses;
	TELoss *targetlosses;
	TELoss *target_win_losses;

	if (pID == kPROTON) {	//proton
		kinE0 = particle->E() - kPMASS;
		silosses = fSiP;
		csilosses = fCsIP;
		targetlosses = fTargetP;
		target_win_losses = fTargetWinP;
	}
	else {
		if (pID == kALPHA) {	//alpha
			kinE0 = particle->E() - kAMASS;
			silosses = fSiAlpha;
			csilosses = fCsIAlpha;
			targetlosses = fTargetAlpha;
			target_win_losses = fTargetWinAlpha;
		}
		else {
			Info("BeWork::ParticleTracking",
					"I can only track either protons or alphas.");
			return;
		}
	}//else
	Double_t kinE = 0;
	const Double_t cos_theta = TMath::Cos(particle->Theta());

	TVector3 pardir(particle->Vect().Unit());	//particle direction
	geom->InitTrack(beamX, beamY, beamZ, pardir.Px(), pardir.Py(), pardir.Pz());

	TString anode;
	Double_t dist;	//in cm
	TString detector;	//mother node
	Int_t	ring, sec;
	const Int_t kNoStrip = -1;
	Double_t deltaE = 0;
	const Double_t fdlCsI = fX13_FD;	//in mcm
//	const Double_t fdlCsI = 1.;	//in mcm

	while (!geom->IsOutside()) {
		if (kinE0 == 0) {
			break; }
		geom->FindNextBoundary();
		ring = kNoStrip;
		sec = kNoStrip;
		while (geom->GetMother()) {	//inside Si detector	//XXX problem: overit
															//funguje, pouze pokud se castice nezastavi, jinak se zasekne
			geom->FindNextBoundary();
			anode = geom->FindNode()->GetName();
			if (anode.Contains("senssec") ) {	//as dead layer
				//energy losses in front dead layer of Si detector
				sec = geom->FindNode()->GetNumber();
				dist = geom->GetStep();
//				cout << dist << endl;
				kinE0 = silosses->GetE(kinE0, CmToMic()*dist);
			}//if
			if (anode.Contains("discSi") ) {
				//energy losses in sensitive layer of Si detector
				dist = geom->GetStep();
				kinE = silosses->GetE(kinE0, CmToMic()*dist);
				deltaE = kinE0 - kinE;
				kinE0 = kinE;
				detector = geom->GetMother()->GetName();	//used to identify detector
															//for write the energy
			}//if
			if (anode.Contains("ring") ) {	//as dead layer
				//energy losses in back dead layer of Si detector
				ring = geom->FindNode()->GetNumber();
				dist = geom->GetStep();
				kinE0 = silosses->GetE(kinE0, CmToMic()*dist);
			}//if
			if (anode.Contains("csSec") ) { 	//energy losses in CsI detector
//				cout << "CsI" << endl;
				sec = geom->FindNode()->GetNumber();
				ring = 0;
				//dead layer
				kinE0 = csilosses->GetE(kinE0, fdlCsI/cos_theta);
				//sensitive layer
				dist = geom->GetStep();
				kinE = csilosses->GetE(kinE0, CmToMic()*dist);
				deltaE = kinE0 - kinE;
				kinE0 = kinE;
				detector = geom->GetMother()->GetName();		//used to identify detector
																//for write the energy

//				printf("CsI: %d\t%3.2f\t%3.2f\t%s\n", sec, dist, deltaE, detector.Data());


			}//if
			if (anode.Contains("tarmaterial") ) { 	//energy losses in target
				dist = geom->GetStep();
				kinE0 = targetlosses->GetE(kinE0, CmToMic()*dist);
			}//if
			if (anode.Contains("target") ) { 	//energy losses in target windows
				dist = geom->GetStep();
				kinE0 = target_win_losses->GetE(kinE0, CmToMic()*dist);
			}//if

			geom->Step();
		}//while inside detector

		Double_t E_write;

		//write in the simulated energy deposites
		if ( event && (sec != kNoStrip) && (ring != kNoStrip) ) {
			//first telescope
			if (detector.Contains("T11")) {
				E_write = deltaE + detres->Gaus(0., fSiRes);			//calculated energy loss + detector resolution
				if (E_write >= event->calSi->fC[3][0]) event->fT11.fESec[sec/2] = E_write;
				E_write = deltaE + detres->Gaus(0., fSiRes);			//calculated energy loss + detector resolution
				if (E_write >= event->calSi->fC[5][0]) event->fT11.fERing[ring] = E_write;
			}//if T11
			if (detector.Contains("T12")) {
				E_write = deltaE + detres->Gaus(0., fSiRes);			//calculated energy loss + detector resolution
				if (E_write >= event->calSi->fC[13][sec/4]) event->fT12.fESec[sec/4] = E_write;
				event->fTau[0][sec/4] = 90.;
			}//if T12
			if (detector.Contains("T13")) {
				if (deltaE*fCsIResA>fCsIBestResA) E_write = deltaE + deltaE*detres->Gaus(0., fCsIResA/2.35); 		//pro alfy				//calculated energy loss + detector resolution
				else E_write = deltaE + deltaE*detres->Gaus(0., fCsIBestResA/2.35);
				if (E_write >= event->calCsIa->fD[15][sec])	event->fE13aSec[sec] = E_write;
				if (deltaE*fCsIResP>fCsIBestResP) E_write = deltaE + deltaE*detres->Gaus(0., fCsIResP/2.35);								//calculated energy loss + detector resolution
				else E_write = deltaE + deltaE*detres->Gaus(0., fCsIBestResP/2.35);
				if (E_write >= event->calCsIp->fD[15][sec]) event->fE13pSec[sec] = E_write;
			}//if T13

			//second telescope
			if (detector.Contains("T21")) {
				E_write = deltaE + detres->Gaus(0., fSiRes);			//calculated energy loss + detector resolution
				if (E_write >= event->calSi->fC[8][0]) event->fT21.fESec[sec/2] = E_write;
				E_write = deltaE + detres->Gaus(0., fSiRes);			//calculated energy loss + detector resolution
				if (ring < 16 && E_write >= event->calSi->fC[10][0]) event->fT21.fERing[ring] = E_write;
				if (ring > 15 && E_write >= event->calSi->fC[11][0]) event->fT21.fERing[ring] = E_write;
			}//if T21
			if (detector.Contains("T22")) {
				E_write = deltaE + detres->Gaus(0., fSiRes);			//calculated energy loss + detector resolution
				if (E_write >= event->calSi->fC[14][sec/4]) event->fT22.fESec[sec/4] = E_write;
				event->fTau[1][sec/4] = 90.;
			}//if T22
			if (detector.Contains("T23")) {
				if (deltaE*fCsIResA>fCsIBestResA) E_write = deltaE + deltaE*detres->Gaus(0., fCsIResA/2.35); 		//pro alfy				//calculated energy loss + detector resolution
				else E_write = deltaE + deltaE*detres->Gaus(0., fCsIBestResA/2.35);
				if (E_write >= event->calCsIa->fD[16][sec]) event->fE23aSec[sec] = E_write;
				if (deltaE*fCsIResP>fCsIBestResP) E_write = deltaE + deltaE*detres->Gaus(0., fCsIResP/2.35);								//calculated energy loss + detector resolution
				else E_write = deltaE + deltaE*detres->Gaus(0., fCsIBestResP/2.35);
				if (E_write >= event->calCsIp->fD[16][sec]) event->fE23pSec[sec] = E_write;
			}//if T23
		}//if writein

		geom->Step();
	}//while tracking through whole detector system

	return;
}

void BeWork::FillSimKinFile(Int_t INPUTS, Double_t beamtheta, Double_t beamphi,
		const char* outputfile, Option_t *opt) {
	//simulation of kinematic variables using BinaryReaction class;
	//make TTree object named "KIN" in file
	//INPUTS: number of events
	//outputfilename: name of root file
	//opt: file access option

	BeReaction *sReaction = new BeReaction();

	Info("BeWork:FillSimKinFile()",
			"MC simulation using phase volume generator will be done");

	if (INPUTS == 0) {
		cout << "\nAssign number of events \n";
		return;
//		cin >> INPUTS;
	}

	cout << "\n\nCalculating...\n\n";

	TFile *fw = TFile::Open(outputfile, opt);
	if (!fw) {
		Error("BeWork::FillSimKinFile", "File %s was not created", outputfile);
		return;
	}
	TTree *tree = new TTree("KIN", "two body kinematics");
	tree->Bronch("MCsimple", "BeReaction", &sReaction);

	for (Int_t i = 1; i <= INPUTS; i++) {
		printProgBar(i, INPUTS);

		sReaction->FillProcess(fTBeamMC*6, beamtheta, beamphi);
		tree->Fill();
	}

	cout << endl;

	tree->Write();

	fw->Close();
	if (fw->IsOpen()) {
		Warning("BeWork::FillSimKinFile", "File %s closing error", outputfile);
	}

	delete fw;
	delete sReaction;

}

void BeWork::FillSimKinFile(const char* generator, Int_t INPUTS,
		/*Double_t beamenergy,*/ Double_t beamtheta, Double_t beamphi,
		const char* outputfile, Option_t *opt) {
//	function variables: path to generator, INPUTS, outputfile option

	Info("BeWork::FillSimKinFile",
			"MC simulation using physical generator will be done");

//	cout << beamenergy << endl;
//	cout << beamtheta << endl;
//	cout << beamphi << endl;
	ifstream gen;

	gen.open(generator);
	if (!gen.is_open()) {
		Error("BeWork::FillSimKinFile", "Physical generator was not opened!");
		return;
	} //if

	//class which will be the structure of TTree branch filled into
	BeReaction *sReaction = new BeReaction();

	//checking number of inputs
	if (INPUTS == 0) {
		Info("FillSimKinFile", "O inputs was filled");
		return;
//		cout << "\nAssign number of events \n";
//		cin >> INPUTS;
	}

	cout << "\n\nCalculating...\n\n";

	//outputfile, tree and branch creation
	TFile *fw = TFile::Open(outputfile, opt); //name of the output file
	if (!fw) {
		Error("BeWork::FillSimKinFile", "File %s was not opened", outputfile);
		return;
	}
	TTree *tree = new TTree("KIN", "some suitable title"); //name of the tree, title of the three
	tree->Bronch("MCgen", "BeReaction", &sReaction); //name of the branch

	//filling the tree

	Double_t E, p_alpha[3], p_p1[3], p_p2[3], thetaCM;

	for (Int_t i = 1; i <= INPUTS; i++) {
		printProgBar(i, INPUTS); //zrychlit fci
		if (gen.good()) {
			gen >> E >> p_alpha[0] >> p_alpha[1] >> p_alpha[2] >> p_p1[0]
					>> p_p1[1] >> p_p1[2] >> p_p2[0] >> p_p2[1] >> p_p2[2]
					>> thetaCM;
//			sReaction->FillProcess(beamenergy, beamtheta, beamphi, p_alpha, p_p1, p_p2, thetaCM);
			sReaction->FillProcess(fTBeamMC*6, beamtheta, beamphi, p_alpha,
					p_p1, p_p2, 0., TMath::Pi());
			if (!gen.good()) {
				Warning("BeWork::FillSimKinFile", "End of file %s was reached",
						generator);
				tree->Fill();
				break;
			} //if
		} //if
		tree->Fill();
	} //for

	cout << endl;

	tree->Write();

	fw->Close();
	if (fw->IsOpen()) {
		Warning("BeWork::FillSimKinFile", "File %s closing error", outputfile);
	}

	gen.close();
	if (gen.is_open()) {
		Warning("BeWork::FillSimKinFile", "File %s closing error\n", generator);
	} //if

	delete fw;
	delete sReaction;

	return;
}

void BeWork::printProgBar(Int_t percent)
{
//	std::string bar;
	TString bar;

	for(int i = 0; i < 50; i++){
		if( i < (percent/2)){
//			bar.replace(i,1,"=");
			bar.Replace(i,1,"=");
		}
		else {
			if( i == (percent/2)){
//				bar.replace(i,1,">");
				bar.Replace(i,1,">");
			}
			else {
//				bar.replace(i,1," ");
				bar.Replace(i,1," ");
			}
		}
	}

	cout << "\r" "[" << bar << "] ";
	cout.width( 3 );
//	cout << percent << "%     " << flush;
	if (percent < 100) cout << percent << "%     " << flush;
	else cout << percent << "%     " << endl;

	return;
}

void BeWork::printProgBar(Int_t i, Int_t inputs)
{
//	printProgBar(0);

//	if ( (i%(inputs/100)) != 0 ) return;

	Int_t percent = i*100/inputs;
	if ( inputs >= 100 && (i%(inputs/100)) == 0 ) {
		printProgBar(percent);
	}
	if (i == inputs-1) { printProgBar(100); }
	return;
}

Int_t BeWork::CountLines(const char* file, Int_t maxlinelength) {

	char countline[maxlinelength];

	TString fname(file);
	ifstream rfile;
	//generator file opening
	if (!fname.IsNull()) {
		rfile.open(fname.Data());
		if (!rfile.is_open()) {
			Error("BeWork::CountLines", "File \"%s\" was not opened!", fname.Data());
			return 0;
		}//if
	}//if

	Int_t j = 0;
	while (!rfile.eof()) {
		rfile.getline(countline, maxlinelength);
		j++;
	}

	rfile.close();
	if (rfile.is_open()) {
		Warning("BeWork::CountLines", "File %s closing error\n", fname.Data());
	}//if

	return j;
}

void BeWork::CreateTELosses() {
	//energy looses in silicon
	//alpha in Si
	fSiAlpha = new TELoss();
	fSiAlpha->SetEL(SI_NELEMENTS, SI_RHO);
	fSiAlpha->AddEL(SI_1_Z, SI_1_A, SI_1_W);
	fSiAlpha->SetZP(2., 4.);		//alphas
	//100000 je urcite v poradku, 80000 staci, 50000 malo
	fSiAlpha->SetEtab(100000, 200.);	//deltaE
	//proton in Si
	fSiP = new TELoss();
	fSiP->SetEL(SI_NELEMENTS, SI_RHO);
	fSiP->AddEL(SI_1_Z, SI_1_A, SI_1_W);
	fSiP->SetZP(1., 1.);		//protons
	fSiP->SetEtab(100000, 200.);	//deltaE		//100000 je urcite v poradku, 80000 staci, 50000 malo

	//energy looses in CsI(Tl)
	//alpha in CsI
	fCsIAlpha = new TELoss();
	fCsIAlpha->SetEL(CSI_NELEMENTS, CSI_RHO);
	fCsIAlpha->AddEL(CSI_1_Z, CSI_1_A, CSI_1_W);
	fCsIAlpha->AddEL(CSI_2_Z, CSI_2_A, CSI_2_W);
	fCsIAlpha->SetZP(2., 4.);		//alphas
	//100000 je urcite v poradku, 80000 staci, 50000 malo
	fCsIAlpha->SetEtab(100000, 200.);	//deltaE
	//proton in CsI
	fCsIP = new TELoss();
	fCsIP->SetEL(CSI_NELEMENTS, CSI_RHO);
	fCsIP->AddEL(CSI_1_Z, CSI_1_A, CSI_1_W);
	fCsIP->AddEL(CSI_2_Z, CSI_2_A, CSI_2_W);
	fCsIP->SetZP(1., 1.);		//protons
	fCsIP->SetEtab(100000, 200.);	//deltaE		//100000 je urcite v poradku, 80000 staci, 50000 malo

	//energy looses in target
	const Double_t targetRho = T_NORMAL_RHO*(273/T_TEMPERATURE)*(T_PRESSURE/1);
	//alpha in target
	fTargetAlpha = new TELoss();
	fTargetAlpha->SetEL(T_NELEMENTS, targetRho);
	fTargetAlpha->AddEL(T_1_Z, T_1_A, T_1_W);
	fTargetAlpha->SetZP(2., 4.);		//alphas
	//100000 je urcite v poradku, 80000 staci, 50000 malo
	fTargetAlpha->SetEtab(100000, 200.);	//deltaE
	//proton in target
	fTargetP = new TELoss();
	fTargetP->SetEL(T_NELEMENTS, targetRho);
	fTargetP->AddEL(T_1_Z, T_1_A, T_1_W);
	fTargetP->SetZP(1., 1.);		//protons
	fTargetP->SetEtab(100000, 200.);	//deltaE		//100000 je urcite v poradku, 80000 staci, 50000 malo

	//beam in target
	fTargetLi = new TELoss();
	fTargetLi->SetEL(T_NELEMENTS, targetRho);
	fTargetLi->AddEL(T_1_Z, T_1_A, T_1_W);
	fTargetLi->SetZP(3., 6.);		//protons
	fTargetLi->SetEtab(100000, 200.);	//deltaE		//100000 je urcite v poradku, 80000 staci, 50000 malo


	//alpha in target window
	fTargetWinAlpha = new TELoss();
	fTargetWinAlpha->SetEL(T_WIN_NELEMENTS, T_WIN_RHO);
	fTargetWinAlpha->AddEL(T_WIN_1_Z, T_WIN_1_A, T_WIN_1_W);
	fTargetWinAlpha->AddEL(T_WIN_2_Z, T_WIN_2_A, T_WIN_2_W);
	fTargetWinAlpha->AddEL(T_WIN_3_Z, T_WIN_3_A, T_WIN_3_W);
	fTargetWinAlpha->SetZP(2., 4.);		//alphas
	//100000 je urcite v poradku, 80000 staci, 50000 malo
	fTargetWinAlpha->SetEtab(100000, 200.);	//deltaE
	//proton in target window
	fTargetWinP = new TELoss();
	fTargetWinP->SetEL(T_NELEMENTS, T_WIN_RHO);
	fTargetWinP->AddEL(T_WIN_1_Z, T_WIN_1_A, T_WIN_1_W);
	fTargetWinP->AddEL(T_WIN_2_Z, T_WIN_2_A, T_WIN_2_W);
	fTargetWinP->AddEL(T_WIN_3_Z, T_WIN_3_A, T_WIN_3_W);
	fTargetWinP->SetZP(1., 1.);		//protons
	fTargetWinP->SetEtab(100000, 200.);	//deltaE		//100000 je urcite v poradku, 80000 staci, 50000 malo

	//beam in target window
	fTargetWinLi = new TELoss();
	fTargetWinLi->SetEL(T_NELEMENTS, T_WIN_RHO);
	fTargetWinLi->AddEL(T_WIN_1_Z, T_WIN_1_A, T_WIN_1_W);
	fTargetWinLi->AddEL(T_WIN_2_Z, T_WIN_2_A, T_WIN_2_W);
	fTargetWinLi->AddEL(T_WIN_3_Z, T_WIN_3_A, T_WIN_3_W);
	fTargetWinLi->SetZP(3., 6.);		//protons
	fTargetWinLi->SetEtab(100000, 200.);	//deltaE		//100000 je urcite v poradku, 80000 staci, 50000 malo

	Info("BeWork::CreateTELosses", "TELoss objects were initialized.");
}