We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba1e278 commit ec979e2Copy full SHA for ec979e2
PWGEM/PhotonMeson/Core/CutsLibrary.cxx
@@ -574,6 +574,13 @@ DalitzEECut* o2::aod::pwgem::photon::dalitzeecuts::GetCut(const char* cutName)
574
cut->SetTPCNsigmaElRange(-2, +3);
575
cut->SetTPCNsigmaPiRange(-1e+10, +3);
576
return cut;
577
+ } else if (nameStr.find("tpcelonly") != std::string::npos) {
578
+ // for PID
579
+ cut->SetPIDScheme(DalitzEECut::PIDSchemes::kTPConly);
580
+ cut->SetTOFbetaRange(true, 0.0, 0.95);
581
+ cut->SetTPCNsigmaElRange(-2, +3);
582
+ cut->SetTPCNsigmaPiRange(0, 0);
583
+ return cut;
584
} else { // not match electron cut
585
LOGF(info, Form("Did not find electron ID cut %s", cutName));
586
0 commit comments