Skip to content

Commit 9d5117b

Browse files
committed
Add event cuts for neutron classes based on ZDC time
1 parent 15b3418 commit 9d5117b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

PWGDQ/Core/CutsLibrary.cxx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4090,6 +4090,30 @@ AnalysisCut* o2::aod::dqcuts::GetAnalysisCut(const char* cutName)
40904090
return cutAorC;
40914091
}
40924092

4093+
if (!nameStr.compare("eventXn0nTime")) {
4094+
cut->AddCut(VarManager::kTimeZNA, -2.0, 2.0);
4095+
cut->AddCut(VarManager::kTimeZNC, -2.0, 2.0, true);
4096+
return cut;
4097+
}
4098+
4099+
if (!nameStr.compare("event0nXnTime")) {
4100+
cut->AddCut(VarManager::kTimeZNA, -2.0, 2.0, true);
4101+
cut->AddCut(VarManager::kTimeZNC, -2.0, 2.0);
4102+
return cut;
4103+
}
4104+
4105+
if (!nameStr.compare("event0n0nTime")) {
4106+
cut->AddCut(VarManager::kTimeZNA, -2.0, 2.0, true);
4107+
cut->AddCut(VarManager::kTimeZNC, -2.0, 2.0, true);
4108+
return cut;
4109+
}
4110+
4111+
if (!nameStr.compare("eventXnXnTime")) {
4112+
cut->AddCut(VarManager::kTimeZNA, -2.0, 2.0);
4113+
cut->AddCut(VarManager::kTimeZNC, -2.0, 2.0);
4114+
return cut;
4115+
}
4116+
40934117
// Event cuts based on centrality
40944118
if (!nameStr.compare("eventStandardNoINT7Cent090")) {
40954119
cut->AddCut(VarManager::kVtxZ, -10.0, 10.0);

0 commit comments

Comments
 (0)