37#include "FairRootManager.h"
38#include "KFParticle/KFParticle.h"
1123 FairRootManager* ioman = FairRootManager::Instance();
1124 if (
nullptr == ioman) { Fatal(
"CbmKresConversionManual::Init",
"RootManager not instantised!"); }
1126 fMcTracks = (TClonesArray*) ioman->GetObject(
"MCTrack");
1127 if (
nullptr ==
fMcTracks) { Fatal(
"CbmKresConversionManual::Init",
"No MCTrack array!"); }
1131 if (
nullptr ==
fPrimVertex) { LOG(fatal) <<
"CbmKresConversionManual::Init No PrimaryVertex array!"; }
1133 fGlobalTracks = (TClonesArray*) ioman->GetObject(
"GlobalTrack");
1134 if (
nullptr ==
fGlobalTracks) { Fatal(
"CbmKresConversionManual::Init",
"No GlobalTrack array!"); }
1136 fStsTracks = (TClonesArray*) ioman->GetObject(
"StsTrack");
1137 if (
nullptr ==
fStsTracks) { Fatal(
"CbmKresConversionManual::Init",
"No StsTrack array!"); }
1140 if (
nullptr ==
fStsTrackMatches) { Fatal(
"CbmKresConversionManual::Init",
"No StsTrackMatch array!"); }
1143 if (
nullptr ==
fRichProjections) { Fatal(
"CbmKresConversionManual::Init",
"No RichProjection array!"); }
1145 fRichRings = (TClonesArray*) ioman->GetObject(
"RichRing");
1146 if (
nullptr ==
fRichRings) { Fatal(
"CbmKresConversionManual::Init",
"No RichRing array!"); }
1149 if (
nullptr ==
fRichRingMatches) { Fatal(
"CbmKresConversionManual::Init",
"No RichRingMatch array!"); }
1151 fRichHits = (TClonesArray*) ioman->GetObject(
"RichHit");
1152 if (
nullptr ==
fRichHits) { Fatal(
"CbmKresConversionManual::Init",
"No RichHit array!"); }
1154 fArrayMvdHit = (TClonesArray*) ioman->GetObject(
"MvdHit");
1155 if (
nullptr ==
fArrayMvdHit) { Fatal(
"CbmKresConversionManual::Init",
"No MvdHit array!"); }
1157 fArrayStsHit = (TClonesArray*) ioman->GetObject(
"StsHit");
1158 if (
nullptr ==
fArrayStsHit) { Fatal(
"CbmKresConversionManual::Init",
"No StsHit array!"); }
1178 cout <<
"\t *** CbmKresTrainAnn ==> is "
1187 cout <<
"\t *** CbmKresSelectAnn ==> is "
1200 Fatal(
"CbmKresConversionManual::Exec",
"No PrimaryVertex array here!");
1302 for (
Int_t i = 0; i < ngTracks; i++) {
1304 if (
nullptr == gTrack)
continue;
1308 if (stsInd < 0)
continue;
1310 if (stsTrack ==
nullptr)
continue;
1312 if (stsMatch ==
nullptr)
continue;
1315 if (stsMcTrackId < 0)
continue;
1317 if (mcTrack ==
nullptr)
continue;
1321 if (richInd < 0 && proj->GetX() > -115 && proj->GetX() < 115
1322 && ((proj->GetY() < -120 && proj->GetY() > -200) || (proj->GetY() > 120 && proj->GetY() < 200)))
1337 const FairTrackParam* track_par = stsTrack->
GetParamFirst();
1338 double charge = track_par->GetQp();
1360 if (chi2 != chi2)
continue;
1361 if (chi2 == 0)
continue;
1366 if (chi2 > 3) {
SaveOutsideTracks(mcTrack, stsTrack, charge, stsInd, richInd, stsMcTrackId, Ring); }
1367 if (chi2 > 3)
continue;
1369 SaveTargetTracks(mcTrack, stsTrack, Momentum, charge, stsInd, richInd, stsMcTrackId, Ring);
1456 int numformix = 500;
1457 if (fEventNumMan % numformix == 0) {
1474 if (fEventNumMan % numformix == 0) {
1481 if (fEventNumMan % numformix == 0) {
1488 if (fEventNumMan % numformix == 0) {
1500 int InRich =
FindInRich(richInd, stsMcTrackId);
1520 double charge,
int stsInd,
int richInd,
int stsMcTrackId,
1523 int InRich =
FindInRich(richInd, stsMcTrackId);
1546 vector<CbmMCTrack*> MCtracks_minus, vector<CbmMCTrack*> MCtracks_plus,
1547 vector<CbmStsTrack*> StsTrack_minus, vector<CbmStsTrack*> StsTrack_plus,
1548 vector<TVector3> Momenta_minus, vector<TVector3> Momenta_plus,
1549 std::vector<int> Rings_minus, std::vector<int> Rings_plus,
1550 std::vector<int> stsIndex_minus, std::vector<int> stsIndex_plus,
1551 vector<CbmRichRing*> richRing_minus, vector<CbmRichRing*> richRing_plus,
1552 vector<Int_t> MCIndex_minus, vector<Int_t> MCIndex_plus)
1554 for (
size_t i = 0; i < Momenta_minus.size(); i++) {
1555 for (
size_t j = 0; j < Momenta_plus.size(); j++) {
1560 TVector3 part1 = Momenta_minus[i];
1561 TVector3 part2 = Momenta_plus[j];
1565 int richcheck_0 = 0;
1566 int richcheck_1 = 0;
1569 richcheck_0 =
CheckIfElectron(richRing_minus[i], Momenta_minus[i].Mag());
1570 richcheck_1 =
CheckIfElectron(richRing_plus[j], Momenta_plus[j].Mag());
1574 richcheck_0 = Rings_minus[i];
1575 richcheck_1 = Rings_plus[j];
1577 int richcheck = richcheck_0 + richcheck_1;
1617 fTrain->Exec(EventNumMan, IdForANN, InvmassReco, OpeningAngle, PlaneAngle_last,
fKFVertex.GetRefZ(), part1,
1622 double AnnValue = 999;
1637 if (TMath::Abs(OpeningAngle) > AngleCut)
continue;
1638 if (TMath::Abs(InvmassReco) > InvMassCut)
continue;
1648 frefId.push_back(stsIndex_minus[i]);
1649 frefId.push_back(stsIndex_plus[j]);
1651 fMCId.push_back(MCIndex_minus[i]);
1652 fMCId.push_back(MCIndex_plus[j]);
1664 if (richcheck == 0 || richcheck == 1 || richcheck == 2) {
1688 if (richcheck == 0) {
1712 if (richcheck == 1) {
1736 if (richcheck == 2) {
1765 if (richcheck == 1 || richcheck == 2) {
1799 int EventNumMan,
double AngleCut,
double InvMassCut,
int RealPID, vector<CbmMCTrack*> MCtracks_minus_Outside,
1800 vector<CbmMCTrack*> MCtracks_plus_Outside, vector<CbmStsTrack*> StsTrack_minus_Outside,
1801 vector<CbmStsTrack*> StsTrack_plus_Outside, std::vector<int> Rings_minus_Outside, std::vector<int> Rings_plus_Outside,
1802 std::vector<int> stsIndex_minus_Outside, std::vector<int> stsIndex_plus_Outside,
1803 vector<CbmRichRing*> richRing_minus_Outside, vector<CbmRichRing*> richRing_plus_Outside,
1804 vector<Int_t> MCIndex_minus_Outside, vector<Int_t> MCIndex_plus_Outside)
1806 for (
size_t i = 0; i < StsTrack_minus_Outside.size(); i++) {
1807 for (
size_t j = 0; j < StsTrack_plus_Outside.size(); j++) {
1809 CbmStsTrack* part1STS = StsTrack_minus_Outside[i];
1811 CbmMCTrack* part1MC = MCtracks_minus_Outside[i];
1812 CbmMCTrack* part2MC = MCtracks_plus_Outside[j];
1814 KFParticle electron;
1816 KFParticle positron;
1818 const KFParticle* daughters[2] = {&electron, &positron};
1819 KFParticle intersection;
1820 intersection.Construct(daughters, 2);
1822 if (intersection.GetZ() > 75 || intersection.GetZ() < -5)
continue;
1843 int richcheck_0 = 0;
1844 int richcheck_1 = 0;
1847 richcheck_0 =
CheckIfElectron(richRing_minus_Outside[i], part1.Mag());
1849 richcheck = richcheck_0 + richcheck_1;
1853 richcheck = Rings_minus_Outside[i] + Rings_plus_Outside[j];
1895 fTrain->Exec(EventNumMan, IdForANN, InvmassReco, OpeningAngle, PlaneAngle_last, intersection.GetZ(), part1,
1900 double AnnValue = 999;
1903 fAnnSelection->DoSelect(InvmassReco, OpeningAngle, PlaneAngle_last, intersection.GetZ(), part1, part2);
1914 if (TMath::Abs(OpeningAngle) > AngleCut)
continue;
1915 if (TMath::Abs(InvmassReco) > InvMassCut)
continue;
1926 frefId.push_back(stsIndex_minus_Outside[i]);
1927 frefId.push_back(stsIndex_plus_Outside[j]);
1932 fMCId.push_back(MCIndex_minus_Outside[i]);
1933 fMCId.push_back(MCIndex_plus_Outside[j]);
1948 if (richcheck == 0 || richcheck == 1 || richcheck == 2) {
1972 if (richcheck == 0) {
1996 if (richcheck == 1) {
2020 if (richcheck == 2) {
2044 if (richcheck == 1 || richcheck == 2) {
2172 vector<vector<int>> StsIndex, vector<vector<int>> MCIndex,
2173 vector<vector<CbmMCTrack*>> GammasMC, TH1D* Pi0InvMassReco, TH2D* Pi0_pt_vs_rap,
2174 TH2D* Pi0_pt_vs_rap_est, TH2D* MultiplicityGamma,
2175 TH2D* MultiplicityChargedParticles, vector<TH1*> BGCases, TH1D* DalitzPi0,
2179 if (Gammas.size() < 2)
return;
2180 for (
size_t gamma1 = 0; gamma1 < Gammas.size() - 1; gamma1++) {
2181 for (
size_t gamma2 = gamma1 + 1; gamma2 < Gammas.size(); gamma2++) {
2183 TVector3 e11 = Gammas[gamma1][0];
2184 TVector3 e12 = Gammas[gamma1][1];
2185 TVector3 e21 = Gammas[gamma2][0];
2186 TVector3 e22 = Gammas[gamma2][1];
2194 if (StsIndex[gamma1][0] == StsIndex[gamma2][0] || StsIndex[gamma1][0] == StsIndex[gamma2][1]
2195 || StsIndex[gamma1][1] == StsIndex[gamma2][0] || StsIndex[gamma1][1] == StsIndex[gamma2][1])
2206 Pi0InvMassReco->Fill(params.
fMinv);
2207 MultiplicityGamma->Fill(Gammas.size(), params.
fMinv);
2211 if (mod ==
"OneTwo" && position ==
"Both") {
2353 if (mod ==
"All" && position ==
"Both") {
2494 if (position ==
"Both")
fAnaBG->Exec(mcTrack1, mcTrack2, mcTrack3, mcTrack4, params.
fMinv, BGCases);
2497 int STSmcId1 = MCIndex[gamma1][0];
2498 int STSmcId2 = MCIndex[gamma1][1];
2499 int STSmcId3 = MCIndex[gamma2][0];
2500 int STSmcId4 = MCIndex[gamma2][1];
2501 if (STSmcId1 == STSmcId2 || STSmcId1 == STSmcId3 || STSmcId1 == STSmcId4 || STSmcId2 == STSmcId3
2502 || STSmcId2 == STSmcId4 || STSmcId3 == STSmcId4)
2506 if (
nullptr == mcTrack1 ||
nullptr == mcTrack2 ||
nullptr == mcTrack3 ||
nullptr == mcTrack4)
continue;
2516 if (motherId1 == -1 || motherId2 == -1 || motherId3 == -1 || motherId4 == -1)
continue;
2517 if (motherId1 != motherId2 || motherId3 != motherId4)
continue;
2522 if (
nullptr == mother1 ||
nullptr == mother2 ||
nullptr == mother3 ||
nullptr == mother4)
continue;
2532 if (mcMotherPdg1 == 22 && mcMotherPdg2 == 22 && mcMotherPdg3 == 111 && mcMotherPdg4 == 111) {
2533 if (grandmotherId1 != motherId3)
continue;
2538 DalitzPi0->Fill(params.
fMinv);
2541 if (mcMotherPdg1 == 111 && mcMotherPdg2 == 111 && mcMotherPdg3 == 22 && mcMotherPdg4 == 22) {
2542 if (grandmotherId3 != motherId1)
continue;
2547 DalitzPi0->Fill(params.
fMinv);
2550 if (mcMotherPdg1 == 22 && mcMotherPdg2 == 22 && mcMotherPdg3 == 22 && mcMotherPdg4 == 22) {
2551 if (grandmotherId1 != grandmotherId2 || grandmotherId3 != grandmotherId4 || grandmotherId1 != grandmotherId3)
2553 if (grandmotherId1 == -1)
continue;
2555 if (
nullptr == grandmother1)
continue;
2556 int mcGrandMotherPdg1 = grandmother1->
GetPdgCode();
2557 if (mcGrandMotherPdg1 != 111)
continue;
2562 PhotonsPi0->Fill(params.
fMinv);
2573 cout <<
"Mixing in Manual(Target) - nof entries " << nof_Target << endl;
2574 for (
Int_t a = 0; a < nof_Target - 1; a++) {
2575 for (
Int_t b = a + 1; b < nof_Target; b++) {
2603 cout <<
"Mixing in Manual(Outside) - nof entries " << nof_Outside << endl;
2604 for (
Int_t a = 0; a < nof_Outside - 1; a++) {
2605 for (
Int_t b = a + 1; b < nof_Outside; b++) {
2633 cout <<
"Mixing in Manual(Both) - nof entries " << nof_Both << endl;
2634 for (
Int_t a = 0; a < nof_Both - 1; a++) {
2635 for (
Int_t b = a + 1; b < nof_Both; b++) {
2940 cout <<
"Mixing in Manual(WAC) - nof entries " << nof_WAC << endl;
2941 for (
Int_t a = 0; a < nof_WAC - 1; a++) {
2942 for (
Int_t b = a + 1; b < nof_WAC; b++) {
2957 int RingsInRich = 0;
2960 if (richMatch !=
nullptr && richMatch->
GetNofLinks() > 0) {
2962 if (richMcTrackId > 0) {
2963 if (stsMcTrackId == richMcTrackId) {
2965 if (mcTrack2 !=
nullptr) {
2967 if (TMath::Abs(pdgRICH) == 11) RingsInRich++;
2981 if (
nullptr != ring) {
2984 for (
int i = 0; i < nofHits; i++) {
2985 int hitInd = ring->
GetHit(i);
2987 if (
nullptr == hit)
continue;
2993 && momentum > 0.2 && momentum < 4.)
3004 double FinalAngle = 400;
3019 Xpart1 = stsHit1->
GetX();
3020 Ypart1 = stsHit1->
GetY();
3021 Zpart1 = stsHit1->
GetZ();
3026 Xpart1 = mvdHit1->
GetX();
3027 Ypart1 = mvdHit1->
GetY();
3028 Zpart1 = mvdHit1->
GetZ();
3034 Xpart2 = stsHit2->
GetX();
3035 Ypart2 = stsHit2->
GetY();
3036 Zpart2 = stsHit2->
GetZ();
3041 Xpart2 = mvdHit2->
GetX();
3042 Ypart2 = mvdHit2->
GetY();
3043 Zpart2 = mvdHit2->
GetZ();
3047 if (TMath::Abs(Zpart1 - Zpart2) > 2
3048 && Zpart1 > Zpart2) {
3049 for (
int i = hits1sts - 2; i > -1; i--) {
3050 if (TMath::Abs(Zpart1 - Zpart2) < 2)
continue;
3053 Xpart1 = stsHit->
GetX();
3054 Ypart1 = stsHit->
GetY();
3055 Zpart1 = stsHit->
GetZ();
3057 if (TMath::Abs(Zpart1 - Zpart2) > 2 && Zpart1 > Zpart2) {
3058 for (
int i = hits1mvd - 2; i > -1; i--) {
3059 if (TMath::Abs(Zpart1 - Zpart2) < 2)
continue;
3062 Xpart1 = mvdHit->
GetX();
3063 Ypart1 = mvdHit->
GetY();
3064 Zpart1 = mvdHit->
GetZ();
3069 if (TMath::Abs(Zpart1 - Zpart2) > 2
3070 && Zpart1 < Zpart2) {
3071 for (
int i = hits2sts - 2; i > -1; i--) {
3072 if (TMath::Abs(Zpart1 - Zpart2) < 2)
continue;
3075 Xpart2 = stsHit->
GetX();
3076 Ypart2 = stsHit->
GetY();
3077 Zpart2 = stsHit->
GetZ();
3079 if (TMath::Abs(Zpart1 - Zpart2) > 2 && Zpart1 < Zpart2) {
3080 for (
int i = hits2mvd - 2; i > -1; i--) {
3081 if (TMath::Abs(Zpart1 - Zpart2) < 2)
continue;
3084 Xpart2 = mvdHit->
GetX();
3085 Ypart2 = mvdHit->
GetY();
3086 Zpart2 = mvdHit->
GetZ();
3092 if (TMath::Abs(Zpart1 - Zpart2) < 2 && Zpart1 != 0 && Zpart2 != 0) {
3093 FinalAngle = TMath::ATan2(Ypart1 - Ypart2, Xpart1 - Xpart2) * (180 / TMath::Pi());
3096 return TMath::Abs(TMath::Abs(FinalAngle) - 180);
3101 double FinalAngle = 400;
3116 Xpart1 = mvdHit1->
GetX();
3117 Ypart1 = mvdHit1->
GetY();
3118 Zpart1 = mvdHit1->
GetZ();
3123 Xpart1 = stsHit1->
GetX();
3124 Ypart1 = stsHit1->
GetY();
3125 Zpart1 = stsHit1->
GetZ();
3131 Xpart2 = mvdHit2->
GetX();
3132 Ypart2 = mvdHit2->
GetY();
3133 Zpart2 = mvdHit2->
GetZ();
3138 Xpart2 = stsHit2->
GetX();
3139 Ypart2 = stsHit2->
GetY();
3140 Zpart2 = stsHit2->
GetZ();
3144 if (TMath::Abs(Zpart1 - Zpart2) > 2
3145 && Zpart1 < Zpart2) {
3146 for (
int i = 1; i < hits1mvd; i++) {
3147 if (TMath::Abs(Zpart1 - Zpart2) < 2)
continue;
3150 Xpart1 = mvdHit->
GetX();
3151 Ypart1 = mvdHit->
GetY();
3152 Zpart1 = mvdHit->
GetZ();
3154 if (TMath::Abs(Zpart1 - Zpart2) > 2 && Zpart1 < Zpart2) {
3155 for (
int i = 0; i < hits1sts; i++) {
3156 if (TMath::Abs(Zpart1 - Zpart2) < 2)
continue;
3159 Xpart1 = stsHit->
GetX();
3160 Ypart1 = stsHit->
GetY();
3161 Zpart1 = stsHit->
GetZ();
3166 if (TMath::Abs(Zpart1 - Zpart2) > 2
3167 && Zpart1 > Zpart2) {
3168 for (
int i = 1; i < hits2mvd; i++) {
3169 if (TMath::Abs(Zpart1 - Zpart2) < 2)
continue;
3172 Xpart2 = mvdHit->
GetX();
3173 Ypart2 = mvdHit->
GetY();
3174 Zpart2 = mvdHit->
GetZ();
3176 if (TMath::Abs(Zpart1 - Zpart2) > 2 && Zpart1 > Zpart2) {
3177 for (
int i = 0; i < hits2sts; i++) {
3178 if (TMath::Abs(Zpart1 - Zpart2) < 2)
continue;
3181 Xpart2 = stsHit->
GetX();
3182 Ypart2 = stsHit->
GetY();
3183 Zpart2 = stsHit->
GetZ();
3189 if (TMath::Abs(Zpart1 - Zpart2) < 2 && Zpart1 != 0 && Zpart2 != 0) {
3190 FinalAngle = TMath::ATan2(Ypart1 - Ypart2, Xpart1 - Xpart2) * (180 / TMath::Pi());
3193 return TMath::Abs(TMath::Abs(FinalAngle) - 180);
3199 gDirectory->mkdir(
"Manual");
3200 gDirectory->cd(
"Manual");
3203 gDirectory->mkdir(
"Target");
3204 gDirectory->cd(
"Target");
3205 gDirectory->mkdir(
"CheckCuts_Target");
3206 gDirectory->cd(
"CheckCuts_Target");
3210 gDirectory->cd(
"..");
3211 gDirectory->mkdir(
"multiplicity");
3212 gDirectory->cd(
"multiplicity");
3216 gDirectory->cd(
"..");
3217 gDirectory->mkdir(
"all");
3218 gDirectory->cd(
"all");
3222 gDirectory->cd(
"..");
3223 gDirectory->mkdir(
"zero");
3224 gDirectory->cd(
"zero");
3228 gDirectory->cd(
"..");
3229 gDirectory->mkdir(
"one");
3230 gDirectory->cd(
"one");
3234 gDirectory->cd(
"..");
3235 gDirectory->mkdir(
"two");
3236 gDirectory->cd(
"two");
3240 gDirectory->cd(
"..");
3241 gDirectory->mkdir(
"onetwo");
3242 gDirectory->cd(
"onetwo");
3246 gDirectory->cd(
"..");
3248 gDirectory->cd(
"..");
3251 gDirectory->mkdir(
"Outside");
3252 gDirectory->cd(
"Outside");
3253 gDirectory->mkdir(
"CheckCuts_Outside");
3254 gDirectory->cd(
"CheckCuts_Outside");
3258 gDirectory->cd(
"..");
3259 gDirectory->mkdir(
"multiplicity");
3260 gDirectory->cd(
"multiplicity");
3264 gDirectory->cd(
"..");
3265 gDirectory->mkdir(
"all");
3266 gDirectory->cd(
"all");
3270 gDirectory->cd(
"..");
3271 gDirectory->mkdir(
"zero");
3272 gDirectory->cd(
"zero");
3276 gDirectory->cd(
"..");
3277 gDirectory->mkdir(
"one");
3278 gDirectory->cd(
"one");
3282 gDirectory->cd(
"..");
3283 gDirectory->mkdir(
"two");
3284 gDirectory->cd(
"two");
3288 gDirectory->cd(
"..");
3289 gDirectory->mkdir(
"onetwo");
3290 gDirectory->cd(
"onetwo");
3294 gDirectory->cd(
"..");
3295 gDirectory->cd(
"..");
3298 gDirectory->mkdir(
"Both");
3299 gDirectory->cd(
"Both");
3300 gDirectory->mkdir(
"CheckCuts_Both");
3301 gDirectory->cd(
"CheckCuts_Both");
3305 gDirectory->cd(
"..");
3306 gDirectory->mkdir(
"multiplicity");
3307 gDirectory->cd(
"multiplicity");
3311 gDirectory->cd(
"..");
3312 gDirectory->mkdir(
"rap_vs_Pt_onetwo_Both");
3313 gDirectory->cd(
"rap_vs_Pt_onetwo_Both");
3317 gDirectory->cd(
"..");
3318 gDirectory->mkdir(
"rap_vs_Pt_all_Both");
3319 gDirectory->cd(
"rap_vs_Pt_all_Both");
3323 gDirectory->cd(
"..");
3325 gDirectory->mkdir(
"pt_onetwo_Both");
3326 gDirectory->cd(
"pt_onetwo_Both");
3330 gDirectory->cd(
"..");
3331 gDirectory->mkdir(
"pt_all_Both");
3332 gDirectory->cd(
"pt_all_Both");
3336 gDirectory->cd(
"..");
3338 gDirectory->mkdir(
"BG_Both");
3339 gDirectory->cd(
"BG_Both");
3340 gDirectory->mkdir(
"BG_Both_all");
3341 gDirectory->cd(
"BG_Both_all");
3345 gDirectory->cd(
"..");
3346 gDirectory->mkdir(
"BG_Both_zero");
3347 gDirectory->cd(
"BG_Both_zero");
3351 gDirectory->cd(
"..");
3352 gDirectory->mkdir(
"BG_Both_one");
3353 gDirectory->cd(
"BG_Both_one");
3357 gDirectory->cd(
"..");
3358 gDirectory->mkdir(
"BG_Both_two");
3359 gDirectory->cd(
"BG_Both_two");
3363 gDirectory->cd(
"..");
3364 gDirectory->mkdir(
"BG_Both_onetwo");
3365 gDirectory->cd(
"BG_Both_onetwo");
3369 gDirectory->cd(
"..");
3370 gDirectory->cd(
"..");
3371 gDirectory->mkdir(
"all");
3372 gDirectory->cd(
"all");
3376 gDirectory->cd(
"..");
3377 gDirectory->mkdir(
"zero");
3378 gDirectory->cd(
"zero");
3382 gDirectory->cd(
"..");
3383 gDirectory->mkdir(
"one");
3384 gDirectory->cd(
"one");
3388 gDirectory->cd(
"..");
3389 gDirectory->mkdir(
"two");
3390 gDirectory->cd(
"two");
3394 gDirectory->cd(
"..");
3395 gDirectory->mkdir(
"onetwo");
3396 gDirectory->cd(
"onetwo");
3400 gDirectory->cd(
"..");
3404 gDirectory->cd(
"..");
3407 gDirectory->mkdir(
"WAC");
3408 gDirectory->cd(
"WAC");
3409 gDirectory->mkdir(
"BG_WAC");
3410 gDirectory->cd(
"BG_WAC");
3414 gDirectory->cd(
"..");
3418 gDirectory->cd(
"..");
3424 gDirectory->cd(
"..");
3432 "InvMass_vs_OA_candidates_Both; invariant mass in GeV/c^{2}; "
3433 "opening angle in degree",
3434 500, 0, 0.5, 500, 0, 50);
3437 "InvMass_vs_OA_fromPi0_Both; invariant mass in GeV/c^{2}; opening "
3439 500, 0, 0.5, 500, 0, 50);
3442 "GammasInvMass_candidates_Both",
"GammasInvMass_candidates_Both; invariant mass in GeV/c^{2};#", 510, -0.01, 0.5);
3445 new TH1D(
"GammasOA_candidates_Both",
"GammasOA_candidates_Both; opening angle in degree;#", 300, -0.1, 29.9);
3448 "GammasInvMass_fromPi0_Both; invariant mass in GeV/c^{2};#", 510, -0.01, 0.5);
3451 new TH1D(
"GammasOA_fromPi0_Both",
"GammasOA_fromPi0_Both; opening angle in degree;#", 300, -0.1, 29.9);
3454 "PlaneAngles_last_candidates_Both",
"PlaneAngles_last_candidates_Both; #theta angle in degree;#", 720, -1., 179.);
3457 "PlaneAngles_last_fromPi0_Both; #theta angle in degree;#", 720, -1., 179.);
3460 "PlaneAngles_first_candidates_Both",
"PlaneAngles_first_candidates_Both; #theta angle in degree;#", 720, -1., 179.);
3463 "PlaneAngles_first_fromPi0_Both; #theta angle in degree;#", 720, -1., 179.);
3468 "InvMass_vs_OA_candidates_Target; invariant mass in GeV/c^{2}; "
3469 "opening angle in degree",
3470 500, 0, 0.5, 500, 0, 50);
3473 "InvMass_vs_OA_fromPi0_Target; invariant mass in GeV/c^{2}; "
3474 "opening angle in degree",
3475 500, 0, 0.5, 500, 0, 50);
3478 new TH1D(
"GammasInvMass_candidates_Target",
"GammasInvMass_candidates_Target; invariant mass in GeV/c^{2};#", 510,
3482 new TH1D(
"GammasOA_candidates_Target",
"GammasOA_candidates_Target; opening angle in degree;#", 300, -0.1, 29.9);
3485 "GammasInvMass_fromPi0_Target",
"GammasInvMass_fromPi0_Target; invariant mass in GeV/c^{2};#", 510, -0.01, 0.5);
3488 new TH1D(
"GammasOA_fromPi0_Target",
"GammasOA_fromPi0_Target; opening angle in degree;#", 300, -0.1, 29.9);
3491 new TH1D(
"PlaneAngles_last_candidates_Target",
"PlaneAngles_last_candidates_Target; #theta angle in degree;#", 720,
3495 "PlaneAngles_last_fromPi0_Target",
"PlaneAngles_last_fromPi0_Target; #theta angle in degree;#", 720, -1., 179.);
3498 new TH1D(
"PlaneAngles_first_candidates_Target",
"PlaneAngles_first_candidates_Target; #theta angle in degree;#",
3502 "PlaneAngles_first_fromPi0_Target",
"PlaneAngles_first_fromPi0_Target; #theta angle in degree;#", 720, -1., 179.);
3507 "InvMass_vs_OA_candidates_Outside; invariant mass in GeV/c^{2}; "
3508 "opening angle in degree",
3509 500, 0, 0.5, 500, 0, 50);
3512 "InvMass_vs_OA_fromPi0_Outside; invariant mass in GeV/c^{2}; "
3513 "opening angle in degree",
3514 500, 0, 0.5, 500, 0, 50);
3517 new TH1D(
"GammasInvMass_candidates_Outside",
"GammasInvMass_candidates_Outside; invariant mass in GeV/c^{2};#", 510,
3521 new TH1D(
"GammasOA_candidates_Outside",
"GammasOA_candidates_Outside; opening angle in degree;#", 300, -0.1, 29.9);
3524 "GammasInvMass_fromPi0_Outside",
"GammasInvMass_fromPi0_Outside; invariant mass in GeV/c^{2};#", 510, -0.01, 0.5);
3527 new TH1D(
"GammasOA_fromPi0_Outside",
"GammasOA_fromPi0_Outside; opening angle in degree;#", 300, -0.1, 29.9);
3530 new TH1D(
"PlaneAngles_last_candidates_Outside",
"PlaneAngles_last_candidates_Outside; #theta angle in degree;#",
3534 "PlaneAngles_last_fromPi0_Outside",
"PlaneAngles_last_fromPi0_Outside; #theta angle in degree;#", 720, -1., 179.);
3537 new TH1D(
"PlaneAngles_first_candidates_Outside",
"PlaneAngles_first_candidates_Outside; #theta angle in degree;#",
3541 "PlaneAngles_first_fromPi0_Outside",
"PlaneAngles_first_fromPi0_Outside; #theta angle in degree;#", 720, -1., 179.);
3547 "GammaInvMassReco_all_Target; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3550 new TH1D(
"GammaOpeningAngleReco_all_Target",
"GammaOpeningAngleReco_all_Target; angle [deg];#", 200, -0.1, 19.9);
3552 Pdg_all_Target =
new TH1D(
"Pdg_all_Target",
"Pdg_all_Target; Id;#", 800, 0, 400);
3554 P_reco_all_Target =
new TH1D(
"P_reco_all_Target",
"P_reco_all_Target; P in GeV/c^{2};#", 600, 0, 6);
3556 Pt_reco_all_Target =
new TH1D(
"Pt_reco_all_Target",
"Pt_reco_all_Target; P_{t} in GeV/c^{2};#", 300, 0, 3);
3559 new TH1D(
"Pi0InvMassReco_all_Target",
"Pi0InvMassReco_all_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3562 new TH1D(
"EMT_InvMass_all_Target",
"EMT_InvMass_all_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3565 "Pi0_pt_vs_rap_all_Target",
"Pi0_pt_vs_rap_all_Target; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3568 new TH2D(
"Pi0_pt_vs_rap_est_all_Target",
"Pi0_pt_vs_rap_est_all_Target; rapidity y; p_{t} in GeV/c ", 10, 0., 4.,
3572 new TH1D(
"DalitzPi0_all_Target",
"DalitzPi0_all_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3575 new TH1D(
"PhotonsPi0_all_Target",
"PhotonsPi0_all_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3581 "GammaInvMassReco_zero_Target",
"GammaInvMassReco_zero_Target; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3584 new TH1D(
"GammaOpeningAngleReco_zero_Target",
"GammaOpeningAngleReco_zero_Target; angle [deg];#", 200, -0.1, 19.9);
3586 Pdg_zero_Target =
new TH1D(
"Pdg_zero_Target",
"Pdg_zero_Target; Id;#", 800, 0, 400);
3588 P_reco_zero_Target =
new TH1D(
"P_reco_zero_Target",
"P_reco_zero_Target; P in GeV/c^{2};#", 600, 0, 6);
3590 Pt_reco_zero_Target =
new TH1D(
"Pt_reco_zero_Target",
"Pt_reco_zero_Target; P_{t} in GeV/c^{2};#", 300, 0, 3);
3593 new TH1D(
"Pi0InvMassReco_zero_Target",
"Pi0InvMassReco_zero_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3596 new TH1D(
"EMT_InvMass_zero_Target",
"EMT_InvMass_zero_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3599 "Pi0_pt_vs_rap_zero_Target",
"Pi0_pt_vs_rap_zero_Target; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3602 new TH2D(
"Pi0_pt_vs_rap_est_zero_Target",
"Pi0_pt_vs_rap_est_zero_Target; rapidity y; p_{t} in GeV/c ", 10, 0., 4.,
3606 new TH1D(
"DalitzPi0_zero_Target",
"DalitzPi0_zero_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3609 new TH1D(
"PhotonsPi0_zero_Target",
"PhotonsPi0_zero_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3615 "GammaInvMassReco_one_Target; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3618 new TH1D(
"GammaOpeningAngleReco_one_Target",
"GammaOpeningAngleReco_one_Target; angle [deg];#", 200, -0.1, 19.9);
3620 Pdg_one_Target =
new TH1D(
"Pdg_one_Target",
"Pdg_one_Target; Id;#", 800, 0, 400);
3622 P_reco_one_Target =
new TH1D(
"P_reco_one_Target",
"P_reco_one_Target; P in GeV/c^{2};#", 600, 0, 6);
3624 Pt_reco_one_Target =
new TH1D(
"Pt_reco_one_Target",
"Pt_reco_one_Target; P_{t} in GeV/c^{2};#", 300, 0, 3);
3627 new TH1D(
"Pi0InvMassReco_one_Target",
"Pi0InvMassReco_one_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3630 new TH1D(
"EMT_InvMass_one_Target",
"EMT_InvMass_one_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3633 "Pi0_pt_vs_rap_one_Target",
"Pi0_pt_vs_rap_one_Target; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3636 new TH2D(
"Pi0_pt_vs_rap_est_one_Target",
"Pi0_pt_vs_rap_est_one_Target; rapidity y; p_{t} in GeV/c ", 10, 0., 4.,
3640 new TH1D(
"DalitzPi0_one_Target",
"DalitzPi0_one_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3643 new TH1D(
"PhotonsPi0_one_Target",
"PhotonsPi0_one_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3649 "GammaInvMassReco_two_Target; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3652 new TH1D(
"GammaOpeningAngleReco_two_Target",
"GammaOpeningAngleReco_two_Target; angle [deg];#", 200, -0.1, 19.9);
3654 Pdg_two_Target =
new TH1D(
"Pdg_two_Target",
"Pdg_two_Target; Id;#", 800, 0, 400);
3656 P_reco_two_Target =
new TH1D(
"P_reco_two_Target",
"P_reco_two_Target; P in GeV/c^{2};#", 600, 0, 6);
3658 Pt_reco_two_Target =
new TH1D(
"Pt_reco_two_Target",
"Pt_reco_two_Target; P_{t} in GeV/c^{2};#", 300, 0, 3);
3661 new TH1D(
"Pi0InvMassReco_two_Target",
"Pi0InvMassReco_two_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3664 new TH1D(
"EMT_InvMass_two_Target",
"EMT_InvMass_two_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3667 "Pi0_pt_vs_rap_two_Target",
"Pi0_pt_vs_rap_two_Target; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3670 new TH2D(
"Pi0_pt_vs_rap_est_two_Target",
"Pi0_pt_vs_rap_est_two_Target; rapidity y; p_{t} in GeV/c ", 10, 0., 4.,
3674 new TH1D(
"DalitzPi0_two_Target",
"DalitzPi0_two_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3677 new TH1D(
"PhotonsPi0_two_Target",
"PhotonsPi0_two_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3683 "GammaInvMassReco_onetwo_Target",
"GammaInvMassReco_onetwo_Target; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3686 "GammaOpeningAngleReco_onetwo_Target; angle [deg];#", 200, -0.1, 19.9);
3688 Pdg_onetwo_Target =
new TH1D(
"Pdg_onetwo_Target",
"Pdg_onetwo_Target; Id;#", 800, 0, 400);
3690 P_reco_onetwo_Target =
new TH1D(
"P_reco_onetwo_Target",
"P_reco_onetwo_Target; P in GeV/c^{2};#", 600, 0, 6);
3692 Pt_reco_onetwo_Target =
new TH1D(
"Pt_reco_onetwo_Target",
"Pt_reco_onetwo_Target; P_{t} in GeV/c^{2};#", 300, 0, 3);
3695 "Pi0InvMassReco_onetwo_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3698 new TH1D(
"EMT_InvMass_onetwo_Target",
"EMT_InvMass_onetwo_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3701 new TH2D(
"Pi0_pt_vs_rap_onetwo_Target",
"Pi0_pt_vs_rap_onetwo_Target; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60,
3705 new TH2D(
"Pi0_pt_vs_rap_est_onetwo_Target",
"Pi0_pt_vs_rap_est_onetwo_Target; rapidity y; p_{t} in GeV/c ", 10, 0.,
3709 new TH1D(
"DalitzPi0_onetwo_Target",
"DalitzPi0_onetwo_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3712 new TH1D(
"PhotonsPi0_onetwo_Target",
"PhotonsPi0_onetwo_Target; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3718 "GammaInvMassReco_all_Outside",
"GammaInvMassReco_all_Outside; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3721 new TH1D(
"GammaOpeningAngleReco_all_Outside",
"GammaOpeningAngleReco_all_Outside; angle [deg];#", 200, -0.1, 19.9);
3723 Pdg_all_Outside =
new TH1D(
"Pdg_all_Outside",
"Pdg_all_Outside; Id;#", 800, 0, 400);
3725 P_reco_all_Outside =
new TH1D(
"P_reco_all_Outside",
"P_reco_all_Outside; P in GeV/c^{2};#", 600, 0, 6);
3727 Pt_reco_all_Outside =
new TH1D(
"Pt_reco_all_Outside",
"Pt_reco_all_Outside; P_{t} in GeV/c^{2};#", 300, 0, 3);
3730 new TH1D(
"Pi0InvMassReco_all_Outside",
"Pi0InvMassReco_all_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3733 new TH1D(
"EMT_InvMass_all_Outside",
"EMT_InvMass_all_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3736 "Pi0_pt_vs_rap_all_Outside",
"Pi0_pt_vs_rap_all_Outside; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3739 new TH2D(
"Pi0_pt_vs_rap_est_all_Outside",
"Pi0_pt_vs_rap_est_all_Outside; rapidity y; p_{t} in GeV/c ", 10, 0., 4.,
3743 new TH1D(
"DalitzPi0_all_Outside",
"DalitzPi0_all_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3746 new TH1D(
"PhotonsPi0_all_Outside",
"PhotonsPi0_all_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3752 "GammaInvMassReco_zero_Outside",
"GammaInvMassReco_zero_Outside; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3755 "GammaOpeningAngleReco_zero_Outside; angle [deg];#", 200, -0.1, 19.9);
3757 Pdg_zero_Outside =
new TH1D(
"Pdg_zero_Outside",
"Pdg_zero_Outside; Id;#", 800, 0, 400);
3759 P_reco_zero_Outside =
new TH1D(
"P_reco_zero_Outside",
"P_reco_zero_Outside; P in GeV/c^{2};#", 600, 0, 6);
3761 Pt_reco_zero_Outside =
new TH1D(
"Pt_reco_zero_Outside",
"Pt_reco_zero_Outside; P_{t} in GeV/c^{2};#", 300, 0, 3);
3764 new TH1D(
"Pi0InvMassReco_zero_Outside",
"Pi0InvMassReco_zero_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3767 new TH1D(
"EMT_InvMass_zero_Outside",
"EMT_InvMass_zero_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3770 "Pi0_pt_vs_rap_zero_Outside",
"Pi0_pt_vs_rap_zero_Outside; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3773 new TH2D(
"Pi0_pt_vs_rap_est_zero_Outside",
"Pi0_pt_vs_rap_est_zero_Outside; rapidity y; p_{t} in GeV/c ", 10, 0.,
3777 new TH1D(
"DalitzPi0_zero_Outside",
"DalitzPi0_zero_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3780 new TH1D(
"PhotonsPi0_zero_Outside",
"PhotonsPi0_zero_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3786 "GammaInvMassReco_one_Outside",
"GammaInvMassReco_one_Outside; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3789 new TH1D(
"GammaOpeningAngleReco_one_Outside",
"GammaOpeningAngleReco_one_Outside; angle [deg];#", 200, -0.1, 19.9);
3791 Pdg_one_Outside =
new TH1D(
"Pdg_one_Outside",
"Pdg_one_Outside; Id;#", 800, 0, 400);
3793 P_reco_one_Outside =
new TH1D(
"P_reco_one_Outside",
"P_reco_one_Outside; P in GeV/c^{2};#", 600, 0, 6);
3795 Pt_reco_one_Outside =
new TH1D(
"Pt_reco_one_Outside",
"Pt_reco_one_Outside; P_{t} in GeV/c^{2};#", 300, 0, 3);
3798 new TH1D(
"Pi0InvMassReco_one_Outside",
"Pi0InvMassReco_one_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3801 new TH1D(
"EMT_InvMass_one_Outside",
"EMT_InvMass_one_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3804 "Pi0_pt_vs_rap_one_Outside",
"Pi0_pt_vs_rap_one_Outside; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3807 new TH2D(
"Pi0_pt_vs_rap_est_one_Outside",
"Pi0_pt_vs_rap_est_one_Outside; rapidity y; p_{t} in GeV/c ", 10, 0., 4.,
3811 new TH1D(
"DalitzPi0_one_Outside",
"DalitzPi0_one_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3814 new TH1D(
"PhotonsPi0_one_Outside",
"PhotonsPi0_one_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3820 "GammaInvMassReco_two_Outside",
"GammaInvMassReco_two_Outside; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3823 new TH1D(
"GammaOpeningAngleReco_two_Outside",
"GammaOpeningAngleReco_two_Outside; angle [deg];#", 200, -0.1, 19.9);
3825 Pdg_two_Outside =
new TH1D(
"Pdg_two_Outside",
"Pdg_two_Outside; Id;#", 800, 0, 400);
3827 P_reco_two_Outside =
new TH1D(
"P_reco_two_Outside",
"P_reco_two_Outside; P in GeV/c^{2};#", 600, 0, 6);
3829 Pt_reco_two_Outside =
new TH1D(
"Pt_reco_two_Outside",
"Pt_reco_two_Outside; P_{t} in GeV/c^{2};#", 300, 0, 3);
3832 new TH1D(
"Pi0InvMassReco_two_Outside",
"Pi0InvMassReco_two_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3835 new TH1D(
"EMT_InvMass_two_Outside",
"EMT_InvMass_two_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3838 "Pi0_pt_vs_rap_two_Outside",
"Pi0_pt_vs_rap_two_Outside; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3841 new TH2D(
"Pi0_pt_vs_rap_est_two_Outside",
"Pi0_pt_vs_rap_est_two_Outside; rapidity y; p_{t} in GeV/c ", 10, 0., 4.,
3845 new TH1D(
"DalitzPi0_two_Outside",
"DalitzPi0_two_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3848 new TH1D(
"PhotonsPi0_two_Outside",
"PhotonsPi0_two_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3854 new TH1D(
"GammaInvMassReco_onetwo_Outside",
"GammaInvMassReco_onetwo_Outside; invariant mass in GeV/c^{2};#", 110,
3858 "GammaOpeningAngleReco_onetwo_Outside",
"GammaOpeningAngleReco_onetwo_Outside; angle [deg];#", 200, -0.1, 19.9);
3860 Pdg_onetwo_Outside =
new TH1D(
"Pdg_onetwo_Outside",
"Pdg_onetwo_Outside; Id;#", 800, 0, 400);
3862 P_reco_onetwo_Outside =
new TH1D(
"P_reco_onetwo_Outside",
"P_reco_onetwo_Outside; P in GeV/c^{2};#", 600, 0, 6);
3865 new TH1D(
"Pt_reco_onetwo_Outside",
"Pt_reco_onetwo_Outside; P_{t} in GeV/c^{2};#", 300, 0, 3);
3868 "Pi0InvMassReco_onetwo_Outside",
"Pi0InvMassReco_onetwo_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3871 new TH1D(
"EMT_InvMass_onetwo_Outside",
"EMT_InvMass_onetwo_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3874 new TH2D(
"Pi0_pt_vs_rap_onetwo_Outside",
"Pi0_pt_vs_rap_onetwo_Outside; rapidity y; p_{t} in GeV/c ", 90, -2., 7.,
3878 new TH2D(
"Pi0_pt_vs_rap_est_onetwo_Outside",
"Pi0_pt_vs_rap_est_onetwo_Outside; rapidity y; p_{t} in GeV/c ", 10,
3879 0., 4., 40, 0., 4.);
3882 new TH1D(
"DalitzPi0_onetwo_Outside",
"DalitzPi0_onetwo_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3885 new TH1D(
"PhotonsPi0_onetwo_Outside",
"PhotonsPi0_onetwo_Outside; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3891 new TH1D(
"GammaInvMassReco_all_Both",
"GammaInvMassReco_all_Both; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3894 new TH1D(
"GammaOpeningAngleReco_all_Both",
"GammaOpeningAngleReco_all_Both; angle [deg];#", 200, -0.1, 19.9);
3896 Pdg_all_Both =
new TH1D(
"Pdg_all_Both",
"Pdg_all_Both; Id;#", 800, 0, 400);
3898 P_reco_all_Both =
new TH1D(
"P_reco_all_Both",
"P_reco_all_Both; P in GeV/c^{2};#", 600, 0, 6);
3900 Pt_reco_all_Both =
new TH1D(
"Pt_reco_all_Both",
"Pt_reco_all_Both; P_{t} in GeV/c^{2};#", 300, 0, 3);
3903 new TH1D(
"Pi0InvMassReco_all_Both",
"Pi0InvMassReco_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3906 new TH1D(
"EMT_InvMass_all_Both",
"EMT_InvMass_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3909 new TH2D(
"Pi0_pt_vs_rap_all_Both",
"Pi0_pt_vs_rap_all_Both; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3912 "Pi0_pt_vs_rap_est_all_Both",
"Pi0_pt_vs_rap_est_all_Both; rapidity y; p_{t} in GeV/c ", 10, 0., 4., 40, 0., 4.);
3915 new TH1D(
"DalitzPi0_all_Both",
"DalitzPi0_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3918 new TH1D(
"PhotonsPi0_all_Both",
"PhotonsPi0_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3924 "GammaInvMassReco_zero_Both; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3927 new TH1D(
"GammaOpeningAngleReco_zero_Both",
"GammaOpeningAngleReco_zero_Both; angle [deg];#", 200, -0.1, 19.9);
3929 Pdg_zero_Both =
new TH1D(
"Pdg_zero_Both",
"Pdg_zero_Both; Id;#", 800, 0, 400);
3931 P_reco_zero_Both =
new TH1D(
"P_reco_zero_Both",
"P_reco_zero_Both; P in GeV/c^{2};#", 600, 0, 6);
3933 Pt_reco_zero_Both =
new TH1D(
"Pt_reco_zero_Both",
"Pt_reco_zero_Both; P_{t} in GeV/c^{2};#", 300, 0, 3);
3936 new TH1D(
"Pi0InvMassReco_zero_Both",
"Pi0InvMassReco_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3939 new TH1D(
"EMT_InvMass_zero_Both",
"EMT_InvMass_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3941 Pi0_pt_vs_rap_zero_Both =
new TH2D(
"Pi0_pt_vs_rap_zero_Both",
"Pi0_pt_vs_rap_zero_Both; rapidity y; p_{t} in GeV/c ",
3942 90, -2., 7., 60, -1., 5.);
3945 "Pi0_pt_vs_rap_est_zero_Both",
"Pi0_pt_vs_rap_est_zero_Both; rapidity y; p_{t} in GeV/c ", 10, 0., 4., 40, 0., 4.);
3948 new TH1D(
"DalitzPi0_zero_Both",
"DalitzPi0_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3951 new TH1D(
"PhotonsPi0_zero_Both",
"PhotonsPi0_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3957 new TH1D(
"GammaInvMassReco_one_Both",
"GammaInvMassReco_one_Both; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3960 new TH1D(
"GammaOpeningAngleReco_one_Both",
"GammaOpeningAngleReco_one_Both; angle [deg];#", 200, -0.1, 19.9);
3962 Pdg_one_Both =
new TH1D(
"Pdg_one_Both",
"Pdg_one_Both; Id;#", 800, 0, 400);
3964 P_reco_one_Both =
new TH1D(
"P_reco_one_Both",
"P_reco_one_Both; P in GeV/c^{2};#", 600, 0, 6);
3966 Pt_reco_one_Both =
new TH1D(
"Pt_reco_one_Both",
"Pt_reco_one_Both; P_{t} in GeV/c^{2};#", 300, 0, 3);
3969 new TH1D(
"Pi0InvMassReco_one_Both",
"Pi0InvMassReco_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3972 new TH1D(
"EMT_InvMass_one_Both",
"EMT_InvMass_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3975 new TH2D(
"Pi0_pt_vs_rap_one_Both",
"Pi0_pt_vs_rap_one_Both; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
3978 "Pi0_pt_vs_rap_est_one_Both",
"Pi0_pt_vs_rap_est_one_Both; rapidity y; p_{t} in GeV/c ", 10, 0., 4., 40, 0., 4.);
3981 new TH1D(
"DalitzPi0_one_Both",
"DalitzPi0_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3984 new TH1D(
"PhotonsPi0_one_Both",
"PhotonsPi0_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
3990 new TH1D(
"GammaInvMassReco_two_Both",
"GammaInvMassReco_two_Both; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
3993 new TH1D(
"GammaOpeningAngleReco_two_Both",
"GammaOpeningAngleReco_two_Both; angle [deg];#", 200, -0.1, 19.9);
3995 Pdg_two_Both =
new TH1D(
"Pdg_two_Both",
"Pdg_two_Both; Id;#", 800, 0, 400);
3997 P_reco_two_Both =
new TH1D(
"P_reco_two_Both",
"P_reco_two_Both; P in GeV/c^{2};#", 600, 0, 6);
3999 Pt_reco_two_Both =
new TH1D(
"Pt_reco_two_Both",
"Pt_reco_two_Both; P_{t} in GeV/c^{2};#", 300, 0, 3);
4002 new TH1D(
"Pi0InvMassReco_two_Both",
"Pi0InvMassReco_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
4005 new TH1D(
"EMT_InvMass_two_Both",
"EMT_InvMass_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
4008 new TH2D(
"Pi0_pt_vs_rap_two_Both",
"Pi0_pt_vs_rap_two_Both; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
4011 "Pi0_pt_vs_rap_est_two_Both",
"Pi0_pt_vs_rap_est_two_Both; rapidity y; p_{t} in GeV/c ", 10, 0., 4., 40, 0., 4.);
4014 new TH1D(
"DalitzPi0_two_Both",
"DalitzPi0_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
4017 new TH1D(
"PhotonsPi0_two_Both",
"PhotonsPi0_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
4023 "GammaInvMassReco_onetwo_Both",
"GammaInvMassReco_onetwo_Both; invariant mass in GeV/c^{2};#", 110, -0.01, 0.1);
4026 new TH1D(
"GammaOpeningAngleReco_onetwo_Both",
"GammaOpeningAngleReco_onetwo_Both; angle [deg];#", 200, -0.1, 19.9);
4028 Pdg_onetwo_Both =
new TH1D(
"Pdg_onetwo_Both",
"Pdg_onetwo_Both; Id;#", 800, 0, 400);
4030 P_reco_onetwo_Both =
new TH1D(
"P_reco_onetwo_Both",
"P_reco_onetwo_Both; P in GeV/c^{2};#", 600, 0, 6);
4032 Pt_reco_onetwo_Both =
new TH1D(
"Pt_reco_onetwo_Both",
"Pt_reco_onetwo_Both; P_{t} in GeV/c^{2};#", 300, 0, 3);
4035 new TH1D(
"Pi0InvMassReco_onetwo_Both",
"Pi0InvMassReco_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
4038 new TH1D(
"EMT_InvMass_onetwo_Both",
"EMT_InvMass_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
4041 "Pi0_pt_vs_rap_onetwo_Both",
"Pi0_pt_vs_rap_onetwo_Both; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
4044 new TH2D(
"Pi0_pt_vs_rap_est_onetwo_Both",
"Pi0_pt_vs_rap_est_onetwo_Both; rapidity y; p_{t} in GeV/c ", 10, 0., 4.,
4048 new TH1D(
"DalitzPi0_onetwo_Both",
"DalitzPi0_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
4051 new TH1D(
"PhotonsPi0_onetwo_Both",
"PhotonsPi0_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
4056 Pdg_vs_Distance =
new TH2D(
"Pdg_vs_Distance",
"Pdg_vs_Distance; pdg; distance in cm", 2500, 0, 2499, 500, 0, 50);
4059 "Distance between projected track and center of the ring (for e+ "
4060 "and e-); P in GeV/c^{2}; distance in cm",
4061 300, 0, 3, 300, 0, 15);
4067 "MultiplicityGamma_all_Target; Nof gammas in event; invariant "
4068 "mass in GeV/c^{2};#",
4069 400, 0, 30, 1000, 0, 2.0);
4072 "MultiplicityGamma_zero_Target; Nof gammas in event; invariant "
4073 "mass in GeV/c^{2};#",
4074 400, 0, 30, 1000, 0, 2.0);
4077 "MultiplicityGamma_one_Target; Nof gammas in event; invariant "
4078 "mass in GeV/c^{2};#",
4079 400, 0, 30, 1000, 0, 2.0);
4082 "MultiplicityGamma_two_Target; Nof gammas in event; invariant "
4083 "mass in GeV/c^{2};#",
4084 400, 0, 30, 1000, 0, 2.0);
4087 "MultiplicityGamma_onetwo_Target; Nof gammas in event; invariant "
4088 "mass in GeV/c^{2};#",
4089 400, 0, 30, 1000, 0, 2.0);
4093 "MultiplicityChargedParticles_all_Target; Nof charged particles "
4094 "in event; invariant mass in GeV/c^{2};#",
4095 1000, 0, 1000, 1000, 0, 2.0);
4098 "MultiplicityChargedParticles_zero_Target; Nof charged particles "
4099 "in event; invariant mass in GeV/c^{2};#",
4100 1000, 0, 1000, 1000, 0, 2.0);
4103 "MultiplicityChargedParticles_one_Target; Nof charged particles "
4104 "in event; invariant mass in GeV/c^{2};#",
4105 1000, 0, 1000, 1000, 0, 2.0);
4108 "MultiplicityChargedParticles_two_Target; Nof charged particles "
4109 "in event; invariant mass in GeV/c^{2};#",
4110 1000, 0, 1000, 1000, 0, 2.0);
4113 "MultiplicityChargedParticles_onetwo_Target; Nof charged "
4114 "particles in event; invariant mass in GeV/c^{2};#",
4115 1000, 0, 1000, 1000, 0, 2.0);
4120 "MultiplicityGamma_all_Outside; Nof gammas in event; invariant "
4121 "mass in GeV/c^{2};#",
4122 400, 0, 30, 1000, 0, 2.0);
4125 "MultiplicityGamma_zero_Outside; Nof gammas in event; invariant "
4126 "mass in GeV/c^{2};#",
4127 400, 0, 30, 1000, 0, 2.0);
4130 "MultiplicityGamma_one_Outside; Nof gammas in event; invariant "
4131 "mass in GeV/c^{2};#",
4132 400, 0, 30, 1000, 0, 2.0);
4135 "MultiplicityGamma_two_Outside; Nof gammas in event; invariant "
4136 "mass in GeV/c^{2};#",
4137 400, 0, 30, 1000, 0, 2.0);
4140 "MultiplicityGamma_onetwo_Outside; Nof gammas in event; invariant "
4141 "mass in GeV/c^{2};#",
4142 400, 0, 30, 1000, 0, 2.0);
4146 "MultiplicityChargedParticles_all_Outside; Nof charged particles "
4147 "in event; invariant mass in GeV/c^{2};#",
4148 1000, 0, 1000, 1000, 0, 2.0);
4151 new TH2D(
"MultiplicityChargedParticles_zero_Outside",
4152 "MultiplicityChargedParticles_zero_Outside; Nof charged particles "
4153 "in event; invariant mass in GeV/c^{2};#",
4154 1000, 0, 1000, 1000, 0, 2.0);
4157 "MultiplicityChargedParticles_one_Outside; Nof charged particles "
4158 "in event; invariant mass in GeV/c^{2};#",
4159 1000, 0, 1000, 1000, 0, 2.0);
4162 "MultiplicityChargedParticles_two_Outside; Nof charged particles "
4163 "in event; invariant mass in GeV/c^{2};#",
4164 1000, 0, 1000, 1000, 0, 2.0);
4167 "MultiplicityChargedParticles_onetwo_Outside; Nof charged "
4168 "particles in event; invariant mass in GeV/c^{2};#",
4169 1000, 0, 1000, 1000, 0, 2.0);
4175 "MultiplicityGamma_all_Both; Nof gammas in event; invariant mass "
4177 400, 0, 30, 1000, 0, 2.0);
4180 "MultiplicityGamma_zero_Both; Nof gammas in event; invariant mass "
4182 400, 0, 30, 1000, 0, 2.0);
4185 "MultiplicityGamma_one_Both; Nof gammas in event; invariant mass "
4187 400, 0, 30, 1000, 0, 2.0);
4190 "MultiplicityGamma_two_Both; Nof gammas in event; invariant mass "
4192 400, 0, 30, 1000, 0, 2.0);
4195 "MultiplicityGamma_onetwo_Both; Nof gammas in event; invariant "
4196 "mass in GeV/c^{2};#",
4197 400, 0, 30, 1000, 0, 2.0);
4201 "MultiplicityChargedParticles_all_Both; Nof charged particles in "
4202 "event; invariant mass in GeV/c^{2};#",
4203 1000, 0, 1000, 1000, 0, 2.0);
4206 "MultiplicityChargedParticles_zero_Both; Nof charged particles in "
4207 "event; invariant mass in GeV/c^{2};#",
4208 1000, 0, 1000, 1000, 0, 2.0);
4211 "MultiplicityChargedParticles_one_Both; Nof charged particles in "
4212 "event; invariant mass in GeV/c^{2};#",
4213 1000, 0, 1000, 1000, 0, 2.0);
4216 "MultiplicityChargedParticles_two_Both; Nof charged particles in "
4217 "event; invariant mass in GeV/c^{2};#",
4218 1000, 0, 1000, 1000, 0, 2.0);
4221 "MultiplicityChargedParticles_onetwo_Both; Nof charged particles "
4222 "in event; invariant mass in GeV/c^{2};#",
4223 1000, 0, 1000, 1000, 0, 2.0);
4230 "rapidity = (1.2-1.6) P_{t} = (0.0-0.1 "
4231 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4235 "rapidity = (1.2-1.6) P_{t} = (0.1-0.2 "
4236 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4240 "rapidity = (1.2-1.6) P_{t} = (0.2-0.3 "
4241 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4245 "rapidity = (1.2-1.6) P_{t} = (0.3-0.4 "
4246 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4250 "rapidity = (1.2-1.6) P_{t} = (0.4-0.5 "
4251 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4255 "rapidity = (1.2-1.6) P_{t} = (0.5-0.6 "
4256 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4260 "rapidity = (1.2-1.6) P_{t} = (0.6-0.7 "
4261 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4265 "rapidity = (1.2-1.6) P_{t} = (0.7-0.8 "
4266 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4270 "rapidity = (1.2-1.6) P_{t} = (0.8-0.9 "
4271 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4275 "rapidity = (1.2-1.6) P_{t} = (0.9-1.0 "
4276 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4280 "rapidity = (1.2-1.6) P_{t} = (1.0-1.1 "
4281 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4285 "rapidity = (1.2-1.6) P_{t} = (1.1-1.2 "
4286 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4290 "rapidity = (1.2-1.6) P_{t} = (1.2-1.3 "
4291 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4295 "rapidity = (1.2-1.6) P_{t} = (1.3-1.4 "
4296 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4300 "rapidity = (1.2-1.6) P_{t} = (1.4-1.5 "
4301 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4305 "rapidity = (1.2-1.6) P_{t} = (1.5-1.6 "
4306 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4310 "rapidity = (1.2-1.6) P_{t} = (1.6-1.7 "
4311 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4315 "rapidity = (1.2-1.6) P_{t} = (1.7-1.8 "
4316 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4320 "rapidity = (1.2-1.6) P_{t} = (1.8-1.9 "
4321 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4325 "rapidity = (1.2-1.6) P_{t} = (1.9-2.0 "
4326 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4330 "rapidity = (1.6-2.0) P_{t} = (0.0-0.1 "
4331 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4335 "rapidity = (1.6-2.0) P_{t} = (0.1-0.2 "
4336 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4340 "rapidity = (1.6-2.0) P_{t} = (0.2-0.3 "
4341 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4345 "rapidity = (1.6-2.0) P_{t} = (0.3-0.4 "
4346 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4350 "rapidity = (1.6-2.0) P_{t} = (0.4-0.5 "
4351 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4355 "rapidity = (1.6-2.0) P_{t} = (0.5-0.6 "
4356 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4360 "rapidity = (1.6-2.0) P_{t} = (0.6-0.7 "
4361 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4365 "rapidity = (1.6-2.0) P_{t} = (0.7-0.8 "
4366 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4370 "rapidity = (1.6-2.0) P_{t} = (0.8-0.9 "
4371 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4375 "rapidity = (1.6-2.0) P_{t} = (0.9-1.0 "
4376 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4380 "rapidity = (1.6-2.0) P_{t} = (1.0-1.1 "
4381 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4385 "rapidity = (1.6-2.0) P_{t} = (1.1-1.2 "
4386 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4390 "rapidity = (1.6-2.0) P_{t} = (1.2-1.3 "
4391 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4395 "rapidity = (1.6-2.0) P_{t} = (1.3-1.4 "
4396 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4400 "rapidity = (1.6-2.0) P_{t} = (1.4-1.5 "
4401 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4405 "rapidity = (1.6-2.0) P_{t} = (1.5-1.6 "
4406 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4410 "rapidity = (1.6-2.0) P_{t} = (1.6-1.7 "
4411 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4415 "rapidity = (1.6-2.0) P_{t} = (1.7-1.8 "
4416 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4420 "rapidity = (1.6-2.0) P_{t} = (1.8-1.9 "
4421 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4425 "rapidity = (1.6-2.0) P_{t} = (1.9-2.0 "
4426 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4430 "rapidity = (2.0-2.4) P_{t} = (0.0-0.1 "
4431 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4435 "rapidity = (2.0-2.4) P_{t} = (0.1-0.2 "
4436 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4440 "rapidity = (2.0-2.4) P_{t} = (0.2-0.3 "
4441 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4445 "rapidity = (2.0-2.4) P_{t} = (0.3-0.4 "
4446 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4450 "rapidity = (2.0-2.4) P_{t} = (0.4-0.5 "
4451 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4455 "rapidity = (2.0-2.4) P_{t} = (0.5-0.6 "
4456 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4460 "rapidity = (2.0-2.4) P_{t} = (0.6-0.7 "
4461 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4465 "rapidity = (2.0-2.4) P_{t} = (0.7-0.8 "
4466 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4470 "rapidity = (2.0-2.4) P_{t} = (0.8-0.9 "
4471 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4475 "rapidity = (2.0-2.4) P_{t} = (0.9-1.0 "
4476 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4480 "rapidity = (2.0-2.4) P_{t} = (1.0-1.1 "
4481 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4485 "rapidity = (2.0-2.4) P_{t} = (1.1-1.2 "
4486 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4490 "rapidity = (2.0-2.4) P_{t} = (1.2-1.3 "
4491 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4495 "rapidity = (2.0-2.4) P_{t} = (1.3-1.4 "
4496 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4500 "rapidity = (2.0-2.4) P_{t} = (1.4-1.5 "
4501 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4505 "rapidity = (2.0-2.4) P_{t} = (1.5-1.6 "
4506 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4510 "rapidity = (2.0-2.4) P_{t} = (1.6-1.7 "
4511 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4515 "rapidity = (2.0-2.4) P_{t} = (1.7-1.8 "
4516 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4520 "rapidity = (2.0-2.4) P_{t} = (1.8-1.9 "
4521 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4525 "rapidity = (2.0-2.4) P_{t} = (1.9-2.0 "
4526 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4530 "rapidity = (2.4-2.8) P_{t} = (0.0-0.1 "
4531 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4535 "rapidity = (2.4-2.8) P_{t} = (0.1-0.2 "
4536 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4540 "rapidity = (2.4-2.8) P_{t} = (0.2-0.3 "
4541 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4545 "rapidity = (2.4-2.8) P_{t} = (0.3-0.4 "
4546 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4550 "rapidity = (2.4-2.8) P_{t} = (0.4-0.5 "
4551 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4555 "rapidity = (2.4-2.8) P_{t} = (0.5-0.6 "
4556 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4560 "rapidity = (2.4-2.8) P_{t} = (0.6-0.7 "
4561 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4565 "rapidity = (2.4-2.8) P_{t} = (0.7-0.8 "
4566 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4570 "rapidity = (2.4-2.8) P_{t} = (0.8-0.9 "
4571 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4575 "rapidity = (2.4-2.8) P_{t} = (0.9-1.0 "
4576 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4580 "rapidity = (2.4-2.8) P_{t} = (1.0-1.1 "
4581 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4585 "rapidity = (2.4-2.8) P_{t} = (1.1-1.2 "
4586 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4590 "rapidity = (2.4-2.8) P_{t} = (1.2-1.3 "
4591 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4595 "rapidity = (2.4-2.8) P_{t} = (1.3-1.4 "
4596 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4600 "rapidity = (2.4-2.8) P_{t} = (1.4-1.5 "
4601 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4605 "rapidity = (2.4-2.8) P_{t} = (1.5-1.6 "
4606 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4610 "rapidity = (2.8-3.2) P_{t} = (0.0-0.1 "
4611 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4615 "rapidity = (2.8-3.2) P_{t} = (0.1-0.2 "
4616 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4620 "rapidity = (2.8-3.2) P_{t} = (0.2-0.3 "
4621 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4625 "rapidity = (2.8-3.2) P_{t} = (0.3-0.4 "
4626 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4630 "rapidity = (2.8-3.2) P_{t} = (0.4-0.5 "
4631 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4635 "rapidity = (2.8-3.2) P_{t} = (0.5-0.6 "
4636 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4640 "rapidity = (2.8-3.2) P_{t} = (0.6-0.7 "
4641 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4645 "rapidity = (2.8-3.2) P_{t} = (0.7-0.8 "
4646 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4650 "rapidity = (2.8-3.2) P_{t} = (0.8-0.9 "
4651 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4655 "rapidity = (2.8-3.2) P_{t} = (0.9-1.0 "
4656 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4660 "rapidity = (2.8-3.2) P_{t} = (1.0-1.1 "
4661 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4665 "rapidity = (2.8-3.2) P_{t} = (1.1-1.2 "
4666 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4670 "rapidity = (3.2-3.6) P_{t} = (0.0-0.1 "
4671 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4675 "rapidity = (3.2-3.6) P_{t} = (0.1-0.2 "
4676 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4680 "rapidity = (3.2-3.6) P_{t} = (0.2-0.3 "
4681 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4685 "rapidity = (3.2-3.6) P_{t} = (0.3-0.4 "
4686 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4690 "rapidity = (3.2-3.6) P_{t} = (0.4-0.5 "
4691 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4695 "rapidity = (3.2-3.6) P_{t} = (0.5-0.6 "
4696 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4700 "rapidity = (3.2-3.6) P_{t} = (0.6-0.7 "
4701 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4705 "rapidity = (3.2-3.6) P_{t} = (0.7-0.8 "
4706 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4710 "rapidity = (3.6-4.0) P_{t} = (0.0-0.1 "
4711 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4715 "rapidity = (3.6-4.0) P_{t} = (0.1-0.2 "
4716 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4720 "rapidity = (3.6-4.0) P_{t} = (0.2-0.3 "
4721 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4725 "rapidity = (3.6-4.0) P_{t} = (0.3-0.4 "
4726 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
4731 "rapidity = (1.2-1.6) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
4732 "mass in GeV/c^{2};#",
4736 "rapidity = (1.2-1.6) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
4737 "mass in GeV/c^{2};#",
4741 "rapidity = (1.2-1.6) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
4742 "mass in GeV/c^{2};#",
4746 "rapidity = (1.2-1.6) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
4747 "mass in GeV/c^{2};#",
4751 "rapidity = (1.2-1.6) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
4752 "mass in GeV/c^{2};#",
4756 "rapidity = (1.2-1.6) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
4757 "mass in GeV/c^{2};#",
4761 "rapidity = (1.2-1.6) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
4762 "mass in GeV/c^{2};#",
4766 "rapidity = (1.2-1.6) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
4767 "mass in GeV/c^{2};#",
4771 "rapidity = (1.2-1.6) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
4772 "mass in GeV/c^{2};#",
4776 "rapidity = (1.2-1.6) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
4777 "mass in GeV/c^{2};#",
4781 "rapidity = (1.2-1.6) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
4782 "mass in GeV/c^{2};#",
4786 "rapidity = (1.2-1.6) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
4787 "mass in GeV/c^{2};#",
4791 "rapidity = (1.2-1.6) P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant "
4792 "mass in GeV/c^{2};#",
4796 "rapidity = (1.2-1.6) P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant "
4797 "mass in GeV/c^{2};#",
4801 "rapidity = (1.2-1.6) P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant "
4802 "mass in GeV/c^{2};#",
4806 "rapidity = (1.2-1.6) P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant "
4807 "mass in GeV/c^{2};#",
4811 "rapidity = (1.2-1.6) P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant "
4812 "mass in GeV/c^{2};#",
4816 "rapidity = (1.2-1.6) P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant "
4817 "mass in GeV/c^{2};#",
4821 "rapidity = (1.2-1.6) P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant "
4822 "mass in GeV/c^{2};#",
4826 "rapidity = (1.2-1.6) P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant "
4827 "mass in GeV/c^{2};#",
4831 "rapidity = (1.6-2.0) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
4832 "mass in GeV/c^{2};#",
4836 "rapidity = (1.6-2.0) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
4837 "mass in GeV/c^{2};#",
4841 "rapidity = (1.6-2.0) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
4842 "mass in GeV/c^{2};#",
4846 "rapidity = (1.6-2.0) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
4847 "mass in GeV/c^{2};#",
4851 "rapidity = (1.6-2.0) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
4852 "mass in GeV/c^{2};#",
4856 "rapidity = (1.6-2.0) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
4857 "mass in GeV/c^{2};#",
4861 "rapidity = (1.6-2.0) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
4862 "mass in GeV/c^{2};#",
4866 "rapidity = (1.6-2.0) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
4867 "mass in GeV/c^{2};#",
4871 "rapidity = (1.6-2.0) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
4872 "mass in GeV/c^{2};#",
4876 "rapidity = (1.6-2.0) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
4877 "mass in GeV/c^{2};#",
4881 "rapidity = (1.6-2.0) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
4882 "mass in GeV/c^{2};#",
4886 "rapidity = (1.6-2.0) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
4887 "mass in GeV/c^{2};#",
4891 "rapidity = (1.6-2.0) P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant "
4892 "mass in GeV/c^{2};#",
4896 "rapidity = (1.6-2.0) P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant "
4897 "mass in GeV/c^{2};#",
4901 "rapidity = (1.6-2.0) P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant "
4902 "mass in GeV/c^{2};#",
4906 "rapidity = (1.6-2.0) P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant "
4907 "mass in GeV/c^{2};#",
4911 "rapidity = (1.6-2.0) P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant "
4912 "mass in GeV/c^{2};#",
4916 "rapidity = (1.6-2.0) P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant "
4917 "mass in GeV/c^{2};#",
4921 "rapidity = (1.6-2.0) P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant "
4922 "mass in GeV/c^{2};#",
4926 "rapidity = (1.6-2.0) P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant "
4927 "mass in GeV/c^{2};#",
4931 "rapidity = (2.0-2.4) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
4932 "mass in GeV/c^{2};#",
4936 "rapidity = (2.0-2.4) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
4937 "mass in GeV/c^{2};#",
4941 "rapidity = (2.0-2.4) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
4942 "mass in GeV/c^{2};#",
4946 "rapidity = (2.0-2.4) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
4947 "mass in GeV/c^{2};#",
4951 "rapidity = (2.0-2.4) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
4952 "mass in GeV/c^{2};#",
4956 "rapidity = (2.0-2.4) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
4957 "mass in GeV/c^{2};#",
4961 "rapidity = (2.0-2.4) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
4962 "mass in GeV/c^{2};#",
4966 "rapidity = (2.0-2.4) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
4967 "mass in GeV/c^{2};#",
4971 "rapidity = (2.0-2.4) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
4972 "mass in GeV/c^{2};#",
4976 "rapidity = (2.0-2.4) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
4977 "mass in GeV/c^{2};#",
4981 "rapidity = (2.0-2.4) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
4982 "mass in GeV/c^{2};#",
4986 "rapidity = (2.0-2.4) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
4987 "mass in GeV/c^{2};#",
4991 "rapidity = (2.0-2.4) P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant "
4992 "mass in GeV/c^{2};#",
4996 "rapidity = (2.0-2.4) P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant "
4997 "mass in GeV/c^{2};#",
5001 "rapidity = (2.0-2.4) P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant "
5002 "mass in GeV/c^{2};#",
5006 "rapidity = (2.0-2.4) P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant "
5007 "mass in GeV/c^{2};#",
5011 "rapidity = (2.0-2.4) P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant "
5012 "mass in GeV/c^{2};#",
5016 "rapidity = (2.0-2.4) P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant "
5017 "mass in GeV/c^{2};#",
5021 "rapidity = (2.0-2.4) P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant "
5022 "mass in GeV/c^{2};#",
5026 "rapidity = (2.0-2.4) P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant "
5027 "mass in GeV/c^{2};#",
5031 "rapidity = (2.4-2.8) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
5032 "mass in GeV/c^{2};#",
5036 "rapidity = (2.4-2.8) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
5037 "mass in GeV/c^{2};#",
5041 "rapidity = (2.4-2.8) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
5042 "mass in GeV/c^{2};#",
5046 "rapidity = (2.4-2.8) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
5047 "mass in GeV/c^{2};#",
5051 "rapidity = (2.4-2.8) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
5052 "mass in GeV/c^{2};#",
5056 "rapidity = (2.4-2.8) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
5057 "mass in GeV/c^{2};#",
5061 "rapidity = (2.4-2.8) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
5062 "mass in GeV/c^{2};#",
5066 "rapidity = (2.4-2.8) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
5067 "mass in GeV/c^{2};#",
5071 "rapidity = (2.4-2.8) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
5072 "mass in GeV/c^{2};#",
5076 "rapidity = (2.4-2.8) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
5077 "mass in GeV/c^{2};#",
5081 "rapidity = (2.4-2.8) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
5082 "mass in GeV/c^{2};#",
5086 "rapidity = (2.4-2.8) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
5087 "mass in GeV/c^{2};#",
5091 "rapidity = (2.4-2.8) P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant "
5092 "mass in GeV/c^{2};#",
5096 "rapidity = (2.4-2.8) P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant "
5097 "mass in GeV/c^{2};#",
5101 "rapidity = (2.4-2.8) P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant "
5102 "mass in GeV/c^{2};#",
5106 "rapidity = (2.4-2.8) P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant "
5107 "mass in GeV/c^{2};#",
5111 "rapidity = (2.8-3.2) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
5112 "mass in GeV/c^{2};#",
5116 "rapidity = (2.8-3.2) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
5117 "mass in GeV/c^{2};#",
5121 "rapidity = (2.8-3.2) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
5122 "mass in GeV/c^{2};#",
5126 "rapidity = (2.8-3.2) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
5127 "mass in GeV/c^{2};#",
5131 "rapidity = (2.8-3.2) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
5132 "mass in GeV/c^{2};#",
5136 "rapidity = (2.8-3.2) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
5137 "mass in GeV/c^{2};#",
5141 "rapidity = (2.8-3.2) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
5142 "mass in GeV/c^{2};#",
5146 "rapidity = (2.8-3.2) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
5147 "mass in GeV/c^{2};#",
5151 "rapidity = (2.8-3.2) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
5152 "mass in GeV/c^{2};#",
5156 "rapidity = (2.8-3.2) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
5157 "mass in GeV/c^{2};#",
5161 "rapidity = (2.8-3.2) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
5162 "mass in GeV/c^{2};#",
5166 "rapidity = (2.8-3.2) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
5167 "mass in GeV/c^{2};#",
5171 "rapidity = (3.2-3.6) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
5172 "mass in GeV/c^{2};#",
5176 "rapidity = (3.2-3.6) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
5177 "mass in GeV/c^{2};#",
5181 "rapidity = (3.2-3.6) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
5182 "mass in GeV/c^{2};#",
5186 "rapidity = (3.2-3.6) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
5187 "mass in GeV/c^{2};#",
5191 "rapidity = (3.2-3.6) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
5192 "mass in GeV/c^{2};#",
5196 "rapidity = (3.2-3.6) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
5197 "mass in GeV/c^{2};#",
5201 "rapidity = (3.2-3.6) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
5202 "mass in GeV/c^{2};#",
5206 "rapidity = (3.2-3.6) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
5207 "mass in GeV/c^{2};#",
5211 "rapidity = (3.6-4.0) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
5212 "mass in GeV/c^{2};#",
5216 "rapidity = (3.6-4.0) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
5217 "mass in GeV/c^{2};#",
5221 "rapidity = (3.6-4.0) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
5222 "mass in GeV/c^{2};#",
5226 "rapidity = (3.6-4.0) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
5227 "mass in GeV/c^{2};#",
5234 "rapidity = (1.2-1.6) P_{t} = (0.0-0.1 "
5235 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5239 "rapidity = (1.2-1.6) P_{t} = (0.1-0.2 "
5240 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5244 "rapidity = (1.2-1.6) P_{t} = (0.2-0.3 "
5245 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5249 "rapidity = (1.2-1.6) P_{t} = (0.3-0.4 "
5250 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5254 "rapidity = (1.2-1.6) P_{t} = (0.4-0.5 "
5255 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5259 "rapidity = (1.2-1.6) P_{t} = (0.5-0.6 "
5260 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5264 "rapidity = (1.2-1.6) P_{t} = (0.6-0.7 "
5265 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5269 "rapidity = (1.2-1.6) P_{t} = (0.7-0.8 "
5270 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5274 "rapidity = (1.2-1.6) P_{t} = (0.8-0.9 "
5275 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5279 "rapidity = (1.2-1.6) P_{t} = (0.9-1.0 "
5280 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5284 "rapidity = (1.2-1.6) P_{t} = (1.0-1.1 "
5285 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5289 "rapidity = (1.2-1.6) P_{t} = (1.1-1.2 "
5290 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5294 "rapidity = (1.2-1.6) P_{t} = (1.2-1.3 "
5295 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5299 "rapidity = (1.2-1.6) P_{t} = (1.3-1.4 "
5300 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5304 "rapidity = (1.2-1.6) P_{t} = (1.4-1.5 "
5305 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5309 "rapidity = (1.2-1.6) P_{t} = (1.5-1.6 "
5310 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5314 "rapidity = (1.2-1.6) P_{t} = (1.6-1.7 "
5315 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5319 "rapidity = (1.2-1.6) P_{t} = (1.7-1.8 "
5320 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5324 "rapidity = (1.2-1.6) P_{t} = (1.8-1.9 "
5325 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5329 "rapidity = (1.2-1.6) P_{t} = (1.9-2.0 "
5330 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5334 "rapidity = (1.6-2.0) P_{t} = (0.0-0.1 "
5335 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5339 "rapidity = (1.6-2.0) P_{t} = (0.1-0.2 "
5340 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5344 "rapidity = (1.6-2.0) P_{t} = (0.2-0.3 "
5345 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5349 "rapidity = (1.6-2.0) P_{t} = (0.3-0.4 "
5350 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5354 "rapidity = (1.6-2.0) P_{t} = (0.4-0.5 "
5355 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5359 "rapidity = (1.6-2.0) P_{t} = (0.5-0.6 "
5360 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5364 "rapidity = (1.6-2.0) P_{t} = (0.6-0.7 "
5365 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5369 "rapidity = (1.6-2.0) P_{t} = (0.7-0.8 "
5370 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5374 "rapidity = (1.6-2.0) P_{t} = (0.8-0.9 "
5375 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5379 "rapidity = (1.6-2.0) P_{t} = (0.9-1.0 "
5380 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5384 "rapidity = (1.6-2.0) P_{t} = (1.0-1.1 "
5385 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5389 "rapidity = (1.6-2.0) P_{t} = (1.1-1.2 "
5390 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5394 "rapidity = (1.6-2.0) P_{t} = (1.2-1.3 "
5395 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5399 "rapidity = (1.6-2.0) P_{t} = (1.3-1.4 "
5400 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5404 "rapidity = (1.6-2.0) P_{t} = (1.4-1.5 "
5405 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5409 "rapidity = (1.6-2.0) P_{t} = (1.5-1.6 "
5410 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5414 "rapidity = (1.6-2.0) P_{t} = (1.6-1.7 "
5415 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5419 "rapidity = (1.6-2.0) P_{t} = (1.7-1.8 "
5420 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5424 "rapidity = (1.6-2.0) P_{t} = (1.8-1.9 "
5425 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5429 "rapidity = (1.6-2.0) P_{t} = (1.9-2.0 "
5430 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5434 "rapidity = (2.0-2.4) P_{t} = (0.0-0.1 "
5435 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5439 "rapidity = (2.0-2.4) P_{t} = (0.1-0.2 "
5440 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5444 "rapidity = (2.0-2.4) P_{t} = (0.2-0.3 "
5445 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5449 "rapidity = (2.0-2.4) P_{t} = (0.3-0.4 "
5450 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5454 "rapidity = (2.0-2.4) P_{t} = (0.4-0.5 "
5455 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5459 "rapidity = (2.0-2.4) P_{t} = (0.5-0.6 "
5460 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5464 "rapidity = (2.0-2.4) P_{t} = (0.6-0.7 "
5465 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5469 "rapidity = (2.0-2.4) P_{t} = (0.7-0.8 "
5470 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5474 "rapidity = (2.0-2.4) P_{t} = (0.8-0.9 "
5475 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5479 "rapidity = (2.0-2.4) P_{t} = (0.9-1.0 "
5480 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5484 "rapidity = (2.0-2.4) P_{t} = (1.0-1.1 "
5485 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5489 "rapidity = (2.0-2.4) P_{t} = (1.1-1.2 "
5490 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5494 "rapidity = (2.0-2.4) P_{t} = (1.2-1.3 "
5495 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5499 "rapidity = (2.0-2.4) P_{t} = (1.3-1.4 "
5500 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5504 "rapidity = (2.0-2.4) P_{t} = (1.4-1.5 "
5505 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5509 "rapidity = (2.0-2.4) P_{t} = (1.5-1.6 "
5510 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5514 "rapidity = (2.0-2.4) P_{t} = (1.6-1.7 "
5515 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5519 "rapidity = (2.0-2.4) P_{t} = (1.7-1.8 "
5520 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5524 "rapidity = (2.0-2.4) P_{t} = (1.8-1.9 "
5525 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5529 "rapidity = (2.0-2.4) P_{t} = (1.9-2.0 "
5530 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5534 "rapidity = (2.4-2.8) P_{t} = (0.0-0.1 "
5535 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5539 "rapidity = (2.4-2.8) P_{t} = (0.1-0.2 "
5540 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5544 "rapidity = (2.4-2.8) P_{t} = (0.2-0.3 "
5545 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5549 "rapidity = (2.4-2.8) P_{t} = (0.3-0.4 "
5550 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5554 "rapidity = (2.4-2.8) P_{t} = (0.4-0.5 "
5555 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5559 "rapidity = (2.4-2.8) P_{t} = (0.5-0.6 "
5560 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5564 "rapidity = (2.4-2.8) P_{t} = (0.6-0.7 "
5565 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5569 "rapidity = (2.4-2.8) P_{t} = (0.7-0.8 "
5570 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5574 "rapidity = (2.4-2.8) P_{t} = (0.8-0.9 "
5575 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5579 "rapidity = (2.4-2.8) P_{t} = (0.9-1.0 "
5580 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5584 "rapidity = (2.4-2.8) P_{t} = (1.0-1.1 "
5585 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5589 "rapidity = (2.4-2.8) P_{t} = (1.1-1.2 "
5590 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5594 "rapidity = (2.4-2.8) P_{t} = (1.2-1.3 "
5595 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5599 "rapidity = (2.4-2.8) P_{t} = (1.3-1.4 "
5600 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5604 "rapidity = (2.4-2.8) P_{t} = (1.4-1.5 "
5605 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5609 "rapidity = (2.4-2.8) P_{t} = (1.5-1.6 "
5610 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5614 "rapidity = (2.8-3.2) P_{t} = (0.0-0.1 "
5615 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5619 "rapidity = (2.8-3.2) P_{t} = (0.1-0.2 "
5620 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5624 "rapidity = (2.8-3.2) P_{t} = (0.2-0.3 "
5625 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5629 "rapidity = (2.8-3.2) P_{t} = (0.3-0.4 "
5630 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5634 "rapidity = (2.8-3.2) P_{t} = (0.4-0.5 "
5635 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5639 "rapidity = (2.8-3.2) P_{t} = (0.5-0.6 "
5640 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5644 "rapidity = (2.8-3.2) P_{t} = (0.6-0.7 "
5645 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5649 "rapidity = (2.8-3.2) P_{t} = (0.7-0.8 "
5650 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5654 "rapidity = (2.8-3.2) P_{t} = (0.8-0.9 "
5655 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5659 "rapidity = (2.8-3.2) P_{t} = (0.9-1.0 "
5660 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5664 "rapidity = (2.8-3.2) P_{t} = (1.0-1.1 "
5665 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5669 "rapidity = (2.8-3.2) P_{t} = (1.1-1.2 "
5670 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5674 "rapidity = (3.2-3.6) P_{t} = (0.0-0.1 "
5675 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5679 "rapidity = (3.2-3.6) P_{t} = (0.1-0.2 "
5680 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5684 "rapidity = (3.2-3.6) P_{t} = (0.2-0.3 "
5685 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5689 "rapidity = (3.2-3.6) P_{t} = (0.3-0.4 "
5690 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5694 "rapidity = (3.2-3.6) P_{t} = (0.4-0.5 "
5695 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5699 "rapidity = (3.2-3.6) P_{t} = (0.5-0.6 "
5700 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5704 "rapidity = (3.2-3.6) P_{t} = (0.6-0.7 "
5705 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5709 "rapidity = (3.2-3.6) P_{t} = (0.7-0.8 "
5710 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5714 "rapidity = (3.6-4.0) P_{t} = (0.0-0.1 "
5715 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5719 "rapidity = (3.6-4.0) P_{t} = (0.1-0.2 "
5720 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5724 "rapidity = (3.6-4.0) P_{t} = (0.2-0.3 "
5725 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5729 "rapidity = (3.6-4.0) P_{t} = (0.3-0.4 "
5730 "GeV/c^{2}) ;invariant mass in GeV/c^{2};#",
5735 "rapidity = (1.2-1.6) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
5736 "mass in GeV/c^{2};#",
5740 "rapidity = (1.2-1.6) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
5741 "mass in GeV/c^{2};#",
5745 "rapidity = (1.2-1.6) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
5746 "mass in GeV/c^{2};#",
5750 "rapidity = (1.2-1.6) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
5751 "mass in GeV/c^{2};#",
5755 "rapidity = (1.2-1.6) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
5756 "mass in GeV/c^{2};#",
5760 "rapidity = (1.2-1.6) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
5761 "mass in GeV/c^{2};#",
5765 "rapidity = (1.2-1.6) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
5766 "mass in GeV/c^{2};#",
5770 "rapidity = (1.2-1.6) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
5771 "mass in GeV/c^{2};#",
5775 "rapidity = (1.2-1.6) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
5776 "mass in GeV/c^{2};#",
5780 "rapidity = (1.2-1.6) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
5781 "mass in GeV/c^{2};#",
5785 "rapidity = (1.2-1.6) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
5786 "mass in GeV/c^{2};#",
5790 "rapidity = (1.2-1.6) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
5791 "mass in GeV/c^{2};#",
5795 "rapidity = (1.2-1.6) P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant "
5796 "mass in GeV/c^{2};#",
5800 "rapidity = (1.2-1.6) P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant "
5801 "mass in GeV/c^{2};#",
5805 "rapidity = (1.2-1.6) P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant "
5806 "mass in GeV/c^{2};#",
5810 "rapidity = (1.2-1.6) P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant "
5811 "mass in GeV/c^{2};#",
5815 "rapidity = (1.2-1.6) P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant "
5816 "mass in GeV/c^{2};#",
5820 "rapidity = (1.2-1.6) P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant "
5821 "mass in GeV/c^{2};#",
5825 "rapidity = (1.2-1.6) P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant "
5826 "mass in GeV/c^{2};#",
5830 "rapidity = (1.2-1.6) P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant "
5831 "mass in GeV/c^{2};#",
5835 "rapidity = (1.6-2.0) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
5836 "mass in GeV/c^{2};#",
5840 "rapidity = (1.6-2.0) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
5841 "mass in GeV/c^{2};#",
5845 "rapidity = (1.6-2.0) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
5846 "mass in GeV/c^{2};#",
5850 "rapidity = (1.6-2.0) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
5851 "mass in GeV/c^{2};#",
5855 "rapidity = (1.6-2.0) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
5856 "mass in GeV/c^{2};#",
5860 "rapidity = (1.6-2.0) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
5861 "mass in GeV/c^{2};#",
5865 "rapidity = (1.6-2.0) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
5866 "mass in GeV/c^{2};#",
5870 "rapidity = (1.6-2.0) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
5871 "mass in GeV/c^{2};#",
5875 "rapidity = (1.6-2.0) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
5876 "mass in GeV/c^{2};#",
5880 "rapidity = (1.6-2.0) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
5881 "mass in GeV/c^{2};#",
5885 "rapidity = (1.6-2.0) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
5886 "mass in GeV/c^{2};#",
5890 "rapidity = (1.6-2.0) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
5891 "mass in GeV/c^{2};#",
5895 "rapidity = (1.6-2.0) P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant "
5896 "mass in GeV/c^{2};#",
5900 "rapidity = (1.6-2.0) P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant "
5901 "mass in GeV/c^{2};#",
5905 "rapidity = (1.6-2.0) P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant "
5906 "mass in GeV/c^{2};#",
5910 "rapidity = (1.6-2.0) P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant "
5911 "mass in GeV/c^{2};#",
5915 "rapidity = (1.6-2.0) P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant "
5916 "mass in GeV/c^{2};#",
5920 "rapidity = (1.6-2.0) P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant "
5921 "mass in GeV/c^{2};#",
5925 "rapidity = (1.6-2.0) P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant "
5926 "mass in GeV/c^{2};#",
5930 "rapidity = (1.6-2.0) P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant "
5931 "mass in GeV/c^{2};#",
5935 "rapidity = (2.0-2.4) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
5936 "mass in GeV/c^{2};#",
5940 "rapidity = (2.0-2.4) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
5941 "mass in GeV/c^{2};#",
5945 "rapidity = (2.0-2.4) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
5946 "mass in GeV/c^{2};#",
5950 "rapidity = (2.0-2.4) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
5951 "mass in GeV/c^{2};#",
5955 "rapidity = (2.0-2.4) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
5956 "mass in GeV/c^{2};#",
5960 "rapidity = (2.0-2.4) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
5961 "mass in GeV/c^{2};#",
5965 "rapidity = (2.0-2.4) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
5966 "mass in GeV/c^{2};#",
5970 "rapidity = (2.0-2.4) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
5971 "mass in GeV/c^{2};#",
5975 "rapidity = (2.0-2.4) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
5976 "mass in GeV/c^{2};#",
5980 "rapidity = (2.0-2.4) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
5981 "mass in GeV/c^{2};#",
5985 "rapidity = (2.0-2.4) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
5986 "mass in GeV/c^{2};#",
5990 "rapidity = (2.0-2.4) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
5991 "mass in GeV/c^{2};#",
5995 "rapidity = (2.0-2.4) P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant "
5996 "mass in GeV/c^{2};#",
6000 "rapidity = (2.0-2.4) P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant "
6001 "mass in GeV/c^{2};#",
6005 "rapidity = (2.0-2.4) P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant "
6006 "mass in GeV/c^{2};#",
6010 "rapidity = (2.0-2.4) P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant "
6011 "mass in GeV/c^{2};#",
6015 "rapidity = (2.0-2.4) P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant "
6016 "mass in GeV/c^{2};#",
6020 "rapidity = (2.0-2.4) P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant "
6021 "mass in GeV/c^{2};#",
6025 "rapidity = (2.0-2.4) P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant "
6026 "mass in GeV/c^{2};#",
6030 "rapidity = (2.0-2.4) P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant "
6031 "mass in GeV/c^{2};#",
6035 "rapidity = (2.4-2.8) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
6036 "mass in GeV/c^{2};#",
6040 "rapidity = (2.4-2.8) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
6041 "mass in GeV/c^{2};#",
6045 "rapidity = (2.4-2.8) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
6046 "mass in GeV/c^{2};#",
6050 "rapidity = (2.4-2.8) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
6051 "mass in GeV/c^{2};#",
6055 "rapidity = (2.4-2.8) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
6056 "mass in GeV/c^{2};#",
6060 "rapidity = (2.4-2.8) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
6061 "mass in GeV/c^{2};#",
6065 "rapidity = (2.4-2.8) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
6066 "mass in GeV/c^{2};#",
6070 "rapidity = (2.4-2.8) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
6071 "mass in GeV/c^{2};#",
6075 "rapidity = (2.4-2.8) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
6076 "mass in GeV/c^{2};#",
6080 "rapidity = (2.4-2.8) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
6081 "mass in GeV/c^{2};#",
6085 "rapidity = (2.4-2.8) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
6086 "mass in GeV/c^{2};#",
6090 "rapidity = (2.4-2.8) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
6091 "mass in GeV/c^{2};#",
6095 "rapidity = (2.4-2.8) P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant "
6096 "mass in GeV/c^{2};#",
6100 "rapidity = (2.4-2.8) P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant "
6101 "mass in GeV/c^{2};#",
6105 "rapidity = (2.4-2.8) P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant "
6106 "mass in GeV/c^{2};#",
6110 "rapidity = (2.4-2.8) P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant "
6111 "mass in GeV/c^{2};#",
6115 "rapidity = (2.8-3.2) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
6116 "mass in GeV/c^{2};#",
6120 "rapidity = (2.8-3.2) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
6121 "mass in GeV/c^{2};#",
6125 "rapidity = (2.8-3.2) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
6126 "mass in GeV/c^{2};#",
6130 "rapidity = (2.8-3.2) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
6131 "mass in GeV/c^{2};#",
6135 "rapidity = (2.8-3.2) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
6136 "mass in GeV/c^{2};#",
6140 "rapidity = (2.8-3.2) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
6141 "mass in GeV/c^{2};#",
6145 "rapidity = (2.8-3.2) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
6146 "mass in GeV/c^{2};#",
6150 "rapidity = (2.8-3.2) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
6151 "mass in GeV/c^{2};#",
6155 "rapidity = (2.8-3.2) P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant "
6156 "mass in GeV/c^{2};#",
6160 "rapidity = (2.8-3.2) P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant "
6161 "mass in GeV/c^{2};#",
6165 "rapidity = (2.8-3.2) P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant "
6166 "mass in GeV/c^{2};#",
6170 "rapidity = (2.8-3.2) P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant "
6171 "mass in GeV/c^{2};#",
6175 "rapidity = (3.2-3.6) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
6176 "mass in GeV/c^{2};#",
6180 "rapidity = (3.2-3.6) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
6181 "mass in GeV/c^{2};#",
6185 "rapidity = (3.2-3.6) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
6186 "mass in GeV/c^{2};#",
6190 "rapidity = (3.2-3.6) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
6191 "mass in GeV/c^{2};#",
6195 "rapidity = (3.2-3.6) P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant "
6196 "mass in GeV/c^{2};#",
6200 "rapidity = (3.2-3.6) P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant "
6201 "mass in GeV/c^{2};#",
6205 "rapidity = (3.2-3.6) P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant "
6206 "mass in GeV/c^{2};#",
6210 "rapidity = (3.2-3.6) P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant "
6211 "mass in GeV/c^{2};#",
6215 "rapidity = (3.6-4.0) P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant "
6216 "mass in GeV/c^{2};#",
6220 "rapidity = (3.6-4.0) P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant "
6221 "mass in GeV/c^{2};#",
6225 "rapidity = (3.6-4.0) P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant "
6226 "mass in GeV/c^{2};#",
6230 "rapidity = (3.6-4.0) P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant "
6231 "mass in GeV/c^{2};#",
6238 new TH1D(
"Pi0_pt_est_onetwo_Both",
"P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 20, 0, 2.0);
6240 pt_onetwo_1 =
new TH1D(
"pt_onetwo_1",
"P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6242 pt_onetwo_2 =
new TH1D(
"pt_onetwo_2",
"P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6244 pt_onetwo_3 =
new TH1D(
"pt_onetwo_3",
"P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6246 pt_onetwo_4 =
new TH1D(
"pt_onetwo_4",
"P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6248 pt_onetwo_5 =
new TH1D(
"pt_onetwo_5",
"P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6250 pt_onetwo_6 =
new TH1D(
"pt_onetwo_6",
"P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6252 pt_onetwo_7 =
new TH1D(
"pt_onetwo_7",
"P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6254 pt_onetwo_8 =
new TH1D(
"pt_onetwo_8",
"P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6256 pt_onetwo_9 =
new TH1D(
"pt_onetwo_9",
"P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6258 pt_onetwo_10 =
new TH1D(
"pt_onetwo_10",
"P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6260 pt_onetwo_11 =
new TH1D(
"pt_onetwo_11",
"P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6262 pt_onetwo_12 =
new TH1D(
"pt_onetwo_12",
"P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6264 pt_onetwo_13 =
new TH1D(
"pt_onetwo_13",
"P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6266 pt_onetwo_14 =
new TH1D(
"pt_onetwo_14",
"P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6268 pt_onetwo_15 =
new TH1D(
"pt_onetwo_15",
"P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6270 pt_onetwo_16 =
new TH1D(
"pt_onetwo_16",
"P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6272 pt_onetwo_17 =
new TH1D(
"pt_onetwo_17",
"P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6274 pt_onetwo_18 =
new TH1D(
"pt_onetwo_18",
"P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6276 pt_onetwo_19 =
new TH1D(
"pt_onetwo_19",
"P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6278 pt_onetwo_20 =
new TH1D(
"pt_onetwo_20",
"P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6282 new TH1D(
"pt_onetwo_mixing_1",
"P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6285 new TH1D(
"pt_onetwo_mixing_2",
"P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6288 new TH1D(
"pt_onetwo_mixing_3",
"P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6291 new TH1D(
"pt_onetwo_mixing_4",
"P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6294 new TH1D(
"pt_onetwo_mixing_5",
"P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6297 new TH1D(
"pt_onetwo_mixing_6",
"P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6300 new TH1D(
"pt_onetwo_mixing_7",
"P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6303 new TH1D(
"pt_onetwo_mixing_8",
"P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6306 new TH1D(
"pt_onetwo_mixing_9",
"P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6309 new TH1D(
"pt_onetwo_mixing_10",
"P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6312 new TH1D(
"pt_onetwo_mixing_11",
"P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6315 new TH1D(
"pt_onetwo_mixing_12",
"P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6318 new TH1D(
"pt_onetwo_mixing_13",
"P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6321 new TH1D(
"pt_onetwo_mixing_14",
"P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6324 new TH1D(
"pt_onetwo_mixing_15",
"P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6327 new TH1D(
"pt_onetwo_mixing_16",
"P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6330 new TH1D(
"pt_onetwo_mixing_17",
"P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6333 new TH1D(
"pt_onetwo_mixing_18",
"P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6336 new TH1D(
"pt_onetwo_mixing_19",
"P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6339 new TH1D(
"pt_onetwo_mixing_20",
"P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6344 new TH1D(
"Pi0_pt_est_all_Both",
"P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 20, 0, 2.0);
6346 pt_all_1 =
new TH1D(
"pt_all_1",
"P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6348 pt_all_2 =
new TH1D(
"pt_all_2",
"P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6350 pt_all_3 =
new TH1D(
"pt_all_3",
"P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6352 pt_all_4 =
new TH1D(
"pt_all_4",
"P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6354 pt_all_5 =
new TH1D(
"pt_all_5",
"P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6356 pt_all_6 =
new TH1D(
"pt_all_6",
"P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6358 pt_all_7 =
new TH1D(
"pt_all_7",
"P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6360 pt_all_8 =
new TH1D(
"pt_all_8",
"P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6362 pt_all_9 =
new TH1D(
"pt_all_9",
"P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6364 pt_all_10 =
new TH1D(
"pt_all_10",
"P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6366 pt_all_11 =
new TH1D(
"pt_all_11",
"P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6368 pt_all_12 =
new TH1D(
"pt_all_12",
"P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6370 pt_all_13 =
new TH1D(
"pt_all_13",
"P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6372 pt_all_14 =
new TH1D(
"pt_all_14",
"P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6374 pt_all_15 =
new TH1D(
"pt_all_15",
"P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6376 pt_all_16 =
new TH1D(
"pt_all_16",
"P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6378 pt_all_17 =
new TH1D(
"pt_all_17",
"P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6380 pt_all_18 =
new TH1D(
"pt_all_18",
"P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6382 pt_all_19 =
new TH1D(
"pt_all_19",
"P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6384 pt_all_20 =
new TH1D(
"pt_all_20",
"P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6388 new TH1D(
"pt_all_mixing_1",
"P_{t} = (0.0-0.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6391 new TH1D(
"pt_all_mixing_2",
"P_{t} = (0.1-0.2 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6394 new TH1D(
"pt_all_mixing_3",
"P_{t} = (0.2-0.3 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6397 new TH1D(
"pt_all_mixing_4",
"P_{t} = (0.3-0.4 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6400 new TH1D(
"pt_all_mixing_5",
"P_{t} = (0.4-0.5 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6403 new TH1D(
"pt_all_mixing_6",
"P_{t} = (0.5-0.6 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6406 new TH1D(
"pt_all_mixing_7",
"P_{t} = (0.6-0.7 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6409 new TH1D(
"pt_all_mixing_8",
"P_{t} = (0.7-0.8 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6412 new TH1D(
"pt_all_mixing_9",
"P_{t} = (0.8-0.9 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6415 new TH1D(
"pt_all_mixing_10",
"P_{t} = (0.9-1.0 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6418 new TH1D(
"pt_all_mixing_11",
"P_{t} = (1.0-1.1 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6421 new TH1D(
"pt_all_mixing_12",
"P_{t} = (1.1-1.2 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6424 new TH1D(
"pt_all_mixing_13",
"P_{t} = (1.2-1.3 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6427 new TH1D(
"pt_all_mixing_14",
"P_{t} = (1.3-1.4 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6430 new TH1D(
"pt_all_mixing_15",
"P_{t} = (1.4-1.5 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6433 new TH1D(
"pt_all_mixing_16",
"P_{t} = (1.5-1.6 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6436 new TH1D(
"pt_all_mixing_17",
"P_{t} = (1.6-1.7 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6439 new TH1D(
"pt_all_mixing_18",
"P_{t} = (1.7-1.8 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6442 new TH1D(
"pt_all_mixing_19",
"P_{t} = (1.8-1.9 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6445 new TH1D(
"pt_all_mixing_20",
"P_{t} = (1.9-2.0 GeV/c^{2}) ;invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6451 BG1_InM_all_Both =
new TH1D(
"BG1_InM_all_Both",
"BG1_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6453 BG2_InM_all_Both =
new TH1D(
"BG2_InM_all_Both",
"BG2_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6455 BG3_InM_all_Both =
new TH1D(
"BG3_InM_all_Both",
"BG3_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6457 BG4_InM_all_Both =
new TH1D(
"BG4_InM_all_Both",
"BG4_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6459 BG5_InM_all_Both =
new TH1D(
"BG5_InM_all_Both",
"BG5_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6461 BG6_InM_all_Both =
new TH1D(
"BG6_InM_all_Both",
"BG6_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6463 BG7_InM_all_Both =
new TH1D(
"BG7_InM_all_Both",
"BG7_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6465 BG8_InM_all_Both =
new TH1D(
"BG8_InM_all_Both",
"BG8_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6467 BG9_InM_all_Both =
new TH1D(
"BG9_InM_all_Both",
"BG9_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6469 BG10_InM_all_Both =
new TH1D(
"BG10_InM_all_Both",
"BG10_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6471 PdgCase8_InM_all_Both =
new TH1D(
"PdgCase8_InM_all_Both",
"PdgCase8_InM_all_Both; Id ;#", 5000, -2500, 2500);
6474 new TH1D(
"PdgCase8mothers_InM_all_Both",
"PdgCase8mothers_InM_all_Both; Id ;#", 5000, -2500, 2500);
6477 new TH1D(
"sameMIDcase8_InM_all_Both",
"sameMIDcase8_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6480 new TH1D(
"sameGRIDcase8_InM_all_Both",
"sameGRIDcase8_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6483 new TH2D(
"Case1ZYPos_InM_all_Both",
"Case1ZYPos_InM_all_Both; z[cm]; y[cm]", 400, -1, 200, 200, -50, 50);
6486 new TH1D(
"sameMIDcase8_mothedPDG_InM_all_Both",
"sameMIDcase8_mothedPDG_InM_all_Both; Id ;#", 5000, -2500, 2500);
6489 "PdgCase8NonEComeFromTarget_InM_all_Both",
"PdgCase8NonEComeFromTarget_InM_all_Both; Id ;#", 5000, -2500, 2500);
6492 "PdgCase8NonE_NOT_FromTarget_InM_all_Both",
"PdgCase8NonE_NOT_FromTarget_InM_all_Both; Id ;#", 5000, -2500, 2500);
6495 new TH1D(
"PdgCase8motherNonE_InM_all_Both",
"PdgCase8motherNonE_InM_all_Both; Id ;#", 5000, -2500, 2500);
6498 "Case8ElFromDalitz_InM_all_Both",
"Case8ElFromDalitz_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6501 "Case8NonElFrom_pn_InM_all_Both",
"Case8NonElFrom_pn_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6504 "Case8NonElFrom_eta_InM_all_Both",
"Case8NonElFrom_eta_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6507 new TH1D(
"Case8NonElFrom_kaon_InM_all_Both",
"Case8NonElFrom_kaon_InM_all_Both; invariant mass in GeV/c^{2};#",
6511 new TH1D(
"sameMIDcase8NonEPdg_InM_all_Both",
"sameMIDcase8NonEPdg_InM_all_Both; Id ;#", 5000, -2500, 2500);
6514 "sameMIDcase8NonEMotherPdg_InM_all_Both; Id ;#", 5000, -2500, 2500);
6517 new TH1D(
"sameMIDcase8NonEMotherIM_InM_all_Both",
6518 "sameMIDcase8NonEMotherIM_InM_all_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6521 new TH1D(
"sameMIDcase8NonEPdgFromTarget_InM_all_Both",
"sameMIDcase8NonEPdgFromTarget_InM_all_Both; Id ;#", 5000,
6525 new TH1D(
"sameMIDcase8NonEComeFromTargetIM_InM_all_Both",
6526 "sameMIDcase8NonEComeFromTargetIM_InM_all_Both; invariant mass in "
6531 new TH1D(
"sameMIDcase8NonEComeFromTargetP_InM_all_Both",
6532 "sameMIDcase8NonEComeFromTargetP_InM_all_Both; P in GeV/c^{2} ;#", 200, 0, 10);
6535 new TH1D(
"sameMIDcase8NonEComeFromTargetPt_InM_all_Both",
6536 "sameMIDcase8NonEComeFromTargetPt_InM_all_Both; Pt in GeV/c^{2} ;#", 200, 0, 10);
6539 BG1_InM_zero_Both =
new TH1D(
"BG1_InM_zero_Both",
"BG1_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6541 BG2_InM_zero_Both =
new TH1D(
"BG2_InM_zero_Both",
"BG2_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6543 BG3_InM_zero_Both =
new TH1D(
"BG3_InM_zero_Both",
"BG3_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6545 BG4_InM_zero_Both =
new TH1D(
"BG4_InM_zero_Both",
"BG4_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6547 BG5_InM_zero_Both =
new TH1D(
"BG5_InM_zero_Both",
"BG5_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6549 BG6_InM_zero_Both =
new TH1D(
"BG6_InM_zero_Both",
"BG6_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6551 BG7_InM_zero_Both =
new TH1D(
"BG7_InM_zero_Both",
"BG7_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6553 BG8_InM_zero_Both =
new TH1D(
"BG8_InM_zero_Both",
"BG8_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6555 BG9_InM_zero_Both =
new TH1D(
"BG9_InM_zero_Both",
"BG9_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6558 new TH1D(
"BG10_InM_zero_Both",
"BG10_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6560 PdgCase8_InM_zero_Both =
new TH1D(
"PdgCase8_InM_zero_Both",
"PdgCase8_InM_zero_Both; Id ;#", 5000, -2500, 2500);
6563 new TH1D(
"PdgCase8mothers_InM_zero_Both",
"PdgCase8mothers_InM_zero_Both; Id ;#", 5000, -2500, 2500);
6566 new TH1D(
"sameMIDcase8_InM_zero_Both",
"sameMIDcase8_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6569 new TH1D(
"sameGRIDcase8_InM_zero_Both",
"sameGRIDcase8_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6572 new TH2D(
"Case1ZYPos_InM_zero_Both",
"Case1ZYPos_InM_zero_Both; z[cm]; y[cm]", 400, -1, 200, 200, -50, 50);
6575 new TH1D(
"sameMIDcase8_mothedPDG_InM_zero_Both",
"sameMIDcase8_mothedPDG_InM_zero_Both; Id ;#", 5000, -2500, 2500);
6578 "PdgCase8NonEComeFromTarget_InM_zero_Both",
"PdgCase8NonEComeFromTarget_InM_zero_Both; Id ;#", 5000, -2500, 2500);
6581 "PdgCase8NonE_NOT_FromTarget_InM_zero_Both",
"PdgCase8NonE_NOT_FromTarget_InM_zero_Both; Id ;#", 5000, -2500, 2500);
6584 new TH1D(
"PdgCase8motherNonE_InM_zero_Both",
"PdgCase8motherNonE_InM_zero_Both; Id ;#", 5000, -2500, 2500);
6587 "Case8ElFromDalitz_InM_zero_Both",
"Case8ElFromDalitz_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6590 "Case8NonElFrom_pn_InM_zero_Both",
"Case8NonElFrom_pn_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6593 new TH1D(
"Case8NonElFrom_eta_InM_zero_Both",
"Case8NonElFrom_eta_InM_zero_Both; invariant mass in GeV/c^{2};#",
6597 new TH1D(
"Case8NonElFrom_kaon_InM_zero_Both",
"Case8NonElFrom_kaon_InM_zero_Both; invariant mass in GeV/c^{2};#",
6601 new TH1D(
"sameMIDcase8NonEPdg_InM_zero_Both",
"sameMIDcase8NonEPdg_InM_zero_Both; Id ;#", 5000, -2500, 2500);
6604 "sameMIDcase8NonEMotherPdg_InM_zero_Both",
"sameMIDcase8NonEMotherPdg_InM_zero_Both; Id ;#", 5000, -2500, 2500);
6607 new TH1D(
"sameMIDcase8NonEMotherIM_InM_zero_Both",
6608 "sameMIDcase8NonEMotherIM_InM_zero_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6611 new TH1D(
"sameMIDcase8NonEPdgFromTarget_InM_zero_Both",
"sameMIDcase8NonEPdgFromTarget_InM_zero_Both; Id ;#", 5000,
6615 new TH1D(
"sameMIDcase8NonEComeFromTargetIM_InM_zero_Both",
6616 "sameMIDcase8NonEComeFromTargetIM_InM_zero_Both; invariant mass "
6621 new TH1D(
"sameMIDcase8NonEComeFromTargetP_InM_zero_Both",
6622 "sameMIDcase8NonEComeFromTargetP_InM_zero_Both; P in GeV/c^{2} ;#", 200, 0, 10);
6625 new TH1D(
"sameMIDcase8NonEComeFromTargetPt_InM_zero_Both",
6626 "sameMIDcase8NonEComeFromTargetPt_InM_zero_Both; Pt in GeV/c^{2} ;#", 200, 0, 10);
6629 BG1_InM_one_Both =
new TH1D(
"BG1_InM_one_Both",
"BG1_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6631 BG2_InM_one_Both =
new TH1D(
"BG2_InM_one_Both",
"BG2_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6633 BG3_InM_one_Both =
new TH1D(
"BG3_InM_one_Both",
"BG3_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6635 BG4_InM_one_Both =
new TH1D(
"BG4_InM_one_Both",
"BG4_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6637 BG5_InM_one_Both =
new TH1D(
"BG5_InM_one_Both",
"BG5_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6639 BG6_InM_one_Both =
new TH1D(
"BG6_InM_one_Both",
"BG6_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6641 BG7_InM_one_Both =
new TH1D(
"BG7_InM_one_Both",
"BG7_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6643 BG8_InM_one_Both =
new TH1D(
"BG8_InM_one_Both",
"BG8_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6645 BG9_InM_one_Both =
new TH1D(
"BG9_InM_one_Both",
"BG9_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6647 BG10_InM_one_Both =
new TH1D(
"BG10_InM_one_Both",
"BG10_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6649 PdgCase8_InM_one_Both =
new TH1D(
"PdgCase8_InM_one_Both",
"PdgCase8_InM_one_Both; Id ;#", 5000, -2500, 2500);
6652 new TH1D(
"PdgCase8mothers_InM_one_Both",
"PdgCase8mothers_InM_one_Both; Id ;#", 5000, -2500, 2500);
6655 new TH1D(
"sameMIDcase8_InM_one_Both",
"sameMIDcase8_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6658 new TH1D(
"sameGRIDcase8_InM_one_Both",
"sameGRIDcase8_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6661 new TH2D(
"Case1ZYPos_InM_one_Both",
"Case1ZYPos_InM_one_Both; z[cm]; y[cm]", 400, -1, 200, 200, -50, 50);
6664 new TH1D(
"sameMIDcase8_mothedPDG_InM_one_Both",
"sameMIDcase8_mothedPDG_InM_one_Both; Id ;#", 5000, -2500, 2500);
6667 "PdgCase8NonEComeFromTarget_InM_one_Both",
"PdgCase8NonEComeFromTarget_InM_one_Both; Id ;#", 5000, -2500, 2500);
6670 "PdgCase8NonE_NOT_FromTarget_InM_one_Both",
"PdgCase8NonE_NOT_FromTarget_InM_one_Both; Id ;#", 5000, -2500, 2500);
6673 new TH1D(
"PdgCase8motherNonE_InM_one_Both",
"PdgCase8motherNonE_InM_one_Both; Id ;#", 5000, -2500, 2500);
6676 "Case8ElFromDalitz_InM_one_Both",
"Case8ElFromDalitz_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6679 "Case8NonElFrom_pn_InM_one_Both",
"Case8NonElFrom_pn_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6682 "Case8NonElFrom_eta_InM_one_Both",
"Case8NonElFrom_eta_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6685 new TH1D(
"Case8NonElFrom_kaon_InM_one_Both",
"Case8NonElFrom_kaon_InM_one_Both; invariant mass in GeV/c^{2};#",
6689 new TH1D(
"sameMIDcase8NonEPdg_InM_one_Both",
"sameMIDcase8NonEPdg_InM_one_Both; Id ;#", 5000, -2500, 2500);
6692 "sameMIDcase8NonEMotherPdg_InM_one_Both; Id ;#", 5000, -2500, 2500);
6695 new TH1D(
"sameMIDcase8NonEMotherIM_InM_one_Both",
6696 "sameMIDcase8NonEMotherIM_InM_one_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6699 new TH1D(
"sameMIDcase8NonEPdgFromTarget_InM_one_Both",
"sameMIDcase8NonEPdgFromTarget_InM_one_Both; Id ;#", 5000,
6703 new TH1D(
"sameMIDcase8NonEComeFromTargetIM_InM_one_Both",
6704 "sameMIDcase8NonEComeFromTargetIM_InM_one_Both; invariant mass in "
6709 new TH1D(
"sameMIDcase8NonEComeFromTargetP_InM_one_Both",
6710 "sameMIDcase8NonEComeFromTargetP_InM_one_Both; P in GeV/c^{2} ;#", 200, 0, 10);
6713 new TH1D(
"sameMIDcase8NonEComeFromTargetPt_InM_one_Both",
6714 "sameMIDcase8NonEComeFromTargetPt_InM_one_Both; Pt in GeV/c^{2} ;#", 200, 0, 10);
6717 BG1_InM_two_Both =
new TH1D(
"BG1_InM_two_Both",
"BG1_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6719 BG2_InM_two_Both =
new TH1D(
"BG2_InM_two_Both",
"BG2_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6721 BG3_InM_two_Both =
new TH1D(
"BG3_InM_two_Both",
"BG3_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6723 BG4_InM_two_Both =
new TH1D(
"BG4_InM_two_Both",
"BG4_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6725 BG5_InM_two_Both =
new TH1D(
"BG5_InM_two_Both",
"BG5_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6727 BG6_InM_two_Both =
new TH1D(
"BG6_InM_two_Both",
"BG6_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6729 BG7_InM_two_Both =
new TH1D(
"BG7_InM_two_Both",
"BG7_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6731 BG8_InM_two_Both =
new TH1D(
"BG8_InM_two_Both",
"BG8_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6733 BG9_InM_two_Both =
new TH1D(
"BG9_InM_two_Both",
"BG9_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6735 BG10_InM_two_Both =
new TH1D(
"BG10_InM_two_Both",
"BG10_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6737 PdgCase8_InM_two_Both =
new TH1D(
"PdgCase8_InM_two_Both",
"PdgCase8_InM_two_Both; Id ;#", 5000, -2500, 2500);
6740 new TH1D(
"PdgCase8mothers_InM_two_Both",
"PdgCase8mothers_InM_two_Both; Id ;#", 5000, -2500, 2500);
6743 new TH1D(
"sameMIDcase8_InM_two_Both",
"sameMIDcase8_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6746 new TH1D(
"sameGRIDcase8_InM_two_Both",
"sameGRIDcase8_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6749 new TH2D(
"Case1ZYPos_InM_two_Both",
"Case1ZYPos_InM_two_Both; z[cm]; y[cm]", 400, -1, 200, 200, -50, 50);
6752 new TH1D(
"sameMIDcase8_mothedPDG_InM_two_Both",
"sameMIDcase8_mothedPDG_InM_two_Both; Id ;#", 5000, -2500, 2500);
6755 "PdgCase8NonEComeFromTarget_InM_two_Both",
"PdgCase8NonEComeFromTarget_InM_two_Both; Id ;#", 5000, -2500, 2500);
6758 "PdgCase8NonE_NOT_FromTarget_InM_two_Both",
"PdgCase8NonE_NOT_FromTarget_InM_two_Both; Id ;#", 5000, -2500, 2500);
6761 new TH1D(
"PdgCase8motherNonE_InM_two_Both",
"PdgCase8motherNonE_InM_two_Both; Id ;#", 5000, -2500, 2500);
6764 "Case8ElFromDalitz_InM_two_Both",
"Case8ElFromDalitz_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6767 "Case8NonElFrom_pn_InM_two_Both",
"Case8NonElFrom_pn_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6770 "Case8NonElFrom_eta_InM_two_Both",
"Case8NonElFrom_eta_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6773 new TH1D(
"Case8NonElFrom_kaon_InM_two_Both",
"Case8NonElFrom_kaon_InM_two_Both; invariant mass in GeV/c^{2};#",
6777 new TH1D(
"sameMIDcase8NonEPdg_InM_two_Both",
"sameMIDcase8NonEPdg_InM_two_Both; Id ;#", 5000, -2500, 2500);
6780 "sameMIDcase8NonEMotherPdg_InM_two_Both; Id ;#", 5000, -2500, 2500);
6783 new TH1D(
"sameMIDcase8NonEMotherIM_InM_two_Both",
6784 "sameMIDcase8NonEMotherIM_InM_two_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6787 new TH1D(
"sameMIDcase8NonEPdgFromTarget_InM_two_Both",
"sameMIDcase8NonEPdgFromTarget_InM_two_Both; Id ;#", 5000,
6791 new TH1D(
"sameMIDcase8NonEComeFromTargetIM_InM_two_Both",
6792 "sameMIDcase8NonEComeFromTargetIM_InM_two_Both; invariant mass in "
6797 new TH1D(
"sameMIDcase8NonEComeFromTargetP_InM_two_Both",
6798 "sameMIDcase8NonEComeFromTargetP_InM_two_Both; P in GeV/c^{2} ;#", 200, 0, 10);
6801 new TH1D(
"sameMIDcase8NonEComeFromTargetPt_InM_two_Both",
6802 "sameMIDcase8NonEComeFromTargetPt_InM_two_Both; Pt in GeV/c^{2} ;#", 200, 0, 10);
6806 new TH1D(
"BG1_InM_onetwo_Both",
"BG1_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6809 new TH1D(
"BG2_InM_onetwo_Both",
"BG2_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6812 new TH1D(
"BG3_InM_onetwo_Both",
"BG3_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6815 new TH1D(
"BG4_InM_onetwo_Both",
"BG4_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6818 new TH1D(
"BG5_InM_onetwo_Both",
"BG5_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6821 new TH1D(
"BG6_InM_onetwo_Both",
"BG6_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6824 new TH1D(
"BG7_InM_onetwo_Both",
"BG7_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6827 new TH1D(
"BG8_InM_onetwo_Both",
"BG8_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6830 new TH1D(
"BG9_InM_onetwo_Both",
"BG9_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6833 new TH1D(
"BG10_InM_onetwo_Both",
"BG10_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6835 PdgCase8_InM_onetwo_Both =
new TH1D(
"PdgCase8_InM_onetwo_Both",
"PdgCase8_InM_onetwo_Both; Id ;#", 5000, -2500, 2500);
6838 new TH1D(
"PdgCase8mothers_InM_onetwo_Both",
"PdgCase8mothers_InM_onetwo_Both; Id ;#", 5000, -2500, 2500);
6841 "sameMIDcase8_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6844 "sameGRIDcase8_InM_onetwo_Both",
"sameGRIDcase8_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6847 new TH2D(
"Case1ZYPos_InM_onetwo_Both",
"Case1ZYPos_InM_onetwo_Both; z[cm]; y[cm]", 400, -1, 200, 200, -50, 50);
6850 "sameMIDcase8_mothedPDG_InM_onetwo_Both; Id ;#", 5000, -2500, 2500);
6853 new TH1D(
"PdgCase8NonEComeFromTarget_InM_onetwo_Both",
"PdgCase8NonEComeFromTarget_InM_onetwo_Both; Id ;#", 5000,
6857 new TH1D(
"PdgCase8NonE_NOT_FromTarget_InM_onetwo_Both",
"PdgCase8NonE_NOT_FromTarget_InM_onetwo_Both; Id ;#", 5000,
6861 new TH1D(
"PdgCase8motherNonE_InM_onetwo_Both",
"PdgCase8motherNonE_InM_onetwo_Both; Id ;#", 5000, -2500, 2500);
6864 new TH1D(
"Case8ElFromDalitz_InM_onetwo_Both",
"Case8ElFromDalitz_InM_onetwo_Both; invariant mass in GeV/c^{2};#",
6868 new TH1D(
"Case8NonElFrom_pn_InM_onetwo_Both",
"Case8NonElFrom_pn_InM_onetwo_Both; invariant mass in GeV/c^{2};#",
6872 new TH1D(
"Case8NonElFrom_eta_InM_onetwo_Both",
"Case8NonElFrom_eta_InM_onetwo_Both; invariant mass in GeV/c^{2};#",
6876 new TH1D(
"Case8NonElFrom_kaon_InM_onetwo_Both",
6877 "Case8NonElFrom_kaon_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6880 new TH1D(
"sameMIDcase8NonEPdg_InM_onetwo_Both",
"sameMIDcase8NonEPdg_InM_onetwo_Both; Id ;#", 5000, -2500, 2500);
6883 "sameMIDcase8NonEMotherPdg_InM_onetwo_Both",
"sameMIDcase8NonEMotherPdg_InM_onetwo_Both; Id ;#", 5000, -2500, 2500);
6886 new TH1D(
"sameMIDcase8NonEMotherIM_InM_onetwo_Both",
6887 "sameMIDcase8NonEMotherIM_InM_onetwo_Both; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6890 new TH1D(
"sameMIDcase8NonEPdgFromTarget_InM_onetwo_Both",
"sameMIDcase8NonEPdgFromTarget_InM_onetwo_Both; Id ;#",
6894 new TH1D(
"sameMIDcase8NonEComeFromTargetIM_InM_onetwo_Both",
6895 "sameMIDcase8NonEComeFromTargetIM_InM_onetwo_Both; invariant mass "
6900 new TH1D(
"sameMIDcase8NonEComeFromTargetP_InM_onetwo_Both",
6901 "sameMIDcase8NonEComeFromTargetP_InM_onetwo_Both; P in GeV/c^{2} ;#", 200, 0, 10);
6904 new TH1D(
"sameMIDcase8NonEComeFromTargetPt_InM_onetwo_Both",
6905 "sameMIDcase8NonEComeFromTargetPt_InM_onetwo_Both; Pt in GeV/c^{2} ;#", 200, 0, 10);
6908 AnnTruePairs =
new TH1D(
"AnnTruePairs",
"AnnTruePairs; Ann value ;#", 100, -1.2, 1.2);
6910 AnnFalsePairs =
new TH1D(
"AnnFalsePairs",
"AnnFalsePairs; Ann value ;#", 100, -1.2, 1.2);
6912 AnnTruePairs_AfterCuts =
new TH1D(
"AnnTruePairs_AfterCuts",
"AnnTruePairs; Ann value ;#", 100, -1.2, 1.2);
6915 new TH1D(
"AnnFalsePairs_AfterCuts",
"AnnFalsePairs_AfterCuts; Ann value ;#", 100, -1.2, 1.2);
6921 new TH1D(
"Pi0InvMassReco_WAC",
"Pi0InvMassReco_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6923 EMT_InvMass_WAC =
new TH1D(
"EMT_InvMass_WAC",
"EMT_InvMass_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6926 new TH2D(
"Pi0_pt_vs_rap_WAC",
"Pi0_pt_vs_rap_WAC; rapidity y; p_{t} in GeV/c ", 90, -2., 7., 60, -1., 5.);
6929 new TH2D(
"Pi0_pt_vs_rap_est_WAC",
"Pi0_pt_vs_rap_est_WAC; rapidity y; p_{t} in GeV/c ", 10, 0., 4., 40, 0., 4.);
6931 DalitzPi0_WAC =
new TH1D(
"DalitzPi0_WAC",
"DalitzPi0_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6933 PhotonsPi0_WAC =
new TH1D(
"PhotonsPi0_WAC",
"PhotonsPi0_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6936 new TH2D(
"MultiplicityGamma_WAC",
"MultiplicityGamma_WAC; Nof gammas in event; invariant mass in GeV/c^{2};#", 400,
6937 0, 30, 1000, 0, 2.0);
6940 "MultiplicityChargedParticles_WAC; Nof charged particles in "
6941 "event; invariant mass in GeV/c^{2};#",
6942 1000, 0, 1000, 1000, 0, 2.0);
6944 BG1_InM_WAC =
new TH1D(
"BG1_InM_WAC",
"BG1_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6946 BG2_InM_WAC =
new TH1D(
"BG2_InM_WAC",
"BG2_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6948 BG3_InM_WAC =
new TH1D(
"BG3_InM_WAC",
"BG3_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6950 BG4_InM_WAC =
new TH1D(
"BG4_InM_WAC",
"BG4_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6952 BG5_InM_WAC =
new TH1D(
"BG5_InM_WAC",
"BG5_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6954 BG6_InM_WAC =
new TH1D(
"BG6_InM_WAC",
"BG6_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6956 BG7_InM_WAC =
new TH1D(
"BG7_InM_WAC",
"BG7_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6958 BG8_InM_WAC =
new TH1D(
"BG8_InM_WAC",
"BG8_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6960 BG9_InM_WAC =
new TH1D(
"BG9_InM_WAC",
"BG9_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6962 BG10_InM_WAC =
new TH1D(
"BG10_InM_WAC",
"BG10_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6964 PdgCase8_InM_WAC =
new TH1D(
"PdgCase8_InM_WAC",
"PdgCase8_InM_WAC; Id ;#", 5000, -2500, 2500);
6966 PdgCase8mothers_InM_WAC =
new TH1D(
"PdgCase8mothers_InM_WAC",
"PdgCase8mothers_InM_WAC; Id ;#", 5000, -2500, 2500);
6969 new TH1D(
"sameMIDcase8_InM_WAC",
"sameMIDcase8_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6972 new TH1D(
"sameGRIDcase8_InM_WAC",
"sameGRIDcase8_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6974 Case1ZYPos_InM_WAC =
new TH2D(
"Case1ZYPos_InM_WAC",
"Case1ZYPos_InM_WAC; z[cm]; y[cm]", 400, -1, 200, 200, -50, 50);
6977 new TH1D(
"sameMIDcase8_mothedPDG_InM_WAC",
"sameMIDcase8_mothedPDG_InM_WAC; Id ;#", 5000, -2500, 2500);
6980 new TH1D(
"PdgCase8NonEComeFromTarget_InM_WAC",
"PdgCase8NonEComeFromTarget_InM_WAC; Id ;#", 5000, -2500, 2500);
6983 new TH1D(
"PdgCase8NonE_NOT_FromTarget_InM_WAC",
"PdgCase8NonE_NOT_FromTarget_InM_WAC; Id ;#", 5000, -2500, 2500);
6986 new TH1D(
"PdgCase8motherNonE_InM_WAC",
"PdgCase8motherNonE_InM_WAC; Id ;#", 5000, -2500, 2500);
6989 new TH1D(
"Case8ElFromDalitz_InM_WAC",
"Case8ElFromDalitz_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6992 new TH1D(
"Case8NonElFrom_pn_InM_WAC",
"Case8NonElFrom_pn_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6995 new TH1D(
"Case8NonElFrom_eta_InM_WAC",
"Case8NonElFrom_eta_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
6998 new TH1D(
"Case8NonElFrom_kaon_InM_WAC",
"Case8NonElFrom_kaon_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
7001 new TH1D(
"sameMIDcase8NonEPdg_InM_WAC",
"sameMIDcase8NonEPdg_InM_WAC; Id ;#", 5000, -2500, 2500);
7004 new TH1D(
"sameMIDcase8NonEMotherPdg_InM_WAC",
"sameMIDcase8NonEMotherPdg_InM_WAC; Id ;#", 5000, -2500, 2500);
7007 new TH1D(
"sameMIDcase8NonEMotherIM_InM_WAC",
"sameMIDcase8NonEMotherIM_InM_WAC; invariant mass in GeV/c^{2};#",
7011 "sameMIDcase8NonEPdgFromTarget_InM_WAC; Id ;#", 5000, -2500, 2500);
7014 new TH1D(
"sameMIDcase8NonEComeFromTargetIM_InM_WAC",
7015 "sameMIDcase8NonEComeFromTargetIM_InM_WAC; invariant mass in GeV/c^{2};#", 1000, 0, 2.0);
7018 new TH1D(
"sameMIDcase8NonEComeFromTargetP_InM_WAC",
"sameMIDcase8NonEComeFromTargetP_InM_WAC; P in GeV/c^{2} ;#",
7022 new TH1D(
"sameMIDcase8NonEComeFromTargetPt_InM_WAC",
"sameMIDcase8NonEComeFromTargetPt_InM_WAC; Pt in GeV/c^{2} ;#",
7027 Chi2_for_Primary =
new TH1D(
"Chi2_for_Primary",
"Chi2_for_Primary; #chi^{2};entries", 200, 0, 20);
7029 Chi2_for_Secondary =
new TH1D(
"Chi2_for_Secondary",
"Chi2_for_Secondary; #chi^{2};entries", 200, 0, 20);
Here the ring is fitted with Taubin algorithm from A. Ayriyan, G. Ososkov, N. Chernov.
Data class for a reconstructed hit in the STS.
Data class for STS tracks.
int32_t GetStsTrackIndex() const
int32_t GetRichRingIndex() const
static void SetKFParticleFromStsTrack(CbmStsTrack *track, KFParticle *particle, Int_t pdg=211, Bool_t firstPoint=kTRUE)
std::vector< int > VStsIndex_plus_Target
TH1D * Pi0InvMassReco_all_Target
TH1D * rap_vs_Pt_InM_all_5
TH1D * rap_vs_Pt_InM_all_18
TH1D * rap_vs_Pt_InM_mixing_35
TH1D * rap_vs_Pt_InM_all_48
std::vector< std::vector< int > > Gammas_MCIndex_all_Target
TH1D * rap_vs_Pt_InM_all_59
TH1D * rap_vs_Pt_InM_mixing_38
TH1D * EMT_InvMass_two_Target
TH1D * rap_vs_Pt_InM_mixing_25
TH1D * GammaOpeningAngleReco_zero_Both
TH2D * MultiplicityChargedParticles_onetwo_Both
TH1D * rap_vs_Pt_InM_all_1
TH1D * rap_vs_Pt_InM_all_mixing_101
TH2D * InvMass_vs_OA_candidates_Target
std::vector< std::vector< int > > Gammas_stsIndex_onetwo_Both
std::vector< std::vector< int > > Gammas_stsIndex_zero_Target
TH1D * sameMIDcase8NonEPdg_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_mixing_42
TH1D * Case8NonElFrom_kaon_InM_WAC
TH1D * EMT_InvMass_onetwo_Target
vector< TVector3 > VMomenta_minus_Target
TH1D * rap_vs_Pt_InM_all_mixing_72
TH1D * rap_vs_Pt_InM_all_mixing_91
TH1D * rap_vs_Pt_InM_all_mixing_14
TH1D * sameMIDcase8NonEComeFromTargetIM_InM_one_Both
std::vector< std::vector< int > > Gammas_stsIndex_all_Outside
TH2D * MultiplicityGamma_onetwo_Outside
TH2D * MultiplicityChargedParticles_one_Outside
TH1D * rap_vs_Pt_InM_mixing_55
TH2D * Pi0_pt_vs_rap_one_Both
TH1D * GammaOpeningAngleReco_onetwo_Outside
TH2D * MultiplicityChargedParticles_zero_Outside
TH1D * GammaInvMassReco_zero_Target
TH2D * MultiplicityChargedParticles_zero_Both
TH1D * rap_vs_Pt_InM_mixing_7
TH1D * DalitzPi0_one_Outside
vector< TH1 * > fHistoList_bg_InM_zero_Outside
TH1D * PdgCase8motherNonE_InM_WAC
TH1D * rap_vs_Pt_InM_mixing_31
TH1D * rap_vs_Pt_InM_all_mixing_20
TH1D * rap_vs_Pt_InM_all_mixing_105
TH1D * rap_vs_Pt_InM_all_6
TH1D * rap_vs_Pt_InM_all_3
vector< TH1 * > fHistoList_bg_InM_zero_Both
TH1D * rap_vs_Pt_InM_all_61
std::vector< std::vector< int > > Gammas_MCIndex_WAC
TH1D * sameMIDcase8_InM_two_Both
TH1D * P_reco_zero_Outside
TH1D * rap_vs_Pt_InM_all_mixing_7
std::vector< std::vector< int > > Gammas_MCIndex_two_Target
TH1D * rap_vs_Pt_InM_all_mixing_89
TH1D * GammasOA_candidates_Target
TH2D * Pi0_pt_vs_rap_two_Target
TH1D * rap_vs_Pt_InM_mixing_84
TH1D * rap_vs_Pt_InM_mixing_39
double CalculatePlaneAngle_last(CbmStsTrack *Sts_1, CbmStsTrack *Sts_2)
vector< TH1 * > fHistoList_man_cuts_Target
TH1D * Pt_reco_zero_Outside
TH1D * rap_vs_Pt_InM_mixing_105
vector< TVector3 > VMomenta_plus_Target
TH2D * Case1ZYPos_InM_onetwo_Both
TH1D * DalitzPi0_onetwo_Outside
TH1D * rap_vs_Pt_InM_mixing_106
TH1D * Pt_reco_two_Outside
TH1D * PdgCase8mothers_InM_two_Both
TH1D * PhotonsPi0_one_Outside
std::vector< std::vector< int > > Gammas_stsIndex_two_Outside
TH1D * rap_vs_Pt_InM_all_mixing_41
TH1D * rap_vs_Pt_InM_mixing_28
vector< TH1 * > fHistoList_man_two_Both
std::vector< int > frefId
TH1D * rap_vs_Pt_InM_all_20
std::vector< std::vector< int > > Gammas_stsIndex_onetwo_Outside
TH2D * Pi0_pt_vs_rap_est_two_Outside
TH1D * sameMIDcase8NonEPdg_InM_zero_Both
TH1D * sameMIDcase8_mothedPDG_InM_onetwo_Both
TH2D * Pi0_pt_vs_rap_zero_Outside
TH1D * rap_vs_Pt_InM_mixing_23
TH1D * rap_vs_Pt_InM_all_mixing_85
TH2D * MultiplicityChargedParticles_one_Target
TH1D * rap_vs_Pt_InM_mixing_50
TH2D * Pi0_pt_vs_rap_one_Outside
TH1D * sameMIDcase8_InM_one_Both
std::vector< int > EMT_man_NofRings_Target
std::vector< int > VRings_minus_Target
std::vector< int > EMT_man_Event_WAC
vector< TH1 * > fHistoList_bg_InM_zero_Target
vector< CbmMCTrack * > VMCtracks_plus_Target
TH1D * rap_vs_Pt_InM_all_72
TH1D * sameMIDcase8NonEComeFromTargetP_InM_zero_Both
TH1D * rap_vs_Pt_InM_mixing_83
TH1D * EMT_InvMass_one_Target
TH1D * DalitzPi0_two_Both
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_two_Target
TH1D * rap_vs_Pt_InM_all_102
TH1D * Case8ElFromDalitz_InM_onetwo_Both
TH1D * PhotonsPi0_two_Both
TH1D * PdgCase8NonE_NOT_FromTarget_InM_two_Both
TH2D * MultiplicityChargedParticles_all_Target
TH1D * sameMIDcase8NonEPdgFromTarget_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_mixing_60
TH2D * MultiplicityGamma_one_Outside
TH2D * MultiplicityGamma_zero_Both
TH1D * rap_vs_Pt_InM_all_mixing_53
TH1D * rap_vs_Pt_InM_all_29
TH1D * rap_vs_Pt_InM_all_13
TH1D * Pi0_pt_est_all_Both
TH1D * GammaInvMassReco_all_Outside
TH1D * rap_vs_Pt_InM_all_mixing_54
TH1D * GammaOpeningAngleReco_two_Target
TH1D * PdgCase8_InM_zero_Both
TH1D * rap_vs_Pt_InM_all_46
TH1D * rap_vs_Pt_InM_all_71
std::vector< int > VStsIndex_plus_Outside
TH1D * sameMIDcase8_InM_onetwo_Both
TH1D * GammaInvMassReco_one_Both
TH1D * rap_vs_Pt_InM_all_83
TH1D * rap_vs_Pt_InM_all_mixing_51
TH1D * GammasInvMass_candidates_Both
TH1D * rap_vs_Pt_InM_all_58
TH1D * GammaInvMassReco_all_Target
TH1D * rap_vs_Pt_InM_all_mixing_2
TH1D * rap_vs_Pt_InM_all_mixing_6
TH1D * Case8NonElFrom_kaon_InM_all_Both
TH1D * rap_vs_Pt_InM_mixing_89
TH1D * pt_onetwo_mixing_13
TH1D * pt_onetwo_mixing_14
std::vector< std::vector< int > > Gammas_MCIndex_two_Outside
TH1D * rap_vs_Pt_InM_all_47
TH1D * PhotonsPi0_zero_Target
TH1D * pt_onetwo_mixing_11
TH1D * Pt_reco_onetwo_Outside
std::vector< int > EMT_man_Event_Both
TH1D * rap_vs_Pt_InM_all_mixing_21
std::vector< int > EMT_man_Event_Outside
TH1D * sameMIDcase8_mothedPDG_InM_one_Both
TH1D * rap_vs_Pt_InM_mixing_5
TH1D * rap_vs_Pt_InM_mixing_70
vector< TH1 * > fHistoList_man_zero_Target
TH1D * rap_vs_Pt_InM_all_89
TH1D * PlaneAngles_last_fromPi0_Both
std::vector< std::vector< TVector3 > > EMT_man_pair_momenta_Outside
TH1D * rap_vs_Pt_InM_mixing_54
TH1D * GammasOA_fromPi0_Outside
TH1D * rap_vs_Pt_InM_all_31
TH1D * rap_vs_Pt_InM_mixing_44
TH2D * MultiplicityGamma_two_Target
TH1D * rap_vs_Pt_InM_all_mixing_45
TH1D * sameMIDcase8NonEPdg_InM_two_Both
TH1D * rap_vs_Pt_InM_mixing_13
TH1D * sameMIDcase8NonEComeFromTargetP_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_all_mixing_33
TH1D * rap_vs_Pt_InM_all_35
TH1D * BG10_InM_onetwo_Both
TH2D * Case1ZYPos_InM_all_Both
TH1D * PdgCase8NonEComeFromTarget_InM_one_Both
TH1D * rap_vs_Pt_InM_all_103
TH1D * Pt_reco_two_Target
TH1D * rap_vs_Pt_InM_all_33
TH1D * Case8NonElFrom_pn_InM_WAC
TH1D * PhotonsPi0_two_Outside
std::vector< std::vector< TVector3 > > Gammas_two_Outside
TH1D * rap_vs_Pt_InM_all_56
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_two_Outside
TH1D * GammaOpeningAngleReco_all_Both
TH2D * Pi0_pt_vs_rap_est_onetwo_Outside
TH1D * rap_vs_Pt_InM_all_mixing_88
vector< TH1 * > fHistoList_man_onetwo_Both
TH1D * rap_vs_Pt_InM_all_mixing_68
TH1D * rap_vs_Pt_InM_mixing_64
TH1D * sameMIDcase8NonEComeFromTargetIM_InM_WAC
std::vector< std::vector< TVector3 > > Gammas_onetwo_Outside
TH1D * PhotonsPi0_zero_Both
std::vector< std::vector< int > > Gammas_MCIndex_all_Both
TH1D * rap_vs_Pt_InM_all_91
TH1D * rap_vs_Pt_InM_mixing_12
TH1D * EMT_InvMass_two_Both
TH1D * rap_vs_Pt_InM_all_76
TH1D * rap_vs_Pt_InM_all_112
TH1D * EMT_InvMass_onetwo_Both
std::vector< std::vector< int > > Gammas_stsIndex_onetwo_Target
TH1D * Case8NonElFrom_pn_InM_all_Both
TClonesArray * fArrayStsHit
TH1D * rap_vs_Pt_InM_mixing_81
TH1D * rap_vs_Pt_InM_all_mixing_18
TH1D * rap_vs_Pt_InM_all_90
TH1D * Pt_reco_onetwo_Both
TH1D * rap_vs_Pt_InM_all_108
TH1D * sameMIDcase8_mothedPDG_InM_two_Both
std::vector< int > VRings_minus_Outside
TH1D * Case8NonElFrom_kaon_InM_onetwo_Both
TH1D * Pi0InvMassReco_zero_Outside
TH1D * rap_vs_Pt_InM_mixing_47
TH1D * Case8NonElFrom_eta_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_all_mixing_66
TH2D * MultiplicityChargedParticles_two_Both
vector< TH1 * > fHistoList_man_zero_Both
TH1D * rap_vs_Pt_InM_all_52
TH1D * PdgCase8_InM_two_Both
virtual ~CbmKresConversionManual()
TH1D * PdgCase8motherNonE_InM_two_Both
TH1D * rap_vs_Pt_InM_all_62
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_zero_Outside
TH1D * GammaInvMassReco_two_Target
std::vector< std::vector< int > > Gammas_MCIndex_two_Both
TH1D * rap_vs_Pt_InM_mixing_76
TH2D * Pi0_pt_vs_rap_two_Outside
TH1D * rap_vs_Pt_InM_all_mixing_11
TH1D * rap_vs_Pt_InM_all_66
TH1D * Pi0InvMassReco_one_Target
TH1D * rap_vs_Pt_InM_all_54
TH1D * rap_vs_Pt_InM_mixing_103
TH2D * MultiplicityGamma_one_Both
vector< CbmRichRing * > VRichRing_plus_Target
TH1D * rap_vs_Pt_InM_mixing_68
TH1D * GammaOpeningAngleReco_one_Target
std::vector< int > EMT_man_NofRings_Outside
vector< CbmRichRing * > VRichRing_plus_Outside
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_one_Both
TH1D * Case8ElFromDalitz_InM_zero_Both
TH2D * MultiplicityChargedParticles_one_Both
TH1D * PdgCase8NonE_NOT_FromTarget_InM_WAC
TH1D * rap_vs_Pt_InM_all_mixing_30
TH1D * rap_vs_Pt_InM_all_85
vector< TH1 * > fHistoList_bg_InM_onetwo_Target
TH1D * GammaOpeningAngleReco_two_Outside
std::vector< std::vector< TVector3 > > Gammas_onetwo_Target
TH1D * rap_vs_Pt_InM_mixing_40
TH1D * rap_vs_Pt_InM_mixing_27
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_all_Outside
TH1D * rap_vs_Pt_InM_mixing_29
std::vector< int > VRings_plus_Target
TH1D * rap_vs_Pt_InM_all_70
TH1D * PdgCase8motherNonE_InM_one_Both
TH1D * Chi2_for_Secondary
vector< TH1 * > fHistoList_multiplicity_man_Target
std::vector< std::vector< TVector3 > > Gammas_all_Both
TH1D * P_reco_onetwo_Both
TH1D * sameGRIDcase8_InM_one_Both
vector< TH1 * > fHistoList_bg_InM_all_Both
TH1D * rap_vs_Pt_InM_all_41
TH1D * EMT_InvMass_one_Both
vector< TH1 * > fHistoList_man_all_Both
TH1D * Case8NonElFrom_eta_InM_all_Both
TH1D * rap_vs_Pt_InM_all_mixing_81
TH1D * rap_vs_Pt_InM_mixing_112
TH1D * PdgCase8motherNonE_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_all_7
vector< TH1 * > fHistoList_man_cuts_Outside
TH1D * rap_vs_Pt_InM_all_mixing_113
TH1D * EMT_InvMass_one_Outside
TH1D * GammaOpeningAngleReco_onetwo_Target
TH1D * PhotonsPi0_all_Target
TH2D * Pi0_pt_vs_rap_est_all_Target
TH1D * rap_vs_Pt_InM_all_mixing_37
TH1D * rap_vs_Pt_InM_mixing_21
TH1D * rap_vs_Pt_InM_all_mixing_106
TH1D * rap_vs_Pt_InM_all_63
TH2D * Pi0_pt_vs_rap_est_all_Both
TH1D * GammasInvMass_fromPi0_Both
vector< TH1 * > fHistoList_man_cuts_Both
TH1D * rap_vs_Pt_InM_all_mixing_67
TH1D * PlaneAngles_first_fromPi0_Target
TH1D * rap_vs_Pt_InM_mixing_53
TH1D * Pt_reco_zero_Target
TH1D * rap_vs_Pt_InM_all_mixing_17
TH1D * rap_vs_Pt_InM_all_21
TH2D * InvMass_vs_OA_candidates_Outside
TH1D * rap_vs_Pt_InM_mixing_67
TH1D * PdgCase8mothers_InM_one_Both
TH1D * rap_vs_Pt_InM_all_mixing_12
std::vector< std::vector< int > > Gammas_stsIndex_one_Outside
TH2D * Pi0_pt_vs_rap_est_two_Both
TH1D * rap_vs_Pt_InM_mixing_82
TH1D * pt_onetwo_mixing_2
vector< TH1 * > fHistoList_bg_InM_two_Target
TH1D * rap_vs_Pt_InM_mixing_3
TH1D * rap_vs_Pt_InM_mixing_11
TH1D * rap_vs_Pt_InM_all_mixing_27
TH1D * rap_vs_Pt_InM_all_mixing_65
vector< TH1 * > fHistoList_man_one_Outside
TH1D * PdgCase8NonE_NOT_FromTarget_InM_one_Both
TH1D * EMT_InvMass_zero_Outside
TH1D * rap_vs_Pt_InM_all_23
TH1D * rap_vs_Pt_InM_mixing_107
TH1D * rap_vs_Pt_InM_all_65
TH2D * MultiplicityChargedParticles_onetwo_Target
vector< Int_t > VMCIndex_minus_Outside
std::vector< std::vector< int > > Gammas_stsIndex_zero_Both
TH1D * rap_vs_Pt_InM_all_17
TH1D * rap_vs_Pt_InM_mixing_62
TH1D * rap_vs_Pt_InM_all_30
TH1D * rap_vs_Pt_InM_mixing_49
TH1D * sameMIDcase8NonEMotherPdg_InM_zero_Both
std::vector< std::vector< int > > Gammas_stsIndex_all_Target
TH1D * EMT_InvMass_onetwo_Outside
TH1D * rap_vs_Pt_InM_all_38
TH1D * sameMIDcase8NonEComeFromTargetIM_InM_zero_Both
TH1D * P_reco_zero_Target
TH1D * rap_vs_Pt_InM_all_55
TH2D * Pi0_pt_vs_rap_onetwo_Both
TH1D * rap_vs_Pt_InM_all_mixing_1
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_all_Target
TH1D * rap_vs_Pt_InM_mixing_34
TH1D * sameMIDcase8NonEMotherPdg_InM_one_Both
TH1D * sameMIDcase8NonEMotherPdg_InM_WAC
vector< TH1 * > fHistoList_bg_InM_one_Both
TH1D * rap_vs_Pt_InM_all_mixing_19
vector< TH1 * > fHistoList_bg_InM_two_Outside
TH1D * PdgCase8NonE_NOT_FromTarget_InM_zero_Both
TH1D * GammaInvMassReco_zero_Both
TH1D * rap_vs_Pt_InM_mixing_92
TH1D * rap_vs_Pt_InM_all_86
TH1D * rap_vs_Pt_InM_all_mixing_104
std::vector< std::vector< int > > Gammas_MCIndex_one_Both
vector< TH1 * > fHistoList_man_two_Outside
TH1D * rap_vs_Pt_InM_all_mixing_56
TH1D * rap_vs_Pt_InM_mixing_15
TH2D * Pi0_pt_vs_rap_est_zero_Both
TH1D * BG4_InM_onetwo_Both
TH2D * InvMass_vs_OA_fromPi0_Outside
vector< CbmStsTrack * > VStsTrack_plus_Target
TH1D * rap_vs_Pt_InM_mixing_43
std::vector< std::vector< int > > Gammas_MCIndex_zero_Outside
TH1D * BG9_InM_onetwo_Both
TH2D * Pi0_pt_vs_rap_two_Both
TH1D * rap_vs_Pt_InM_all_92
TH1D * rap_vs_Pt_InM_all_mixing_92
TH1D * rap_vs_Pt_InM_mixing_86
double CalculatePlaneAngle_first(CbmStsTrack *Sts_1, CbmStsTrack *Sts_2)
TH2D * MultiplicityChargedParticles_all_Outside
TH1D * PdgCase8NonE_NOT_FromTarget_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_all_mixing_44
TH1D * PlaneAngles_first_candidates_Target
TH1D * DalitzPi0_one_Both
TH1D * PlaneAngles_first_fromPi0_Outside
TH1D * PhotonsPi0_all_Both
TH1D * Case8ElFromDalitz_InM_one_Both
TH2D * MultiplicityChargedParticles_zero_Target
TH1D * EMT_InvMass_all_Outside
CbmKresConversionBG * fAnaBG
TH1D * EMT_InvMass_zero_Both
std::vector< std::vector< TVector3 > > Gammas_one_Outside
TH1D * pt_onetwo_mixing_4
TH1D * rap_vs_Pt_InM_all_12
TH1D * pt_onetwo_mixing_12
TH1D * DalitzPi0_zero_Both
TH1D * Case8ElFromDalitz_InM_two_Both
std::vector< std::vector< int > > Gammas_MCIndex_onetwo_Target
TH1D * Case8ElFromDalitz_InM_WAC
TH1D * Case8NonElFrom_eta_InM_zero_Both
TClonesArray * fArrayMvdHit
TH1D * sameMIDcase8NonEComeFromTargetIM_InM_two_Both
TH1D * rap_vs_Pt_InM_all_mixing_22
TH1D * rap_vs_Pt_InM_mixing_36
std::vector< std::vector< TVector3 > > EMT_man_pair_momenta_Both
TH1D * GammaInvMassReco_onetwo_Outside
TH1D * rap_vs_Pt_InM_all_mixing_10
TH1D * rap_vs_Pt_InM_mixing_75
void SaveTargetTracks(CbmMCTrack *mcTrack1, CbmStsTrack *stsTrack, TVector3 refmom, double charge, int stsInd, int richInd, int stsMcTrackId, CbmRichRing *RING)
TH2D * MultiplicityGamma_two_Outside
TH1D * rap_vs_Pt_InM_all_mixing_48
TH2D * Pi0_pt_vs_rap_est_zero_Outside
TH1D * PdgCase8mothers_InM_WAC
TH1D * rap_vs_Pt_InM_mixing_30
TH1D * GammaInvMassReco_one_Outside
TH1D * rap_vs_Pt_InM_all_27
vector< TH1 * > fHistoList_bg_InM_all_Target
TH1D * rap_vs_Pt_InM_all_mixing_75
TH1D * Pt_reco_onetwo_Target
TH1D * rap_vs_Pt_InM_mixing_90
TH1D * sameGRIDcase8_InM_zero_Both
TH1D * GammaOpeningAngleReco_zero_Target
TH1D * rap_vs_Pt_InM_mixing_72
TH1D * sameMIDcase8NonEPdgFromTarget_InM_WAC
TClonesArray * fRichRingMatches
TH1D * rap_vs_Pt_InM_mixing_16
TH1D * PlaneAngles_first_candidates_Both
TH1D * DalitzPi0_zero_Outside
TH1D * GammasInvMass_fromPi0_Outside
vector< TH1 * > fHistoList_rap_vs_pt_InM_all
TH1D * rap_vs_Pt_InM_all_mixing_76
TH1D * sameMIDcase8_mothedPDG_InM_zero_Both
std::vector< std::vector< TVector3 > > Gammas_onetwo_Both
TH1D * rap_vs_Pt_InM_all_113
TH1D * rap_vs_Pt_InM_mixing_51
TH1D * Case8NonElFrom_kaon_InM_zero_Both
vector< Int_t > VMCIndex_minus_Target
vector< CbmMCTrack * > VMCtracks_minus_Target
TH1D * Pi0InvMassReco_onetwo_Target
TH1D * rap_vs_Pt_InM_mixing_10
TH1D * rap_vs_Pt_InM_mixing_9
TH1D * rap_vs_Pt_InM_all_104
TH1D * Pi0InvMassReco_onetwo_Both
TH1D * rap_vs_Pt_InM_all_11
TH1D * GammaOpeningAngleReco_one_Both
TH1D * rap_vs_Pt_InM_all_mixing_3
TH1D * Pi0InvMassReco_zero_Both
CbmKresSelectAnn * fAnnSelection
TH1D * EMT_InvMass_all_Target
TH1D * rap_vs_Pt_InM_all_mixing_29
TH1D * rap_vs_Pt_InM_all_mixing_52
TH1D * PlaneAngles_first_fromPi0_Both
TH1D * rap_vs_Pt_InM_mixing_48
TH2D * Pi0_pt_vs_rap_est_onetwo_Target
TH1D * rap_vs_Pt_InM_mixing_22
TH1D * rap_vs_Pt_InM_all_mixing_5
int FindInRich(int richInd, int stsMcTrackId)
vector< CbmStsTrack * > VStsTrack_plus_Outside
TH1D * PdgCase8_InM_all_Both
TH1D * sameMIDcase8NonEComeFromTargetPt_InM_one_Both
TH1D * pt_onetwo_mixing_16
TH1D * GammaInvMassReco_onetwo_Target
TH1D * sameMIDcase8NonEPdgFromTarget_InM_one_Both
TH1D * rap_vs_Pt_InM_all_51
TH2D * Case1ZYPos_InM_two_Both
TH1D * pt_onetwo_mixing_6
TH1D * BG2_InM_onetwo_Both
TH2D * MultiplicityChargedParticles_two_Outside
TH1D * DalitzPi0_onetwo_Target
TH1D * sameMIDcase8NonEMotherIM_InM_WAC
TH1D * rap_vs_Pt_InM_mixing_33
TH2D * Case1ZYPos_InM_WAC
std::vector< std::vector< int > > Gammas_stsIndex_two_Target
vector< TH1 * > fHistoList_man_onetwo_Target
TH1D * rap_vs_Pt_InM_mixing_63
TH1D * sameMIDcase8NonEComeFromTargetP_InM_one_Both
TH1D * pt_onetwo_mixing_19
TH1D * sameMIDcase8NonEPdg_InM_all_Both
TH2D * MultiplicityGamma_all_Both
TH2D * MultiplicityGamma_two_Both
TH1D * sameMIDcase8NonEMotherPdg_InM_all_Both
TH1D * rap_vs_Pt_InM_mixing_114
TH1D * sameGRIDcase8_InM_all_Both
TH1D * rap_vs_Pt_InM_all_mixing_114
void FindGammasOutside(int EventNumMan, double AngleCut, double InvMassCut, int RealPID, vector< CbmMCTrack * > MCtracks_minus_Outside, vector< CbmMCTrack * > MCtracks_plus_Outside, vector< CbmStsTrack * > StsTrack_minus_Outside, vector< CbmStsTrack * > StsTrack_plus_Outside, std::vector< int > Rings_minus_Outside, std::vector< int > Rings_plus_Outside, std::vector< int > stsIndex_minus_Outside, std::vector< int > stsIndex_plus_Outside, vector< CbmRichRing * > richRing_minus_Outside, vector< CbmRichRing * > richRing_plus_Outside, vector< Int_t > MCIndex_minus_Outside, vector< Int_t > MCIndex_plus_Outside)
TH2D * Pi0_pt_vs_rap_all_Target
void FindGammasBothWithAdditionalCuts()
TH1D * sameMIDcase8_InM_zero_Both
TH1D * rap_vs_Pt_InM_all_24
TH1D * sameMIDcase8NonEMotherIM_InM_all_Both
vector< TH1 * > fHistoList_multiplicity_man_Outside
TH1D * Pi0InvMassReco_one_Both
TH2D * InvMass_vs_OA_fromPi0_Both
TH1D * rap_vs_Pt_InM_mixing_113
TH2D * Pi0_pt_vs_rap_one_Target
TH2D * Pi0_pt_vs_rap_est_WAC
TH1D * rap_vs_Pt_InM_all_60
TH1D * PdgCase8_InM_onetwo_Both
TH1D * sameMIDcase8NonEMotherPdg_InM_onetwo_Both
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_all_Both
TH1D * sameMIDcase8NonEComeFromTargetPt_InM_WAC
vector< TH1 * > fHistoList_pt_all
TH1D * sameMIDcase8NonEComeFromTargetIM_InM_onetwo_Both
std::vector< std::vector< int > > Gammas_MCIndex_onetwo_Both
TH1D * rap_vs_Pt_InM_mixing_102
TH1D * sameMIDcase8NonEComeFromTargetIM_InM_all_Both
TH1D * rap_vs_Pt_InM_all_mixing_31
TH1D * pt_onetwo_mixing_7
TH2D * MultiplicityGamma_onetwo_Both
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_one_Outside
TH1D * pt_onetwo_mixing_20
vector< TH1 * > fHistoList_man_zero_Outside
CbmKresConversionManual()
TH1D * PdgCase8NonEComeFromTarget_InM_all_Both
TH1D * rap_vs_Pt_InM_all_mixing_71
TH2D * MultiplicityGamma_onetwo_Target
TH1D * rap_vs_Pt_InM_mixing_71
TH1D * rap_vs_Pt_InM_mixing_111
TH1D * rap_vs_Pt_InM_all_mixing_55
TH1D * rap_vs_Pt_InM_all_107
TH1D * pt_onetwo_mixing_5
TH1D * rap_vs_Pt_InM_mixing_20
vector< TH1 * > fHistoList_man_Both
TH2D * MultiplicityChargedParticles_all_Both
TH1D * rap_vs_Pt_InM_all_mixing_60
TH1D * rap_vs_Pt_InM_all_32
std::vector< std::vector< TVector3 > > Gammas_all_Target
TH1D * sameMIDcase8NonEMotherPdg_InM_two_Both
TH1D * GammaOpeningAngleReco_all_Target
TH1D * Pi0InvMassReco_zero_Target
TH1D * rap_vs_Pt_InM_mixing_85
vector< Int_t > VMCIndex_plus_Outside
TClonesArray * fRichRings
std::vector< std::vector< int > > Gammas_stsIndex_zero_Outside
TH1D * rap_vs_Pt_InM_all_mixing_50
TH1D * P_reco_one_Outside
TClonesArray * fRichProjections
TH1D * pt_onetwo_mixing_8
TH1D * Case8NonElFrom_eta_InM_WAC
TH1D * PhotonsPi0_one_Target
TH2D * Case1ZYPos_InM_one_Both
TH1D * rap_vs_Pt_InM_all_87
vector< TH1 * > fHistoList_man_one_Both
TH1D * rap_vs_Pt_InM_all_16
TH1D * rap_vs_Pt_InM_mixing_37
TH1D * PdgCase8mothers_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_all_42
TH1D * BG10_InM_zero_Both
TH1D * sameMIDcase8NonEPdg_InM_WAC
TH1D * PlaneAngles_last_fromPi0_Outside
TH1D * PdgCase8motherNonE_InM_all_Both
TH2D * Pi0_pt_vs_rap_zero_Both
TH1D * GammaInvMassReco_one_Target
TH1D * Case8NonElFrom_pn_InM_two_Both
vector< CbmRichRing * > VRichRing_minus_Target
TH1D * sameGRIDcase8_InM_two_Both
void FindGammasTarget(int EventNumMan, double AngleCut, double InvMassCut, int RealPID, vector< CbmMCTrack * > MCtracks_minus, vector< CbmMCTrack * > MCtracks_plus, vector< CbmStsTrack * > StsTrack_minus, vector< CbmStsTrack * > StsTrack_plus, vector< TVector3 > Momenta_minus, vector< TVector3 > Momenta_plus, std::vector< int > Rings_minus, std::vector< int > Rings_plus, std::vector< int > stsIndex_minus, std::vector< int > stsIndex_plus, vector< CbmRichRing * > richRing_minus, vector< CbmRichRing * > richRing_plus, vector< Int_t > MCIndex_minus, vector< Int_t > MCIndex_plus)
TH1D * rap_vs_Pt_InM_mixing_65
TH2D * MultiplicityChargedParticles_WAC
TH1D * rap_vs_Pt_InM_all_mixing_47
TH1D * Case8NonElFrom_kaon_InM_two_Both
TH1D * rap_vs_Pt_InM_all_mixing_13
TH1D * PlaneAngles_last_fromPi0_Target
TH1D * Pi0InvMassReco_WAC
TH1D * DalitzPi0_onetwo_Both
TH1D * PhotonsPi0_zero_Outside
TH1D * rap_vs_Pt_InM_mixing_57
TH1D * rap_vs_Pt_InM_all_mixing_25
TH1D * PdgCase8_InM_one_Both
vector< TH1 * > fHistoList_bg_InM_one_Target
TH1D * P_reco_all_Outside
TH2D * Pi0_pt_vs_rap_est_one_Target
TH2D * Pi0_pt_vs_rap_est_all_Outside
TH1D * BG7_InM_onetwo_Both
vector< TH1 * > fHistoList_pt_onetwo
TH1D * rap_vs_Pt_InM_all_mixing_49
TH1D * rap_vs_Pt_InM_mixing_46
TH1D * rap_vs_Pt_InM_all_mixing_36
TH1D * sameMIDcase8NonEComeFromTargetP_InM_all_Both
TH1D * BG1_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_all_mixing_102
TH1D * DalitzPi0_all_Outside
TH1D * rap_vs_Pt_InM_all_106
TH1D * sameGRIDcase8_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_all_mixing_23
TH1D * rap_vs_Pt_InM_all_mixing_38
TH1D * Case8NonElFrom_eta_InM_two_Both
TH1D * rap_vs_Pt_InM_all_mixing_32
TH2D * InvMass_vs_OA_candidates_Both
std::vector< std::vector< TVector3 > > Gammas_all_Outside
std::vector< std::vector< int > > Gammas_stsIndex_all_Both
std::vector< std::vector< TVector3 > > Gammas_two_Both
TH1D * rap_vs_Pt_InM_all_39
TH1D * GammasInvMass_candidates_Target
TH1D * EMT_InvMass_zero_Target
vector< TH1 * > fHistoList_man_WAC
CbmRichRingFitterEllipseTau * fTauFit
TH1D * rap_vs_Pt_InM_all_26
TH1D * sameMIDcase8_mothedPDG_InM_all_Both
TH1D * Pdg_onetwo_Outside
TH1D * rap_vs_Pt_InM_all_43
std::vector< int > VStsIndex_minus_Outside
TH1D * rap_vs_Pt_InM_all_mixing_43
TH1D * sameMIDcase8NonEMotherIM_InM_zero_Both
TH1D * rap_vs_Pt_InM_all_2
TClonesArray * fStsTrackMatches
TH1D * rap_vs_Pt_InM_all_40
TH2D * MultiplicityGamma_one_Target
TH1D * rap_vs_Pt_InM_mixing_17
TH1D * pt_onetwo_mixing_15
vector< TH1 * > fHistoList_man_onetwo_Outside
TH1D * GammaOpeningAngleReco_one_Outside
TH1D * rap_vs_Pt_InM_mixing_74
TH1D * Pi0_pt_est_onetwo_Both
vector< CbmMCTrack * > VMCtracks_minus_Outside
TH1D * PhotonsPi0_onetwo_Both
TH1D * rap_vs_Pt_InM_all_74
TH1D * PhotonsPi0_one_Both
TH1D * GammaInvMassReco_zero_Outside
TH1D * rap_vs_Pt_InM_all_mixing_63
TH1D * PhotonsPi0_all_Outside
TH2D * MultiplicityGamma_zero_Outside
TH1D * rap_vs_Pt_InM_all_9
TH1D * rap_vs_Pt_InM_all_mixing_90
TH1D * sameMIDcase8NonEComeFromTargetP_InM_two_Both
vector< CbmRichRing * > VRichRing_minus_Outside
TH1D * rap_vs_Pt_InM_mixing_19
TH1D * rap_vs_Pt_InM_mixing_1
TH1D * sameMIDcase8NonEMotherIM_InM_one_Both
vector< TVector3 > frefmomenta
std::vector< std::vector< TVector3 > > EMT_man_pair_momenta_Target
TH1D * PdgCase8NonEComeFromTarget_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_mixing_14
TH2D * Pi0_pt_vs_rap_est_zero_Target
TH1D * Pt_reco_one_Outside
TH1D * rap_vs_Pt_InM_mixing_69
TH1D * sameGRIDcase8_InM_WAC
TH1D * PlaneAngles_last_candidates_Outside
TH1D * rap_vs_Pt_InM_all_mixing_16
TH1D * rap_vs_Pt_InM_all_mixing_82
std::vector< std::vector< TVector3 > > Gammas_zero_Outside
TH1D * rap_vs_Pt_InM_all_57
TH1D * PlaneAngles_last_candidates_Both
TH1D * rap_vs_Pt_InM_all_34
std::vector< std::vector< TVector3 > > Gammas_one_Target
TH1D * rap_vs_Pt_InM_all_4
TH1D * rap_vs_Pt_InM_all_105
TH1D * rap_vs_Pt_InM_mixing_24
TH1D * rap_vs_Pt_InM_mixing_66
TH1D * PdgCase8NonEComeFromTarget_InM_WAC
TH1D * GammasOA_fromPi0_Target
TH1D * rap_vs_Pt_InM_mixing_88
vector< TH1 * > fHistoList_rap_vs_pt_InM
TH1D * GammaInvMassReco_two_Outside
TH1D * rap_vs_Pt_InM_all_14
TH1D * sameMIDcase8NonEMotherIM_InM_two_Both
TH1D * rap_vs_Pt_InM_all_111
TH1D * Case8NonElFrom_eta_InM_one_Both
TH1D * rap_vs_Pt_InM_mixing_52
TH1D * rap_vs_Pt_InM_all_mixing_70
TH1D * PhotonsPi0_two_Target
TH2D * MultiplicityGamma_WAC
TH1D * Pt_reco_all_Target
TH1D * rap_vs_Pt_InM_all_mixing_58
TH2D * Pi0_pt_vs_rap_est_one_Outside
TH1D * PdgCase8NonE_NOT_FromTarget_InM_all_Both
TH1D * sameMIDcase8_mothedPDG_InM_WAC
TH1D * sameMIDcase8NonEComeFromTargetPt_InM_zero_Both
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_WAC
vector< TH1 * > fHistoList_man_all_Target
void Exec(int fEventNumMan, double OpeningAngleCut, double GammaInvMassCut, int RealPID)
TH2D * MultiplicityChargedParticles_two_Target
TH1D * rap_vs_Pt_InM_mixing_56
TH1D * rap_vs_Pt_InM_mixing_6
TH1D * rap_vs_Pt_InM_mixing_32
TH1D * rap_vs_Pt_InM_all_36
TH1D * rap_vs_Pt_InM_all_mixing_74
vector< TH1 * > fHistoList_bg_InM_two_Both
TH1D * DalitzPi0_one_Target
TH1D * BG5_InM_onetwo_Both
std::vector< std::vector< TVector3 > > Gammas_two_Target
TH1D * rap_vs_Pt_InM_all_mixing_46
TH1D * rap_vs_Pt_InM_mixing_45
TH1D * pt_onetwo_mixing_17
TH1D * GammaOpeningAngleReco_two_Both
vector< CbmStsTrack * > VStsTrack_minus_Outside
TH1D * rap_vs_Pt_InM_all_67
std::vector< std::vector< int > > Gammas_MCIndex_one_Outside
vector< TH1 * > fHistoList_multiplicity_man_Both
TH1D * DalitzPi0_all_Both
TH1D * rap_vs_Pt_InM_mixing_58
TH1D * rap_vs_Pt_InM_all_81
TH1D * rap_vs_Pt_InM_all_mixing_108
TH1D * rap_vs_Pt_InM_all_mixing_73
TH1D * GammaOpeningAngleReco_all_Outside
TH1D * AnnFalsePairs_AfterCuts
std::vector< std::vector< int > > Gammas_stsIndex_one_Target
TH1D * rap_vs_Pt_InM_mixing_104
TH1D * rap_vs_Pt_InM_all_45
TH1D * rap_vs_Pt_InM_mixing_61
TH1D * rap_vs_Pt_InM_all_mixing_4
TH1D * rap_vs_Pt_InM_all_mixing_35
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_onetwo_Outside
TH1D * rap_vs_Pt_InM_all_44
TH1D * Pi0InvMassReco_two_Target
TH1D * rap_vs_Pt_InM_all_53
TH1D * rap_vs_Pt_InM_mixing_73
TH1D * PlaneAngles_first_candidates_Outside
vector< CbmMCTrack * > VMCtracks_plus_Outside
TH1D * rap_vs_Pt_InM_all_mixing_34
TH1D * GammasOA_candidates_Outside
TH1D * rap_vs_Pt_InM_mixing_18
TH1D * rap_vs_Pt_InM_all_mixing_28
vector< TH1 * > fHistoList_bg_InM_onetwo_Both
TH1D * rap_vs_Pt_InM_all_8
TH1D * rap_vs_Pt_InM_all_mixing_26
TH1D * GammaInvMassReco_onetwo_Both
TH1D * rap_vs_Pt_InM_all_mixing_87
TH1D * DalitzPi0_zero_Target
TH1D * rap_vs_Pt_InM_mixing_101
vector< TH1 * > fHistoList_bg_InM_onetwo_Outside
void SaveOutsideTracks(CbmMCTrack *mcTrack1, CbmStsTrack *stsTrack, double charge, int stsInd, int richInd, int stsMcTrackId, CbmRichRing *RING)
TH1D * sameMIDcase8NonEComeFromTargetPt_InM_all_Both
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_zero_Both
TH1D * BG8_InM_onetwo_Both
TH1D * sameMIDcase8NonEPdgFromTarget_InM_two_Both
TH1D * pt_onetwo_mixing_10
TH1D * P_reco_onetwo_Target
TH1D * rap_vs_Pt_InM_mixing_26
vector< TH1 * > fHistoList_manual
TH1D * rap_vs_Pt_InM_all_mixing_62
TH1D * rap_vs_Pt_InM_all_mixing_9
TH1D * Pi0InvMassReco_one_Outside
vector< TH1 * > fHistoList_bg_InM_one_Outside
TH1D * rap_vs_Pt_InM_all_114
std::vector< std::vector< int > > Gammas_stsIndex_WAC
TH1D * rap_vs_Pt_InM_all_10
TH1D * Case8NonElFrom_pn_InM_one_Both
TH1D * GammaOpeningAngleReco_onetwo_Both
TH1D * rap_vs_Pt_InM_all_68
TH1D * sameMIDcase8NonEComeFromTargetP_InM_WAC
TH1D * rap_vs_Pt_InM_all_25
TH2D * Pi0_pt_vs_rap_onetwo_Outside
TH1D * EMT_InvMass_two_Outside
TH1D * rap_vs_Pt_InM_all_mixing_59
std::vector< std::vector< TVector3 > > EMT_man_pair_momenta_WAC
TH1D * rap_vs_Pt_InM_all_75
TH1D * rap_vs_Pt_InM_all_mixing_84
TH1D * GammaInvMassReco_two_Both
TH2D * Pi0_pt_vs_rap_est_one_Both
TH1D * rap_vs_Pt_InM_all_mixing_8
std::vector< std::vector< int > > Gammas_MCIndex_onetwo_Outside
std::vector< int > EMT_man_Event_Target
vector< TH1 * > fHistoList_man_two_Target
TH2D * Pi0_pt_vs_rap_est_two_Target
TH1D * rap_vs_Pt_InM_all_73
TH1D * rap_vs_Pt_InM_all_mixing_61
std::vector< std::vector< TVector3 > > Gammas_zero_Both
TClonesArray * fGlobalTracks
std::vector< int > VRings_plus_Outside
TH1D * PdgCase8NonEComeFromTarget_InM_two_Both
vector< TH1 * > fHistoList_man_all_Outside
TH2D * MultiplicityChargedParticles_onetwo_Outside
std::vector< CbmMCTrack * > fMCtracks
TH1D * rap_vs_Pt_InM_mixing_4
TH1D * rap_vs_Pt_InM_mixing_87
TH1D * DalitzPi0_two_Outside
int CheckIfElectron(CbmRichRing *ring, double momentum)
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_zero_Target
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_one_Target
TH2D * Pi0_pt_vs_rap_zero_Target
TH1D * DalitzPi0_all_Target
TH1D * pt_onetwo_mixing_1
TH1D * rap_vs_Pt_InM_all_mixing_64
std::vector< std::vector< int > > Gammas_MCIndex_zero_Target
TH1D * Pt_reco_one_Target
TH1D * rap_vs_Pt_InM_all_49
TH1D * pt_onetwo_mixing_9
TH1D * rap_vs_Pt_InM_all_84
TH1D * rap_vs_Pt_InM_all_mixing_112
TH2D * MultiplicityGamma_all_Target
TH1D * Pi0InvMassReco_all_Outside
TH1D * PdgCase8NonEComeFromTarget_InM_zero_Both
TH1D * rap_vs_Pt_InM_all_37
TH1D * rap_vs_Pt_InM_mixing_2
vector< TH1 * > fHistoList_man_one_Target
TH1D * sameMIDcase8NonEPdgFromTarget_InM_all_Both
TH1D * rap_vs_Pt_InM_all_mixing_69
TH1D * Case8NonElFrom_kaon_InM_one_Both
TH1D * Pi0InvMassReco_onetwo_Outside
TH2D * Pi0_pt_vs_rap_onetwo_Target
TH1D * sameMIDcase8NonEPdgFromTarget_InM_zero_Both
TH1D * rap_vs_Pt_InM_all_19
TH1D * EMT_InvMass_all_Both
vector< TH1 * > fHistoList_bg_InM_all_Outside
TH1D * pt_onetwo_mixing_18
TH1D * PdgCase8mothers_InM_all_Both
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_onetwo_Both
vector< TH1 * > fHistoList_bg_InM_WAC
TH1D * rap_vs_Pt_InM_all_64
TH2D * Pi0_pt_vs_rap_all_Outside
std::vector< int > VStsIndex_minus_Target
std::vector< std::vector< TVector3 > > Gammas_zero_Target
TH1D * DalitzPi0_two_Target
TH1D * rap_vs_Pt_InM_all_50
TH1D * rap_vs_Pt_InM_all_28
TH2D * Pi0_pt_vs_rap_est_onetwo_Both
TH1D * rap_vs_Pt_InM_all_69
TH1D * sameMIDcase8_InM_WAC
TH1D * rap_vs_Pt_InM_mixing_91
TH2D * MultiplicityGamma_zero_Target
TH1D * BG6_InM_onetwo_Both
TH1D * GammasInvMass_fromPi0_Target
TH1D * sameMIDcase8NonEMotherIM_InM_onetwo_Both
TH1D * sameMIDcase8NonEComeFromTargetPt_InM_two_Both
TH1D * PhotonsPi0_onetwo_Outside
std::vector< std::vector< TVector3 > > Gammas_one_Both
std::vector< std::vector< int > > Gammas_stsIndex_two_Both
TH1D * PlaneAngles_last_candidates_Target
TH1D * Case8NonElFrom_pn_InM_onetwo_Both
TH1D * sameMIDcase8NonEComeFromTargetPt_InM_onetwo_Both
TH2D * MultiplicityGamma_all_Outside
vector< CbmStsTrack * > VStsTrack_minus_Target
TH1D * sameMIDcase8_InM_all_Both
TH1D * GammasOA_fromPi0_Both
TH1D * rap_vs_Pt_InM_mixing_108
TH1D * sameMIDcase8NonEPdg_InM_one_Both
TH1D * Pi0InvMassReco_all_Both
TH1D * rap_vs_Pt_InM_all_mixing_111
TH2D * InvMass_vs_OA_fromPi0_Target
TH2D * Pi0_pt_vs_rap_all_Both
TH1D * pt_onetwo_mixing_3
TH1D * BG3_InM_onetwo_Both
std::vector< std::vector< int > > Gammas_MCIndex_one_Target
TH1D * Pt_reco_all_Outside
TH1D * rap_vs_Pt_InM_all_mixing_103
TH1D * P_reco_onetwo_Outside
TH1D * rap_vs_Pt_InM_mixing_41
TH1D * rap_vs_Pt_InM_all_mixing_42
TH1D * rap_vs_Pt_InM_all_22
TH1D * PdgCase8mothers_InM_zero_Both
TH1D * rap_vs_Pt_InM_all_mixing_107
std::vector< std::vector< int > > Gammas_MCIndex_zero_Both
TH1D * AnnTruePairs_AfterCuts
TH2D * Case1ZYPos_InM_zero_Both
TH1D * Pi0InvMassReco_two_Outside
TH1D * PhotonsPi0_onetwo_Target
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_two_Both
TH1D * rap_vs_Pt_InM_all_15
TH1D * GammasInvMass_candidates_Outside
TH1D * rap_vs_Pt_InM_all_82
TH1D * rap_vs_Pt_InM_all_mixing_39
TH1D * PdgCase8motherNonE_InM_zero_Both
TH1D * rap_vs_Pt_InM_mixing_8
TH1D * rap_vs_Pt_InM_all_mixing_57
std::vector< int > EMT_man_NofRings_Both
TH1D * rap_vs_Pt_InM_all_mixing_83
TH1D * rap_vs_Pt_InM_all_mixing_86
std::vector< int > EMT_man_NofRings_WAC
TH1D * rap_vs_Pt_InM_all_mixing_40
std::vector< std::vector< CbmMCTrack * > > Gammas_MC_onetwo_Target
vector< Int_t > VMCIndex_plus_Target
TH1D * Case8ElFromDalitz_InM_all_Both
TH1D * rap_vs_Pt_InM_mixing_59
TH1D * rap_vs_Pt_InM_all_101
TH1D * GammaInvMassReco_all_Both
TH1D * Pi0InvMassReco_two_Both
TH1D * rap_vs_Pt_InM_all_mixing_15
TH1D * Case8NonElFrom_pn_InM_zero_Both
TH1D * GammaOpeningAngleReco_zero_Outside
std::vector< std::vector< TVector3 > > Gamma_WAC
TH1D * rap_vs_Pt_InM_all_88
void FindPi0(TString mod, TString position, vector< vector< TVector3 > > Gammas, vector< vector< int > > StsIndex, vector< vector< int > > MCIndex, vector< vector< CbmMCTrack * > > GammasMC, TH1D *Pi0InvMassReco, TH2D *Pi0_pt_vs_rap, TH2D *Pi0_pt_vs_rap_est, TH2D *MultiplicityGamma, TH2D *MultiplicityChargedParticles, vector< TH1 * > BGCases, TH1D *DalitzPi0, TH1D *PhotonsPi0)
TH1D * rap_vs_Pt_InM_all_mixing_24
TH1D * GammasOA_candidates_Both
TClonesArray * fStsTracks
std::vector< std::vector< int > > Gammas_MCIndex_all_Outside
std::vector< std::vector< int > > Gammas_stsIndex_one_Both
TH1D * P_reco_two_Outside
static TVector3 FitToVertexAndGetChi(CbmStsTrack *stsTrack, double x, double y, double z, double &chi)
static Double_t CalculateOpeningAngle_Reco(TVector3 electron1, TVector3 electron2)
static LmvmKinePar CalculateKinematicParams_4particles(const TVector3 part1, const TVector3 part2, const TVector3 part3, const TVector3 part4)
static double Invmass_2particles_RECO(const TVector3 part1, const TVector3 part2)
static TVector3 FitToVertex(CbmStsTrack *stsTrack, double x, double y, double z)
int32_t GetMotherId() const
int32_t GetPdgCode() const
int32_t GetNofLinks() const
const CbmLink & GetMatchedLink() const
Here the ring is fitted with Taubin algorithm from A. Ayriyan, G. Ososkov, N. Chernov.
void AddHit(CbmRichHitLight hit)
Add new hit to the ring.
uint32_t GetHit(int32_t i) const
int32_t GetNofHits() const
static double GetRingTrackDistance(int globalTrackId)
data class for a reconstructed 3-d hit in the STS
int32_t GetNofMvdHits() const
int32_t GetMvdHitIndex(int32_t iHit) const
int32_t GetStsHitIndex(int32_t iHit) const
int32_t GetNofStsHits() const
const FairTrackParam * GetParamFirst() const