Skip to content

Commit d8720f3

Browse files
lhusovaLucia Anna Tarasovicova
andauthored
[PWGLF] change in derivedcascadeanalysis.cxx (#9705)
Co-authored-by: Lucia Anna Tarasovicova <lucia.anna.husova@cern.ch>
1 parent 0a0eca3 commit d8720f3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ struct Derivedcascadeanalysis {
113113
Configurable<bool> doVertexTRDmatch{"doVertexTRDmatch", false, "Checks wherher at least one of vertex contributors is matched to TRD"};
114114
Configurable<bool> doTimeRangeStandardCut{"doTimeRangeStandardCut", true, "It rejects a given collision if there are other events nearby in dtime +/- 2 μs, or mult above some threshold in -4..-2 μs"};
115115
Configurable<bool> doTimeRangeStrictCut{"doTimeRangeStrictCut", false, "It rejects a given collision if there are other events nearby in |dt|< 10 μs"};
116-
Configurable<bool> doTimeRangeVzDependent{"doTimeRangeVzDependent", false, "It rejects collision with pvZ of drifting TPC tracks from past/future collisions within 2.5 cm the current pvZ"};
117116
Configurable<bool> doNoCollInRofStrictCut{"doNoCollInRofStrictCut", false, "Enable an evevnt selection which rejects a collision if there are other events within the same ITS ROF"};
118117
Configurable<bool> doNoCollInRofStandardCut{"doNoCollInRofStandardCut", true, "Enable an evevnt selection which rejects a collision if there are other events within the same ITS ROF with mult above threshold"};
119118
Configurable<bool> doMultiplicityCorrCut{"doMultiplicityCorrCut", false, "Enable multiplicity vs centrality correlation cut"};
@@ -557,11 +556,8 @@ struct Derivedcascadeanalysis {
557556
if (fillHists)
558557
histos.fill(HIST("hEventSelection"), 18.5 /*rejects a collision if there are other events within the same ITS ROF above mult threshold*/);
559558

560-
if (eventSelectionFlags.doTimeRangeVzDependent && !coll.selection_bit(o2::aod::evsel::kNoCollInTimeRangeVzDependent)) {
561-
return false;
562-
}
563559
if (fillHists)
564-
histos.fill(HIST("hEventSelection"), 19.5 /*rejects collision with pvZ of drifting TPC tracks from past/future collisions within 2.5 cm the current pvZ*/);
560+
histos.fill(HIST("hEventSelection"), 19.5 /*currently no cut applied*/);
565561

566562
float occupancyFT0 = coll.ft0cOccupancyInTimeRange();
567563
if (minOccupancyFT0 > 0 && occupancyFT0 < minOccupancyFT0) {

0 commit comments

Comments
 (0)