Skip to content

Commit ec979e2

Browse files
authored
PWGEM/PhotonMeson: add TPConly eID for ee (#5617)
1 parent ba1e278 commit ec979e2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

PWGEM/PhotonMeson/Core/CutsLibrary.cxx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,13 @@ DalitzEECut* o2::aod::pwgem::photon::dalitzeecuts::GetCut(const char* cutName)
574574
cut->SetTPCNsigmaElRange(-2, +3);
575575
cut->SetTPCNsigmaPiRange(-1e+10, +3);
576576
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;
577584
} else { // not match electron cut
578585
LOGF(info, Form("Did not find electron ID cut %s", cutName));
579586
return cut;

0 commit comments

Comments
 (0)